/* --- START OF FILE styles.css --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

:root {
    --bg-color: #FFFFFF;
    --text-primary: #111111;
    --text-secondary: #555555;
    --border-color: #EAEAEA;
    --surface-color: #F9F9F9;
    --primary-color: #111111;
    /* Strong black for primary actions */

    --font-main: 'Inter', sans-serif;

    --transition: all 0.3s ease;
    --border-radius: 8px;
    --container-width: 1100px;
    --header-height: 80px;
}

/* --- BASE STYLES & RESETS --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    line-height: 1.7;
    color: var(--text-secondary);
    background-color: var(--bg-color);
    -webkit-font-smoothing: antialiased;
}

body.no-scroll {
    overflow: hidden;
}

h1,
h2,
h3,
h4 {
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.2;
}

.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 100px 0;
    border-bottom: 1px solid var(--border-color);
}

.section-intro {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 60px;
}

.section-intro .label {
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 8px;
    display: block;
}

.section-intro h2 {
    font-size: 38px;
}

/* --- HEADER --- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    height: var(--header-height);
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition);
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.header__logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
}

.header__nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.header__nav-list {
    display: flex;
    gap: 30px;
}

.header__nav-list a {
    font-weight: 500;
    color: var(--text-secondary);
}

.header__nav-list a.active,
.header__nav-list a:hover {
    color: var(--text-primary);
}

.btn {
    display: inline-block;
    padding: 10px 22px;
    border: 1px solid var(--primary-color);
    border-radius: 6px;
    font-weight: 600;
    font-size: 15px;
    transition: var(--transition);
    background-color: var(--primary-color);
    color: #FFFFFF;
}

.btn:hover {
    background-color: #333;
    border-color: #333;
}

/* --- HERO --- */
.hero {
    text-align: center;
    padding: calc(var(--header-height) + 120px) 0 120px;
}

.hero h1 {
    font-size: 56px;
    max-width: 800px;
    margin: 0 auto 24px;
}

.hero p.lead {
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto 40px;
}

.hero-image {
    margin-top: 60px;
}

.hero-image img {
    width: 500px;
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
}

/* --- FEATURES GRID --- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    background: var(--surface-color);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 30px;
}

.feature-card .icon {
    font-size: 20px;
    color: var(--text-primary);
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-color);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
}

/* --- CTA SECTION --- */
.cta .container {
    text-align: center;
    max-width: 650px;
}

.cta h2 {
    font-size: 38px;
    margin-bottom: 30px;
}

/* --- FOOTER --- */
.footer {
    background-color: var(--surface-color);
    /* Assuming you have this variable defined */
    padding: 60px 0;
    font-size: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    /* Adds a subtle separator line */
}

.footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
    /* Increased gap for better spacing */
}

/* Grouping for logo and links */
.footer-branding-and-links {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    /* Allows links to wrap below logo on smaller screens */
}

.footer .header__logo {
    font-size: 24px;
    /* Makes the logo a bit more prominent */
    font-weight: 700;
    color: var(--text-primary);
    /* Assuming a primary text color */
}

.footer-links {
    display: flex;
    gap: 25px;
}

.footer-links a {
    color: var(--text-secondary);
    /* Assuming a secondary text color */
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--text-primary);
}

/* Styling for the contact section */
.footer-contact {
    display: flex;
    flex-direction: column;
    /* Stacks contact info vertically */
    gap: 15px;
    /* Adds space between each line of contact info */
    text-align: right;
    /* Aligns text to the right on desktop */
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 12px;
    /* Space between icon and text */
    color: var(--text-secondary);
}

.footer-contact a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: var(--text-primary);
}

.footer-contact .fa-solid {
    font-size: 16px;
    color: var(--text-primary);
    /* Makes icons slightly more prominent */
    width: 20px;
    /* Ensures consistent alignment */
    text-align: center;
}

/* --- RESPONSIVE ADJUSTMENTS --- */
@media (max-width: 992px) {

    /* Stack layout sooner for tablets */
    .footer .container {
        flex-direction: column;
        align-items: flex-start;
        /* Align items to the left */
        gap: 30px;
    }

    .footer-contact {
        text-align: left;
        /* Align contact text to the left on stacked layout */
    }
}

@media (max-width: 768px) {
    .footer .container {
        align-items: center;
        /* Center everything on small mobile screens */
        text-align: center;
    }

    .footer-branding-and-links {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .footer-contact {
        align-items: center;
        /* Center align contact items */
        text-align: center;
    }

    .footer-contact p {
        justify-content: center;
        /* Center the icon and text within the paragraph */
    }
}

/* --- PAGE STYLES --- */
.page-header {
    text-align: center;
    padding: calc(var(--header-height) + 100px) 0 60px;
}

.page-header h1 {
    font-size: 44px;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background-color: var(--surface-color);
    padding: 40px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-family: var(--font-main);
    font-size: 16px;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    outline: none;
}

.privacy-content {
    max-width: 800px;
    margin: 0 auto;
}

.privacy-content h2 {
    font-size: 28px;
    margin: 30px 0 15px;
}

/* --- MOBILE NAVIGATION --- */
.mobile-toggle {
    display: none;
    width: 28px;
    height: 22px;
    background: transparent;
    border: none;
    position: relative;
    cursor: pointer;
    z-index: 1001;
}

.mobile-toggle span {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background: var(--text-primary);
    border-radius: 2px;
    left: 0;
    transition: all 0.3s ease;
}

.mobile-toggle span:nth-child(1) {
    top: 0;
}

.mobile-toggle span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}

.mobile-toggle span:nth-child(3) {
    bottom: 0;
}

.mobile-toggle.active span:nth-child(1) {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    bottom: 50%;
    transform: translateY(50%) rotate(-45deg);
}

@media (max-width: 768px) {
    .header__nav {
        display: none;
    }

    .mobile-toggle {
        display: block;
    }

    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: var(--bg-color);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        z-index: 1000;
        transition: right .4s ease-in-out;
    }

    .nav.active {
        right: 0;
    }

    .nav .header__nav-list {
        flex-direction: column;
        text-align: center;
        font-size: 22px;
        gap: 30px;
    }

    .nav .btn {
        display: inline-block;
        margin-top: 30px;
    }

    .hero h1 {
        font-size: 40px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

}

/* --- END OF FILE styles.css --- */