:root {
    --primary-blue: #385E8A;
    --light-blue: #D3E0EE;
    --text-color-dark: #2F2F2F;
    --text-color-light: #5A6A7D;
    --bg-color-primary: #FFFFFF;
    --bg-color-secondary: #F8F9FA;
    --font-poppins: 'Poppins', sans-serif;
}

body {
    font-family: var(--font-poppins);
    margin: 0;
    padding: 0;
    color: var(--text-color-dark);
    background-color: var(--bg-color-primary);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 80px;
}

.logo {
    font-weight: 600;
    font-size: 1.25rem;
    color: var(--primary-blue);
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-color-dark);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-blue);
}

.btn {
    padding: 12px 24px;
    border-radius: 50px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-browse {
    background-color: var(--light-blue);
    color: var(--primary-blue);
}

.btn-primary {
    background-color: var(--primary-blue);
    color: #FFFFFF;
}

.hero-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 80px 80px;
    gap: 80px;
}

.hero-content {
    flex: 1;
    max-width: 500px;
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    font-weight: 600;
    margin: 0 0 1rem;
}

.hero-content p {
    font-size: 1rem;
    color: var(--text-color-light);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.hero-image-container {
    flex: 1;
    display: flex;
    justify-content: center;
}

.hero-image-container img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
}

.info-section {
    padding: 80px 0;
    background-color: var(--bg-color-secondary);
}

.info-section h2 {
    text-align: center;
    font-size: 2.25rem;
    font-weight: 600;
    margin-bottom: 60px;
}

.info-cards {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.card {
    background-color: #FFFFFF;
    padding: 32px;
    border-radius: 12px;
    width: 300px;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.icon-circle {
    width: 60px;
    height: 60px;
    background-color: var(--light-blue);
    border-radius: 50%;
    margin: 0 auto 20px;
}

.card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0 0 10px;
}

.card p {
    font-size: 0.95rem;
    color: var(--text-color-light);
    line-height: 1.5;
}

.cta-section {
    padding: 80px 0;
}

.cta-content {
    display: flex;
    align-items: center;
    gap: 80px;
}

.cta-content .text-content {
    flex: 1;
    max-width: 500px;
}

.cta-content .text-content h2 {
    font-size: 2.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.cta-content .text-content p {
    font-size: 1rem;
    color: var(--text-color-light);
    line-height: 1.6;
}

.cta-content .image-content {
    flex: 1;
    display: flex;
    justify-content: center;
}

.cta-content .image-content img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
}

/* --- Responsive Styles --- */

@media (max-width: 1024px) {
    .navbar {
        padding: 24px 40px;
    }

    .hero-section,
    .cta-content {
        gap: 40px;
        padding: 60px 40px;
    }
}

@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .nav-links {
        flex-direction: column;
        gap: 12px;
        margin: 16px 0;
    }

    .btn-browse {
        margin-top: 8px;
    }

    .hero-section,
    .cta-content {
        flex-direction: column-reverse;
        text-align: center;
        padding: 40px 20px;
    }

    .cta-content {
        flex-direction: column;
    }
    
    .hero-content,
    .cta-content .text-content {
        max-width: 100%;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .info-section h2 {
        font-size: 2rem;
    }

    .info-cards {
        flex-direction: column;
        align-items: center;
    }
    
    .card {
        width: 100%;
    }
}