/**
 * Theme color is #C1A15A (a shade of gold)
 * Font: Poppins for headings, Roboto for body text
 * Layout: Clean, modern, and spacious with ample white space
 * Buttons: Rounded corners, hover effects
 * Responsive design for mobile and desktop
 */
body {
    background: #FFFFFF;
    margin: 0;
    font-family: 'Open Sans', sans-serif;
    line-height: 1.5;
    color: #000;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
    border-bottom: 1px solid #E4E4E4;
    position: relative;
    background-color: #fff;
}

.brand {
    display: flex;
    align-items: center;
    gap: 8px;
}

.brand h1 {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
    color: #34495E;
}

.brand img {
    width: 24px;
    height: auto;
}

.navbar {
    background: #fff;
    display: flex;
    gap: 24px;
    border: 1px solid #E4E4E4;
    padding: 7px 20px;
    border-radius: 10px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.navbar a {
    text-decoration: none;
    color: #34495E;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.navbar a:hover {
    color: #51F037;
}

.headerButtons .login {
    margin-right: 24px;
    font-size: 16px;
    font-weight: 700;
    color: #34495E;
    text-decoration: none;
    transition: all 0.3s ease;
}

.headerButtons .login:hover {
    color: #51F037;
}

.headerButtons .signUp {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    background-color: #51F037;
    padding: 7px 20px;
    border-radius: 10px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.headerButtons .signUp:hover {
    background-color: #44c02e;
    transform: scale(1.05);
}

.headerButtons .signUp:active {
    transform: scale(0.9);
}

#languageSwitcher {
    font-size: 16px;
    font-weight: 700;
    margin-left: 15px;
    padding: 7px 10px;
    border-radius: 10px;
    border: 1px solid #34495E;
    background-color: #fff;
    color: #34495E;
    cursor: pointer;
    transition: all 0.3s ease;
}

#languageSwitcher:hover {
    background-color: #E4E4E4;
}

#hero {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 40px;
    padding: 0 40px;
    gap: 40px;
}

.heroImage {
    max-width: 40%;
}

.heroImage img {
    width: 100%;
    height: auto;
    display: block;
}

.heroContent {
    max-width: 50%;
}

.heroContent h1 {
    font-size: 42px;
    font-weight: 800;
    margin: 0 0 24px 0;
    color: #34495E;
}

.heroContent p {
    font-size: 18px;
    margin: 0 0 24px 0;
    color: #000;
}

.heroButton {
    background-color: #51F037;
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 20px;
    font-weight: 700;
    padding: 20px 35px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.heroButton:hover {
    background-color: #44c02e;
    transform: scale(1.05);
}

.heroButton:active {
    transform: scale(0.9);
}

section {
    padding: 40px 24px;
    margin-bottom: 40px;
}

#about, .steps, #pricing, .finalCallToAction {
    max-width: 1200px;
    margin: 0 auto;
}

#about h2, .steps h2, #pricing h2, .finalCallToAction h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 24px;
    text-align: center;
    color: #34495E;
}

#about p, .steps .stepText, #pricing p, .finalCallToAction p {
    font-size: 18px;
    text-align: center;
    margin-bottom: 24px;
    color: #000;
}

.featuresGrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.featureCard {
    border: 1px solid #E4E4E4;
    border-radius: 10px;
    padding: 16px;
    text-align: center;
    background: #fff;
}

.featureCard h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #34495E;
}

.featureCard p {
    font-size: 18px;
    color: #000;
}

.stepsBoxes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: stretch;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #51F037;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    margin-bottom: 20px;
    font-size: 18px;
}

.stepText {
    border: 1px solid #E4E4E4;
    border-radius: 10px;
    padding: 16px;
    background: #fff;
    font-size: 18px;
    text-align: center;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pricingGrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.pricingCard, .pricingCardHighlight {
    border: 1px solid #E4E4E4;
    border-radius: 12px;
    padding: 20px;
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.pricingCardHighlight {
    border: 4px solid #34495E;
}

.pricingCard h3, .pricingCardHighlight h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #34495E;
}

.price {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #000;
}

.price span {
    font-size: 16px;
    font-weight: normal;
    color: #666;
}

.pricingCard ul, .pricingCardHighlight ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}

.pricingCard ul li, .pricingCardHighlight ul li {
    margin-bottom: 10px;
    font-size: 16px;
}

.pricingButton {
    background-color: #51F037;
    border: none;
    color: #fff;
    border-radius: 10px;
    padding: 12px 24px;
    cursor: pointer;
    font-size: 18px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.pricingButton:hover {
    background-color: #44c02e;
    transform: scale(1.05);
}

.pricingButton:active {
    transform: scale(0.9);
}

.finalCallToAction {
    background-color: #fff;
    text-align: center;
    margin: 40px 0;
    padding: 14px 32px;
    border-radius: 10px;
    border: 1px solid #E4E4E4;
}

.finalCallToAction .callToActionButton {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    background-color: #51F037;
    padding: 7px 20px;
    border-radius: 10px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.finalCallToAction .callToActionButton:hover {
    background-color: #44c02e;
    transform: scale(1.05);
}

.finalCallToAction .callToActionButton:active {
    transform: scale(0.9);
}

footer {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid #E4E4E4;
    background: #fff;
}

.footerLinks {
    margin-bottom: 15px;
}

.footerLinks a {
    margin: 0 15px;
    text-decoration: none;
    color: #34495E;
    font-weight: 600;
    transition: all 0.3s ease;
}

.footerLinks a:hover {
    text-decoration: underline;
    color: #51F037;
}

.footerSocial {
    margin: 15px 0;
}

.footerSocial a {
    margin: 0 10px;
    font-size: 20px;
    color: #34495E;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footerSocial a:hover {
    color: #51F037;
    transform: scale(1.2);
}

.footerSocial a:active {
    transform: scale(0.9);
}

.footerCopy {
    font-size: 16px;
    color: #000;
}

@keyframes glow {
    0% { box-shadow: 0 0 5px #51F037; }
    50% { box-shadow: 0 0 20px #51F037; }
    100% { box-shadow: 0 0 5px #51F037; }
}

.glow {
    animation: glow 2s infinite;
}

iframe {
    max-width: 100%;
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 12px;
    border: none;
}

@media (max-width: 1155px) {
    header {
        padding: 16px;
    }

    .navbar {
        display: none;
    }

    #hero {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 24px;
        padding: 0 16px;
    }

    .heroImage, .heroContent {
        max-width: 100%;
    }

    .heroContent h1 {
        font-size: 28px;
    }

    .heroContent p {
        font-size: 16px;
    }

    section {
        padding: 24px 16px;
        margin-bottom: 24px;
    }

    .featuresGrid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .stepsBoxes {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .stepsBoxes .step:nth-child(3) {
        grid-column: span 2;
        justify-self: center;
        max-width: 300px;
    }

    .steps h2, #about h2, #pricing h2, .finalCallToAction h2 {
        font-size: 28px;
    }

    #about p, .stepText, #pricing p, .finalCallToAction p, .featureCard p {
        font-size: 16px;
    }

    .pricingGrid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .featureCard, .stepText, .pricingCard, .pricingCardHighlight {
        padding: 12px;
    }
}
