.landing-page {
    font-family: 'Poppins', sans-serif;
}

/* Navigation */
.nav-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background: rgba(255, 255, 255, 0.95);
    position: fixed;
    top: 0;
    width: 90%;
    z-index: 1000;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #6D597A;
}

.nav-buttons button {
    padding: 0.5rem 1.5rem;
    margin-left: 1rem;
    border-radius: 5px;
    font-weight: 500;
    cursor: pointer;
}

.login-btn {
    background: transparent;
    border: 2px solid #355070;
    color: #355070;
}

.signup-btn {
    background: #355070;
    border: none;
    color: white;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 4rem;
    color: #355070;
    text-align: left;
    overflow: hidden;
    background: transparent;
}

.hero::before {
    display: none;
}

/* Default background image for desktop */
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('extension.png') center center/cover no-repeat;
    z-index: 1;
    opacity: 1;
}

/* Hide mobile hero image on desktop */
.mobile-hero-image {
    display: none;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 1200px;
    margin: 0;
    margin-left: 5%;
    padding: 1rem 2rem 2rem 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
}

.headline-container {
    text-align: left;
}

.pre-headline {
    font-size: 3.5rem;
    margin-bottom: 0.2rem;
    color: black;
}

.hero h1 {
    font-size: 3.5rem;
    margin-top: 0;
    margin-bottom: 0;
    background: linear-gradient(to right, #355070, #6d597a, #b56576, #e56b6f, #eaac8b);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.hero p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0;
    color: black;
}

.hero-cta {
    margin-top: 0.5rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
}

.button {
    background-color: #e56b6f;
    color: white;
    border: 3px solid #e56b6f;
    border-bottom-width: 6px;
    padding: 1rem 2.5rem;
    font-size: 1.2rem;
    border-radius: 8px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    font-weight: 600;
    letter-spacing: 0.5px;
    border-top-width: 6px;
    margin-top: 3px;
    margin-bottom: 0;
}

.button::before {
    content: '';
    position: absolute;
    top: -150%;
    left: 0;
    width: 320px;
    height: 5px;
    background-color: white;
    opacity: 0.5;
    border-radius: 4px;
    transition: top 0.5s ease;
    box-shadow: 0 0 10px 10px rgba(255, 255, 255, 0.3);
}

.button:hover {
    background-color: #d15a63;
    border-color: #d15a63;
    transform: translateY(3px);
    filter: brightness(1.2);
}

.button:active {
    opacity: 0.75;
    transform: translateY(5px);
}

.button:hover::before {
    top: 150%;
}

.cta-subtext {
    font-size: 0.9rem;
    opacity: 0.9;
    color: black;
}

/* Exam Countdown Section */
.exam-countdown {
    padding: 4rem 5% 2rem 5%;
    background: white;
    text-align: center;
}

/* Website Features Section - white behind image (first half), image on top */
.website-features {
    padding: 12rem 0;
    background: url('bgfeats.png'), linear-gradient(to bottom, white 0%, white 50%, transparent 50%);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}
/* White text for first feature section (Intuitive Interface) */
.website-features .feature-section:first-child .feature-content h2 {
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}
.website-features .feature-section:first-child .feature-content p {
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}


.feature-section {
    display: flex;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 5%;
    gap: 4rem;
    position: relative;
    z-index: 2;
}

.feature-section.feature-left {
    flex-direction: row;
}

.feature-section.feature-right {
    flex-direction: row-reverse;
}

.feature-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.feature-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.feature-content {
    flex: 1;
    color: white;
}

.feature-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.feature-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Mobile responsive for features */
@media screen and (max-width: 768px) {
    .website-features {
        padding: 3rem 0 1rem 0;
        background: url('bgfeats_mobile.png'), linear-gradient(to bottom, white 0%, white 50%, transparent 50%);
        background-size: auto 138%;
        background-position: center;
        background-repeat: no-repeat;
    }

    .feature-section {
        flex-direction: column !important;
        padding: 3rem 5%;
        gap: 2rem;
    }

    .feature-content {
        text-align: center;
    }

    .feature-content h2 {
        font-size: 2rem;
    }

    .feature-content p {
        font-size: 1rem;
    }

    .feature-image {
        width: 100%;
    }
}

.exam-countdown h2 {
    color: #6D597A;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    font-family: 'Poppins', sans-serif;
}

.countdown-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.countdown-item {
    background: transparent;
    border: none;
    padding: 1rem;
}

.countdown-item h3 {
    color: #6D597A;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-family: 'Poppins', sans-serif;
}

.countdown-item p {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    font-family: 'Poppins', sans-serif;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.time-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 70px;
}

.time-value {
    font-size: 5rem;
    font-weight: 700;
    color: #6D597A;
    font-family: 'Poppins', sans-serif;
    line-height: 1;
    margin-bottom: 0.3rem;
}

.time-label {
    font-size: 0.75rem;
    font-weight: 500;
    color: #6D597A;
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Features Section */
.features {
    padding: 2rem 5% 5rem 5%;
    background: #f8f9fa;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: #355070;
    padding: 2rem;
    border-radius: 10px;
    text-align: left;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    color: white;
}

.feature-card h3 {
    font-size: 2.5rem;
    line-height: 1;
    color: white;
    margin: 1rem 0;
    font-weight: 900;
    text-align: left;
}

.feature-card p {
    color: rgba(255, 255, 255, 0.9);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: left;
}

/* Reviews Section */
.reviews {
    padding: 2rem 0 0 0;
    background: white;
}

.reviews h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #6D597A;
    font-size: 2rem;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.review-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08), 0 4px 16px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.review-stars {
    color: #ffd700;
    font-size: 1.3rem;
    margin-bottom: 1.25rem;
    letter-spacing: 2px;
}

.review-text {
    color: #6D597A;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.reviewer {
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    padding-top: 1.25rem;
    margin-top: auto;
}

.reviewer-name {
    color: #355070;
    font-weight: 600;
    margin-bottom: 0.3rem;
    font-size: 1rem;
}

.reviewer-info {
    color: #888;
    font-size: 0.875rem;
    font-weight: 400;
}

/* FAQ Section */
.faq {
    padding: 5rem 5%;
    background: white;
}

.faq h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #6D597A;
    font-size: 2rem;
}

.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #f8f9fa;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #e0e0e0;
}

.faq-question {
    width: 100%;
    background: #f8f9fa;
    border: none;
    padding: 1.5rem 2rem;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 600;
    color: #6D597A;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #e9ecef;
}

.faq-question.active {
    background-color: #e9ecef;
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: bold;
    color: #6D597A;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 1rem;
}

.faq-question.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 2rem;
}

.faq-answer.active {
    max-height: 500px;
    padding: 0 2rem 1.5rem 2rem;
}

.faq-answer ol,
.faq-answer p {
    margin: 0;
    padding-top: 1rem;
    color: #555;
    line-height: 1.6;
}

.faq-answer ol {
    padding-left: 1.5rem;
}

.faq-answer li {
    margin-bottom: 0.5rem;
}

/* Footer */
.footer {
    background: #6d597a;
    color: white;
    padding: 2rem 5%;
    text-align: center;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
    margin: 1rem 0;
}

.footer-links a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
}

/* Pricing Section */
.pricing {
    padding: 5rem 5%;
    background: #f8f9fa;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding-bottom: 8rem;
}

.pricing h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #6D597A;
    font-size: 2rem;
}

/* Dotted texture at the lower part of the pricing background */
.pricing::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 420px;
    pointer-events: none;
    background-image:
        linear-gradient(to top, rgba(248, 249, 250, 0) 0%, #f8f9fa 85%), /* longer fade */
        radial-gradient(#dbe6f2 2.4px, transparent 2.4px); /* bigger dots */
    background-size: 100% 100%, 24px 24px;
    background-repeat: no-repeat, repeat;
    z-index: 0;
}

/* Update plans grid for better centering */
.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 300px));
    gap: 0.4rem;
    justify-content: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
    position: relative;
    z-index: 1;
}

/* Subscription Section */
.subscription-section {
    margin-top: 3rem;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 1rem;
}

.subscription-section .plan-card {
    max-width: 500px;
    width: 100%;
    padding: 1rem 1.5rem;
    min-height: auto;
    margin: 0 auto;
    background: white;
    border-radius: 15px;
    position: relative;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: none;
}

.subscription-section .plan-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.subscription-section .plan-title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #6D597A;
}

.subscription-section .plan-price {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #B56576;
}

.subscription-section .plan-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.3rem 1rem;
    margin-bottom: 1.5rem;
}

.subscription-section .plan-features li {
    padding: 0.3rem 0;
    font-size: 1rem;
    padding-left: 1.5rem;
    color: #6D597A;
}

.subscription-section .plan-features li:before {
    content: "✓";
    color: #355070;
    position: absolute;
    left: 0;
}

/* Update plan cards for consistent sizing */
.plan-card {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.plan-actions {
    margin-top: auto;
    border-top: 1px solid #e1e1e1;
    padding-top: 0.6rem;
}

.plan-actions .buy-btn {
    margin-top: 1rem;
}

.plan-card:hover {
    transform: translateY(-5px);
}

.plan-card.most-popular {
    border: 2px solid #355070;
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #355070;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.plan-title {
    color: #6D597A;
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 0.6rem;
}

.plan-price {
    font-size: 3.2rem;
    color: #B56576;
    margin-bottom: 1rem;
    line-height: 1;
    text-align: center;
}

.price-row {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    line-height: 1;
}

/* Inline old + new price container */
.price-line {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0.6rem;
}

/* Old price (grey and strikethrough) for pricing section */
.price-old {
    display: inline-flex;
    align-items: flex-start;
    color: #7f8c8d;
    text-decoration: line-through;
    text-decoration-thickness: 2px;
    text-decoration-color: #7f8c8d;
    font-size: 0.75em;
}

.price-old .price-main,
.price-old .price-cents {
    color: #7f8c8d !important;
}

.plan-price .price-old .price-main,
.plan-price .price-old .price-cents {
    color: #7f8c8d !important;
}

/* Old price (grey and strikethrough) for subscription plan */
.subscription-plan .price-old {
    display: inline-flex;
    align-items: flex-start;
    color: #7f8c8d;
    text-decoration: line-through;
    text-decoration-thickness: 2px;
    text-decoration-color: #7f8c8d;
    font-size: 0.75em;
}

.subscription-plan .price-old .price-main,
.subscription-plan .price-old .price-cents {
    color: #7f8c8d;
}

.plan-price .price-main {
    font-size: 1em;
    font-weight: 700;
    line-height: 1;
    color: #B56576;
}

.plan-price .price-cents {
    font-size: 0.45em;
    margin-left: 0.12em;
    transform: translateY(-0.35em);
    display: inline-block;
    color: #B56576;
    font-weight: 700;
}

.price-period {
    display: block;
    font-size: 1rem;
    color: #7f8c8d;
    margin-top: 0.4rem;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
    text-align: left;
}

.plan-features li {
    padding: 0.35rem 0;
    color: #6D597A;
    position: relative;
    padding-left: 1.5rem;
}

.plan-features li:before {
    content: "✓";
    color: #355070;
    position: absolute;
    left: 0;
}

/* From Uiverse.io by Mike11jr */
.buy-btn {
    padding: 1.1em 2em;
    background: none;
    border: 2px solid #fff;
    font-size: 15px;
    color: #ffffff;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
    border-radius: 12px;
    background-color: #355070;
    font-weight: bolder;
    box-shadow: 0 2px 0 2px #000;
    margin-top: auto;
    width: 100%;
}

.buy-btn:before {
    content: "";
    position: absolute;
    width: 100px;
    height: 120%;
    background-color: #6d597a;
    top: 50%;
    transform: skewX(30deg) translate(-150%, -50%);
    transition: all 0.5s;
}

.buy-btn:hover {
    background-color: #b56576;
    color: #fff;
    box-shadow: 0 2px 0 2px #355070;
}

.buy-btn:hover::before {
    transform: skewX(30deg) translate(150%, -50%);
    transition-delay: 0.1s;
}

.buy-btn:active {
    transform: scale(0.9);
}

/* Mobile responsive styles */
@media screen and (max-width: 768px) {
    .hero {
        flex-direction: column;
        min-height: auto;
        position: relative;
        padding-top: 2rem;
        align-items: center;
    }

    /* Hide background image on mobile */
    .hero::after {
        display: none;
    }

    /* Show mobile hero image */
    .mobile-hero-image {
        display: block;
        width: 100%;
        max-width: 100%;
        height: auto;
        margin: 0 auto;
        object-fit: contain;
    }

    .hero-content {
        position: relative;
        z-index: 3;
        padding: 2rem 1rem;
        gap: 1rem;
        justify-content: center;
        align-items: center;
        text-align: center;
        width: 100%;
        max-width: 100%;
        margin: 0;
    }

    .headline-container {
        gap: 0.3rem;
        text-align: center;
        width: 100%;
    }

    .pre-headline {
        margin-bottom: 0.1rem;
        color: black;
    }

    .hero h1 {
        margin-top: 0;
        margin-bottom: 0.2rem;
        background: linear-gradient(to right, #355070, #6d597a, #b56576, #e56b6f, #eaac8b);
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
        color: transparent;
    }

    .hero p {
        margin-bottom: 0.3rem;
        color: black;
        text-align: center;
    }

    .hero-cta {
        margin-top: 0.3rem;
        gap: 0.3rem;
        align-items: center;
        width: 100%;
    }

    .hero-image {
        flex: 1;
        max-width: 400px;
        margin: 0 auto;
    }

    .hero-image img {
        max-width: 100%;
        height: auto;
    }

    .features {
        padding: 3rem 1rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }

    .feature-card {
        padding: 1.5rem;
    }

    .feature-card h3 {
        font-size: 2rem;
    }

    .pricing {
        padding: 3rem 1rem;
    }

    .plans-grid {
        grid-template-columns: 1fr;
        gap: 0.4rem;
        padding: 0 1rem;
    }

    .plan-card {
        max-width: 100%;
    }

    .subscription-section {
        margin-top: 2rem;
        padding: 0 1rem;
    }

    .subscription-section .plan-card {
        max-width: 100%;
        padding: 1rem;
    }

    .subscription-section .plan-title {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
        color: #6D597A;
    }

    .subscription-section .plan-price {
        font-size: 2rem;
        margin-bottom: 1rem;
        color: #B56576;
    }

    .subscription-section .plan-features {
        grid-template-columns: 1fr;
        gap: 0.3rem;
        margin-bottom: 1.5rem;
    }

    .subscription-section .plan-features li {
        font-size: 0.9rem;
        padding: 0.3rem 0;
        color: #6D597A;
        padding-left: 1.5rem;
    }

    .faq {
        padding: 3rem 1rem;
    }

    .faq-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .faq-question {
        padding: 1.2rem 1.5rem;
        font-size: 1rem;
    }

    .faq-answer {
        padding: 0 1.5rem;
    }

    .faq-answer.active {
        padding: 0 1.5rem 1.2rem 1.5rem;
    }

    .auth-nav {
        padding: 8px;
        justify-content: flex-end;
    }

    .auth-nav-btn {
        padding: 8px 12px;
        font-size: 0.9rem;
    }

    .footer-links {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .button {
        padding: 0.8rem 2rem;
        font-size: 1rem;
        width: 90%;
        max-width: 300px;
    }

    .cta-subtext {
        font-size: 0.8rem;
    }

    .reviews {
        padding: 1.5rem 0.75rem;
    }

    .reviews h2 {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
        padding: 0 0.75rem;
    }

    .review-card {
        padding: 0.75rem;
        border-radius: 10px;
    }

    .review-stars {
        font-size: 0.85rem;
        margin-bottom: 0.5rem;
        letter-spacing: 0.5px;
    }

    .review-text {
        font-size: 0.8rem;
        line-height: 1.4;
        margin-bottom: 0.75rem;
    }

    .reviewer {
        padding-top: 0.5rem;
    }

    .reviewer-name {
        font-size: 0.75rem;
        margin-bottom: 0.15rem;
    }

    .reviewer-info {
        font-size: 0.65rem;
    }

    .exam-countdown {
        padding: 1rem 1rem 3rem 1rem;
    }

    .exam-countdown h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .countdown-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 2rem;
    }

    .countdown-item {
        padding: 1rem;
    }

    .countdown-item h3 {
        font-size: 1rem;
    }

    .countdown-item p {
        font-size: 0.85rem;
        margin-bottom: 1rem;
    }

    .countdown-timer {
        gap: 1rem;
    }

    .time-unit {
        min-width: 55px;
    }

    .time-value {
        font-size: 2.5rem;
    }

    .time-label {
        font-size: 0.65rem;
    }
}

/* Small mobile devices */
@media screen and (max-width: 480px) {
    .hero {
        padding-top: 1rem;
    }

    .hero-content {
        padding: 1.5rem 1rem;
    }

    .pre-headline {
        font-size: 2rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 0.9rem;
        padding: 0 0.5rem;
    }

    .button {
        padding: 0.7rem 1.5rem;
        font-size: 0.85rem;
    }

    .plan-card {
        padding: 1.5rem;
    }

    .plan-price {
        font-size: 2.4rem;
    }

    .buy-btn {
        padding: 0.7rem 1.5rem;
    }
}

/* Portrait mode specific adjustments */
@media screen and (max-width: 768px) and (orientation: portrait) {
    .hero-content {
        padding: 2rem 1rem;
    }
}

/* Landscape mode specific adjustments */
@media screen and (max-width: 768px) and (orientation: landscape) {
    .hero-content {
        padding: 1.5rem 1rem;
    }
}

/* Header */
.header {
    background: linear-gradient(135deg, #B56576, #6D597A);
    padding: 20px;
    color: #fff;
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    position: relative;
}

/* Static pages (rules, contact, privacy) - 80% width, centered */
.landing-page.page-full-width {
    width: 80%;
    max-width: 80%;
    margin: 0 auto;
    box-sizing: border-box;
}
.landing-page.page-full-width .content-section {
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
}
.landing-page.page-full-width .features-grid {
    max-width: 100%;
    width: 100%;
}
.landing-page.page-full-width .footer {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    box-sizing: border-box;
}

/* Static pages: no card, plain content */
.landing-page.page-full-width .static-content {
    background: none;
    box-shadow: none;
    padding: 0;
    margin-bottom: 0;
    color: #4a5568;
}
.landing-page.page-full-width .static-content h2 {
    color: #6D597A;
}
.landing-page.page-full-width .static-content p {
    color: #4a5568;
}
.landing-page.page-full-width .static-content a {
    color: #6D597A;
    text-decoration: underline;
}

/* Content page styles */
.content-section {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
}

.content-section .feature-card {
    background: white;
    color: #6D597A;
    padding: 3rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.content-section .feature-card h3 {
    color: #6D597A;
}

.content-section .feature-card p {
    color: #4a5568;
}

.content-section h2 {
    color: #6D597A;
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.content-section h2:first-child {
    margin-top: 0;
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.content-section p {
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 1.2rem;
}

.back-button {
    background: #6D597A;
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 5px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s ease;
    margin: 2rem auto;
    display: block;
    font-size: 1rem;
}

.back-button:hover {
    background: #1a2633;
}

/* Mobile responsive adjustments */
@media screen and (max-width: 768px) {
    .content-section {
        padding: 1rem;
    }

    .content-section .feature-card {
        padding: 1.5rem;
    }

    .content-section h2 {
        font-size: 1.5rem;
    }

    .content-section h2:first-child {
        font-size: 1.8rem;
    }
} 