/* General Styles */
body {
    font-family: 'Roboto', 'Helvetica', 'Arial', sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #212121;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

h1, h2 {
    text-align: center;
    margin-bottom: 20px;
}

/* Header Styles */
#main-header {
    background-color: #000000;
    color: #fff;
    padding: 20px 0;
}

#main-header .logo img {
    max-height: 60px;
}

.main-nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 0;
}

.main-nav a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    text-transform: uppercase;
    font-weight: bold;
}

.main-nav a:hover {
    text-decoration: underline;
}

/* Hero Section */
#hero {
    background: linear-gradient(178deg, #d43737 30%, #000000);
    color: #fff;
    text-align: center;
    padding: 40px 20px;
    border-bottom: 5px solid #ffffff;
    display: flex
;
    align-items: center;
    justify-content: space-between;
    overflow: hidden;
}

.hero-split {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.hero-left {
    flex: 1;
    max-width: 50%;
}

.hero-right {
    flex: 1;
    max-width: 50%;
}

.carousel {
    display: flex;
    flex-direction: column;
    gap: 10px;
    animation: fadeIn 3s infinite alternate;
}

.carousel-item {
    padding: 15px;
    background: #ffffff20;
    border-radius: 8px;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

@keyframes fadeIn {
    from {
        opacity: 0.5;
    }
    to {
        opacity: 1;
    }
}

.hero-buttons {
    text-align: center;
    overflow: hidden;
}

.hero-buttons .btn {
    display: inline-block;
    padding: 12px 25px;
    margin: 10px auto;
    text-decoration: none;
    font-size: 16px;
    border-radius: 5px;
    color: #fff;
    font-weight: bold;
    transition: transform 0.2s ease;
    width: 85%;
    max-width: 300px;
    box-sizing: border-box;
}

.hero-buttons .btn-register {
    background-color: #2e7d32;
}

.hero-buttons .btn-deposit {
    background-color: #0288d1;
}

.hero-buttons .btn:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

/* Comparison Rows */
.comparison-row {
    display: flex;
    align-items: center;
    background: #ffffff;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.comparison-row:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.comparison-row .rank {
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    background-color: #d32f2f;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 20px;
}

.comparison-row img {
    width: 80px;
    height: auto;
    margin-right: 20px;
    border-radius: 5px;
}

.comparison-row .content {
    flex: 1;
}

.comparison-row .content h3 {
    margin: 0 0 10px;
    font-size: 20px;
    color: #283593;
    font-weight: bold;
}

.comparison-row .content p {
    margin: 0;
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

.trust-icons {
    margin-top: 10px;
    display: flex;
    gap: 10px;
}

.trust-icons span {
    font-size: 12px;
    color: #0288d1;
    background-color: #e3f2fd;
    padding: 5px 10px;
    border-radius: 4px;
}

.comparison-row .actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.comparison-row .actions .btn {
    font-size: 14px;
    padding: 10px 15px;
    text-align: center;
    border-radius: 5px;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}

.comparison-row .actions .btn-visit {
    background-color: #0288d1;
}

.comparison-row .actions .btn-visit:hover {
    background-color: #01579b;
}

.comparison-row .actions .btn-link {
    background-color: #D43737;
}

.comparison-row .actions .btn-link:hover {
    background-color: #521515;
}

/* Footer */
#footer {
    background-color: #000000;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}

#footer .stats {
    margin-bottom: 15px;
}

#footer ul {
    list-style: none;
    padding: 0;
    margin: 10px 0;
}

#footer ul li {
    display: inline;
    margin: 0 10px;
}

#footer ul a {
    color: #cb8080;
    text-decoration: none;
}

#footer ul a:hover {
    text-decoration: underline;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Responsive Styles */
@media (max-width: 768px) {
    #hero {
        flex-direction: column;
        text-align: center;
        padding: 20px 15px;
    }

    .hero-split {
        flex-direction: column;
    }

    .hero-left {
        max-width: 100%;
        margin-bottom: 20px;
    }

    .hero-right {
        display: none;
    }

    .hero-buttons {
		display: flex;
		justify-content: center;
		align-items: center;
		gap: 10px;
		}

	.hero-buttons .btn {
		display: inline-block;
		width: auto;
		padding: 10px 15px;
		font-size: 14px;
		border-radius: 4px;
		margin: 0;
	}		

    h1 {
        font-size: 24px;
        margin-bottom: 15px;
    }

    p {
        font-size: 15px;
    }

    .carousel-item {
        font-size: 14px;
        padding: 10px;
    }

    .comparison-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .comparison-row img {
        width: 40%;
        margin-bottom: 5px;
    }

    .comparison-row .actions {
        flex-direction: row;
        gap: 10px;
		margin-top: 10px;
    }
	
	.footer-about-us ul {
        display: flex;
        flex-wrap: wrap; /* Allow items to wrap if they don't fit */
        justify-content: center; /* Center align items */
        padding: 1px;
		font-size: 12px;
    }
}
