:root {
    --primary-color: #1E90FF;
    --secondary-color: #004AAD;
    --background-color: #f5f5f5;
    --text-color: #333;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
}

/* Header & Navigation */
header {
    background: white;
    position: relative;
    width: 100%;
    color: var(--text-color);
    padding: 1rem 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 2rem;
    align-items: center;
}

.logo-container {
    display: flex;
    justify-self: start;
    align-items: center;
}

.mobile-menu-button {
    display: none;
}

.mobile-menu-header {
    display: none;
}

.header-content {
    justify-self: center;
    text-align: center;
}

.nav-links {
    justify-self: end;
    display: flex;
    list-style: none;
    gap: 1.5rem;
    align-items: center;
}

/* Mobile-only styles */
@media (max-width: 1023px) {
    .mobile-menu-button {
        display: flex !important;
        position: fixed;
        top: 1rem;
        right: 1rem;
        z-index: 9999;
        background: var(--primary-color);
        color: white;
        padding: 0.5rem 1rem;
        border: none;
        border-radius: 8px;
        cursor: pointer;
        font-size: 1rem;
        align-items: center;
        gap: 0.5rem;
        box-shadow: 0 2px 8px rgba(0,0,0,0.2);
        transition: background-color 0.3s ease;
    }

    .mobile-menu-button i {
        font-size: 1.2rem;
    }

    .mobile-menu-button:hover {
        background: var(--secondary-color);
    }
    
    nav {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1rem;
    }

    .header-content {
        order: -1;
        justify-self: center;
        margin: 2rem 0 1rem;
        padding-top: 1rem;
    }

    .logo-container {
        justify-self: center;
    }

    .nav-links {
        justify-self: center;
    }

    .logo-container {
        display: block;
        justify-self: start;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        height: 100vh;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 0;
        z-index: 999;
        transform: translateX(-100%);
        transition: transform 0.3s ease-in-out;
    }

    .nav-links.active {
        display: flex;
        transform: translateX(0);
    }

    .mobile-menu-header {
        display: none;
    }

    .nav-links.active + .mobile-menu-header {
        display: block;
        padding: 1rem;
        border-bottom: 1px solid rgba(0,0,0,0.1);
        background: white;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 1000;
    }

    .mobile-menu-content {
        padding: 1rem;
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }

    .nav-links li {
        margin: 0.25rem 0;
        text-align: center;
    }

    .nav-links a {
        color: var(--text-color);
        font-size: 1.1rem;
        font-weight: 600;
        padding: 0.5rem;
        border-radius: 8px;
        transition: background-color 0.3s ease;
        display: inline-block;
        width: 100%;
    }

    .nav-links .download-options {
        margin: 1rem 0;
        width: 100%;
        max-width: 300px;
        align-self: center;
        order: -1;
    }

    .nav-links .download-button {
        padding: 0.75rem;
        margin: 0.25rem 0;
        font-size: 0.95rem;
    }
}

.logo {
    width: 150px;
    height: auto;
    display: block;
    transition: height 0.3s ease;
}

.header-content h1 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
    line-height: 1.5;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.header-content h1 .brand {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 2rem;
    margin-bottom: 1rem;
    display: block;
}

.header-content p {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
}

.nav-links .download-options {
    margin-left: 1rem;
}

.nav-links .download-button {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    white-space: nowrap;
    font-weight: 700;
    letter-spacing: 0.02em;
    background-color: var(--primary-color);
    color: white;
    border-radius: 5px;
    transition: background-color 0.2s;
}

.nav-links .download-button:hover {
    background-color: var(--secondary-color);
}

.cta-button {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: transform 0.2s;
}

.cta-button:hover {
    transform: translateY(-2px);
    background-color: var(--secondary-color);
}

/* Main Content */
main {
    margin: 0 auto;
    max-width: 1400px;
    padding: 0 2rem 4rem;
}

/* Desktop Grid Layout */
@media (min-width: 1024px) {
    .desktop-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
        margin-top: 1.5rem;
    }

    .intro {
        grid-column: span 3;
        border-radius: 10px;
    }

    .features {
        grid-column: span 3;
    }

    .feature-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
    }

    .how-it-works {
        grid-column: span 1;
    }

    .steps-grid {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .why-choose {
        grid-column: span 2;
    }

    .benefits-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

/* Tablet and Mobile Layout */
@media (max-width: 1023px) {
    .feature-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .benefits-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .steps-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    main {
        padding: 0 1rem;
    }

    .feature-grid,
    .benefits-grid,
    .steps-grid {
        grid-template-columns: 1fr;
    }
}

/* Features Section */
.features {
    padding: 2.5rem;
    background: white;
    border-radius: 10px;
    border: 4px solid var(--primary-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.features h2 {
    color: var(--text-color);
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin: 1rem auto;
}

.feature-card {
    background: var(--background-color);
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    border: 2px solid var(--primary-color);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.feature-card h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

/* How It Works Section */
.how-it-works {
    padding: 2.5rem;
    background: white;
    border-radius: 10px;
    border: 4px solid var(--primary-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.how-it-works h2 {
    color: var(--text-color);
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin: 1rem auto;
}

.step-card {
    background: var(--background-color);
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid var(--primary-color);
}

.step-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

/* Why Choose Section */
.why-choose {
    padding: 2.5rem;
    background: white;
    border-radius: 10px;
    border: 4px solid var(--primary-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.why-choose h2 {
    color: var(--text-color);
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 1rem auto;
}

.benefit-card {
    background: var(--background-color);
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid var(--primary-color);
}

.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.benefit-card h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .features,
    .how-it-works,
    .why-choose {
        padding: 1.5rem;
    }

    .feature-grid,
    .benefits-grid,
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 15px;
        max-width: 500px;
    }

    .feature-card {
        margin: 0 auto;
        width: 100%;
    }

    .features h2,
    .how-it-works h2,
    .why-choose h2 {
        font-size: 1.8rem;
    }
}

/* Spacing between sections */
section + section {
    margin-top: 2rem;
}

/* Pricing Section */
.pricing {
    padding: 3rem 2rem;
    background-color: var(--background-color);
    text-align: center;
}

.pricing h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.pricing .section-subtitle {
    font-size: 1.1rem;
    color: var(--text-color);
    margin-bottom: 2rem;
    opacity: 0.9;
}

.pricing-cards {
    text-align: left;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.download-options {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    max-width: 300px;
    margin: 1rem auto;
}

.download-button {
    padding: 0.6rem 1.25rem;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    text-align: center;
    font-size: 1rem;
    transition: all 0.2s ease;
    display: none; /* Hidden by default, shown via JS */
}

.download-button:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
}

/* Section Headers */
h2 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

h3 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

/* Footer */
footer {
    text-align: center;
    padding: 1.5rem;
    background-color: var(--text-color);
    color: white;
    margin-top: auto;
}

/* Responsive Design */
@media (max-width: 1024px) {
    nav {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1rem;
    }

    .logo-container {
        justify-self: center;
    }

    .header-content {
        justify-self: center;
    }

    .nav-links {
        justify-self: center;
    }

    .logo {
        height: 160px;
    }

    .nav-links {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .logo {
        height: 160px;
    }

    .header-content h1 {
        font-size: 1.5rem;
    }

    .nav-links {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }

    .nav-links .download-options {
        margin-left: 0;
        margin-top: 0.5rem;
    }

    .pricing-cards {
        grid-template-columns: 1fr;
    }

    .download-options {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .logo {
        height: 160px;
    }

    .header-content h1 {
        font-size: 1.25rem;
    }

    .feature-card {
        padding: 1rem;
    }
}

/* Download Section */
.download {
    display: none;
}

.premium-note {
    margin-top: 1.5rem;
    color: var(--text-color);
}

.premium-note a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.premium-note a:hover {
    text-decoration: underline;
}

/* Pricing Page Specific */
.pricing {
    padding: 3rem 2rem;
    background-color: var(--background-color);
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    text-align: center;
}

.pricing-card h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.pricing-card ul {
    list-style: none;
    margin: 1.5rem 0;
    text-align: left;
}

.pricing-card.premium {
    border: 2px solid var(--primary-color);
    position: relative;
}

.pricing-card.premium:before {
    content: "";
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    height: 6px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 10px 10px 0 0;
}

.upgrade-note {
    color: var(--text-color);
    font-size: 1rem;
    margin: 0.5rem 0 1.5rem;
    font-style: italic;
}

.price-note {
    color: var(--primary-color);
    font-weight: 500;
    margin-top: 1.5rem;
    text-align: center;
}

.pricing-card ul {
    list-style: none;
    margin: 1.5rem 0;
}

.pricing-card li {
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
}

.pricing-card li:before {
    content: "✓";
    color: var(--primary-color);
    position: absolute;
    left: 0;
}

.price-options {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 1.5rem 0;
    padding: 1rem;
    background-color: var(--background-color);
    border-radius: 8px;
}

.price-option {
    text-align: center;
}

.price {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.period {
    display: block;
    font-size: 0.9rem;
    color: var(--text-color);
}

@media (max-width: 480px) {
    .price-options {
        flex-direction: column;
        gap: 1rem;
    }
    
    .price {
        font-size: 1.75rem;
    }
}

.section-subtitle {
    text-align: center;
    color: var(--text-color);
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.pricing h2 {
    margin-bottom: 0.5rem;
}

/* Intro Section */
.intro {
    padding: 2.5rem;
    text-align: center;
    background: white;
    color: var(--text-color);
    border-radius: 10px;
    border: 4px solid var(--primary-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.intro h2 {
    color: var(--text-color);
    margin-bottom: 0.25rem;
    font-size: 2.2rem;
}

.intro .section-subtitle {
    color: var(--text-color);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    opacity: 0.8;
}

.protection-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin: 1.5rem 0 2rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.8;
}

.intro .screenshot-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 2rem auto;
    padding: 0 1rem;
}

.intro .screenshot {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    max-width: 220px;
    margin: 0 auto;
    border: 2px solid var(--primary-color);
}

.intro .screenshot:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.hero-download {
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-download-button {
    padding: 1rem 2rem;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    display: none; /* Hidden by default, shown via JS */
}

.hero-download-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    background-color: var(--secondary-color);
}

@media (max-width: 1024px) {
    .intro .screenshot-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .protection-stats {
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .intro {
        padding: 1.5rem;
    }

    .intro h2 {
        font-size: 1.8rem;
    }

    .intro .section-subtitle {
        font-size: 1.1rem;
    }

    .protection-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    .stat-number {
        font-size: 1.75rem;
    }

    .intro .screenshot-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .intro .screenshot {
        max-width: 200px;
    }
}

/* Screenshots Section */
.screenshots {
    padding: 1.5rem;
    background: white;
    grid-column: span 3;
}

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

.screenshot {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: transform 0.2s ease;
    max-width: 300px;
    margin: 0 auto;
}

.screenshot:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

@media (max-width: 1024px) {
    .screenshot-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .screenshot-grid {
        grid-template-columns: 1fr;
    }
    
    .screenshot {
        max-width: 250px;
    }
}

/* Support Page */
.support {
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.support h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.support .section-subtitle {
    font-size: 1.1rem;
    color: var(--text-color);
    margin-bottom: 2rem;
    opacity: 0.9;
}

.support-grid {
    text-align: left;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.support-grid.additional-faqs {
    margin-top: 2rem;
}

.support-card.wide-card {
    grid-column: 1 / -1;
}

.faq-list.two-column {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.support-card {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.faq-list {
    display: grid;
    gap: 1.5rem;
}

.faq-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.faq-item h4 {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin: 0;
}

.faq-item p {
    margin: 0;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .faq-list.two-column {
        grid-template-columns: 1fr;
    }
    
    .support-grid {
        gap: 1rem;
    }
    
    .support-card {
        padding: 1.25rem;
    }
}

.contact-methods {
    list-style: none;
    margin: 1rem 0;
}

.contact-methods li {
    margin-bottom: 0.75rem;
}

.contact-methods a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.contact-methods a:hover {
    text-decoration: underline;
}

footer a {
    color: white;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .support {
        padding: 1rem;
    }
    
    .support-grid {
        gap: 1rem;
    }
}

/* Privacy Policy Page */
.privacy {
    padding: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.privacy-content {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.last-updated {
    color: var(--text-color);
    font-style: italic;
    margin-bottom: 2rem;
}

.privacy-section {
    margin-bottom: 2rem;
}

.privacy-section h3 {
    color: var(--primary-color);
    font-size: 1.4rem;
    margin: 1.5rem 0 1rem;
}

.privacy-section h4 {
    color: var(--text-color);
    font-size: 1.2rem;
    margin: 1rem 0 0.5rem;
}

.privacy-section h5 {
    color: var(--text-color);
    font-size: 1.1rem;
    margin: 1rem 0 0.5rem;
}

.privacy-section p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.privacy-section ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.privacy-section li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.privacy-section a {
    color: var(--primary-color);
    text-decoration: none;
}

.privacy-section a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .privacy {
        padding: 1rem;
    }
    
    .privacy-content {
        padding: 1.5rem;
    }
}

/* Mobile Navigation */
.mobile-menu-button {
    display: none;
}

.mobile-menu-overlay {
    display: none;
}

.mobile-menu-header {
    display: none;
}

/* Desktop Navigation */
.nav-links {
    justify-self: end;
    display: flex;
    list-style: none;
    gap: 1.5rem;
    align-items: center;
}

/* Mobile-only styles */
@media (max-width: 1023px) {
    .mobile-menu-button {
        padding: 0.4rem 0.8rem;
        gap: 0.3rem;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        height: 100vh;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 0;
        z-index: 999;
        transform: translateX(-100%);
        transition: transform 0.3s ease-in-out;
    }

    .nav-links.active {
        display: flex;
        transform: translateX(0);
    }

    .nav-links .mobile-menu-header {
        display: block;
        padding: 1rem;
        border-bottom: 1px solid rgba(0,0,0,0.1);
        width: 100%;
    }

    .mobile-menu-header .logo {
        margin: 0 auto;
    }

    .nav-links.active + .mobile-menu-header {
        display: block;
        padding: 1rem;
        border-bottom: 1px solid rgba(0,0,0,0.1);
        background: white;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 1000;
    }

    .mobile-menu-content {
        padding: 1rem;
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }

    .nav-links li {
        margin: 0.25rem 0;
        text-align: center;
    }

    .nav-links a {
        color: var(--text-color);
        font-size: 1.1rem;
        font-weight: 600;
        padding: 0.5rem;
        border-radius: 8px;
        transition: background-color 0.3s ease;
        display: inline-block;
        width: 100%;
    }

    .nav-links .download-options {
        margin: 1rem 0;
        width: 100%;
        max-width: 300px;
        align-self: center;
        order: -1;
    }

    .nav-links .download-button {
        padding: 0.75rem;
        margin: 0.25rem 0;
        font-size: 0.95rem;
    }
}

/* Tablet Specific Adjustments */
@media (min-width: 768px) and (max-width: 1023px) {
    .feature-grid,
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .protection-stats {
        grid-template-columns: repeat(3, 1fr);
    }

    .screenshot-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .hero-download {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

/* Overlay for Mobile Menu */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(4px);
    z-index: 998;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
    display: block;
    opacity: 1;
}

/* Footer spacing fix */
@media (max-width: 1023px) {
    main {
        margin-bottom: 4rem;
    }
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    box-sizing: border-box;
}

.container h2 {
    text-align: center;
    color: #2c3e50;
    margin-bottom: 30px;
    line-height: 1.4;
}

.container .section-subtitle {
    text-align: center;
    font-size: 1.2em;
    color: #34495e;
    margin-bottom: 40px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin: 1rem auto;
}

.feature-card {
    background: var(--background-color);
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    border: 2px solid var(--primary-color);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

.feature-card h3 {
    font-size: 1.5em;
    color: #2c3e50;
    margin-bottom: 15px;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
}

.faq-card {
    background-color: #e8f4f8;
    border: 2px dashed #2c3e50;
    text-align: center;
    cursor: pointer;
}

.faq-card:hover {
    background-color: #d1e8f0;
}

.hero-download {
    margin-top: 40px;
    text-align: center;
}

.main-heading {
    text-align: center;
    margin: 0 auto 40px;
    max-width: 800px;
    padding: 0 20px;
}

.main-heading h2 {
    font-size: 2.2rem;
    font-weight: bold;
    color: #2c3e50;
    margin: 0 0 10px 0;
    line-height: 1.4;
}

.main-heading h2:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .main-heading h2 {
        font-size: 1.8rem;
    }
}

/* Remove the old subtitle since we're using h2s now */
/* .container .section-subtitle {
    display: none;
} */

@media (max-width: 768px) {
    .container {
        padding: 10px;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .feature-card {
        padding: 15px;
    }
}

/* Ensure container doesn't cause horizontal scroll */
.container {
    max-width: 1200px;
    width: auto;
    margin: 20px auto;
    padding: 40px;
    box-sizing: border-box;
}

/* Base feature grid styles */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin: 1rem auto;
}

@media (max-width: 1024px) {
    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    main {
        padding: 0 1rem;
    }

    .feature-grid,
    .benefits-grid,
    .steps-grid {
        grid-template-columns: 1fr;
    }
} 