/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #DC2626;
}

.nav-logo i {
    font-size: 2rem;
    margin-right: 0.5rem;
}

.nav-logo-img {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    margin-right: 0.5rem;
    object-fit: cover;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #DC2626;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    padding: 80px 0 60px;
    background: linear-gradient(135deg, #DC2626 0%, #991B1B 100%);
    color: white;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content h1 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.hero-badge {
    height: 50px;
    width: auto;
    transition: transform 0.3s ease;
}

.hero-badge:hover {
    transform: scale(1.05);
}

.btn-primary, .btn-secondary {
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary {
    background: #DC2626;
    color: white;
}

.btn-primary:hover {
    background: #B91C1C;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #333;
    transform: translateY(-2px);
}

.hero-note {
    font-size: 0.9rem;
    opacity: 0.7;
}

/* First Alert Section */
.first-alert-section {
    margin: 1.5rem 0;
    text-align: center;
}

.btn-alert {
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #333;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0 auto;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.btn-alert:hover {
    background: linear-gradient(135deg, #FFA500, #FF8C00);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

.alert-note {
    font-size: 0.85rem;
    opacity: 0.8;
    margin-top: 0.5rem;
    font-style: italic;
}

/* Phone Mockup */
.phone-mockup {
    position: relative;
    width: 250px;
    height: 500px;
    background: #000000;
    border-radius: 25px;
    padding: 15px;
    margin: 0 auto;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.app-screenshot {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.chat-interface {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.chat-header {
    background: #DC2626;
    color: white;
    padding: 1rem;
    display: flex;
    align-items: center;
}

.contact-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.avatar {
    width: 40px;
    height: 40px;
    background: #DC2626;
    border-radius: 50%;
}

.contact-details h4 {
    font-size: 1rem;
    margin-bottom: 0.2rem;
}

.contact-details span {
    font-size: 0.8rem;
    opacity: 0.8;
}

.chat-messages {
    flex: 1;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background: #e5ddd5;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
}

.message {
    max-width: 80%;
    padding: 0.8rem 1rem;
    border-radius: 18px;
    position: relative;
}

.message.received {
    background: white;
    align-self: flex-start;
}

.message.sent {
    background: #FEE2E2;
    align-self: flex-end;
}

.message p {
    margin-bottom: 0.3rem;
    font-size: 0.9rem;
}

.message .time {
    font-size: 0.7rem;
    opacity: 0.6;
    position: absolute;
    bottom: 0.3rem;
    right: 0.8rem;
}

/* Features Section */
.features {
    padding: 60px 0;
    background: #f8f9fa;
}

.features-showcase {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

.app-preview {
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-mockup-feature {
    position: relative;
    width: 250px;
    height: 500px;
    background: #000000;
    border-radius: 30px;
    padding: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.phone-screen-feature {
    width: 100%;
    height: 100%;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.app-screenshot-feature {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.features h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 0.8rem;
    color: #333;
}

.section-subtitle {
    text-align: center;
    font-size: 1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto 2rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #DC2626, #991B1B);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.feature-icon i {
    font-size: 1.5rem;
    color: white;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #333;
}

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

/* App Screenshots Section */
.app-screenshots {
    padding: 60px 0;
    background: white;
}

.app-screenshots h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 0.8rem;
    color: #333;
}

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

.screenshot-item {
    text-align: center;
}

.phone-mockup-screenshot {
    position: relative;
    width: 200px;
    height: 400px;
    background: #000000;
    border-radius: 25px;
    padding: 15px;
    margin: 0 auto 1.5rem;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.phone-screen-screenshot {
    width: 100%;
    height: 100%;
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
}

.app-screenshot-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

.screenshot-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #333;
}

.screenshot-item p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Pricing Section */
.pricing {
    padding: 60px 0;
    background: #f8f9fa;
}

.pricing-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.pricing-text h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #333;
}

.pricing-text p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.price-highlight {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #DC2626;
    line-height: 1;
}

.price-text {
    font-size: 1.1rem;
    color: #666;
    margin-top: 0.5rem;
}

.btn-outline {
    padding: 1rem 2rem;
    border: 2px solid #DC2626;
    background: transparent;
    color: #DC2626;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: #DC2626;
    color: white;
}

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

.pricing-visual {
    position: relative;
    width: 200px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pricing-visual i {
    font-size: 4rem;
    color: #DC2626;
    z-index: 2;
}

.pricing-layers {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.layer {
    position: absolute;
    border: 3px solid #DC2626;
    border-radius: 50%;
    opacity: 0.3;
    animation: pulse 2s infinite;
}

.layer:nth-child(1) {
    width: 120px;
    height: 120px;
    top: -60px;
    left: -60px;
    animation-delay: 0s;
}

.layer:nth-child(2) {
    width: 160px;
    height: 160px;
    top: -80px;
    left: -80px;
    animation-delay: 0.5s;
}

.layer:nth-child(3) {
    width: 200px;
    height: 200px;
    top: -100px;
    left: -100px;
    animation-delay: 1s;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.1;
    }
    100% {
        transform: scale(1);
        opacity: 0.3;
    }
}

/* FAQ Section */
.faq {
    padding: 60px 0;
    background: #f8f9fa;
}

.faq h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 0.8rem;
    color: #333;
}

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

.faq-item {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-5px);
}

.faq-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #DC2626;
}

.faq-item p {
    color: #666;
    line-height: 1.6;
}

/* Download Section */
.download {
    padding: 60px 0;
    background: white;
}

.download h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 0.8rem;
    color: #333;
}

.download-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.download-card {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.download-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #DC2626, #991B1B);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.download-icon i {
    font-size: 1.5rem;
    color: white;
}

.download-badge {
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
}

.store-badge {
    height: 60px;
    width: auto;
    transition: transform 0.3s ease;
}

.store-badge:hover {
    transform: scale(1.05);
}

.download-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.download-card p {
    color: #666;
    margin-bottom: 1.5rem;
}

.btn-download {
    padding: 0.8rem 2rem;
    background: #DC2626;
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-download:hover {
    background: #B91C1C;
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: #1f1f1f;
    color: white;
    padding: 40px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
    color: #DC2626;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #DC2626;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #DC2626;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

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

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .phone-mockup {
        width: 250px;
        height: 500px;
    }

    .pricing-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .features-showcase {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }

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

    .features h2,
    .pricing-text h2,
    .download h2 {
        font-size: 2rem;
    }

    .phone-mockup {
        width: 200px;
        height: 400px;
    }
    
    .phone-mockup-screenshot {
        width: 180px;
        height: 360px;
    }
    
    .screenshots-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Page Hero Styles */
.page-hero {
    padding: 80px 0 60px;
    background: linear-gradient(135deg, #DC2626 0%, #991B1B 100%);
    color: white;
    text-align: center;
}

.page-hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
}

.page-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* About Page Styles */
.about-content {
    padding: 80px 0;
    background: white;
}

.about-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #333;
}

.about-text h3 {
    font-size: 1.8rem;
    margin: 2rem 0 1rem;
    color: #DC2626;
}

.about-text p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.about-text ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.about-text li {
    color: #666;
    margin-bottom: 0.5rem;
}

.about-visual {
    position: relative;
    width: 200px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.about-visual i {
    font-size: 4rem;
    color: #DC2626;
    z-index: 2;
}

.about-layers {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* App Showcase */
.app-showcase {
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-mockup-small {
    position: relative;
    width: 200px;
    height: 400px;
    background: #000000;
    border-radius: 25px;
    padding: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.phone-screen-small {
    width: 100%;
    height: 100%;
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
}

.app-screenshot-small {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

/* Values Section */
.values {
    padding: 80px 0;
    background: #f8f9fa;
}

.values h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.value-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #DC2626, #991B1B);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.value-icon i {
    font-size: 2rem;
    color: white;
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
}

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

/* Team Section */
.team {
    padding: 80px 0;
    background: white;
}

.team h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #333;
}

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

.team-member {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
}

.member-avatar {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #DC2626, #991B1B);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.member-avatar i {
    font-size: 2.5rem;
    color: white;
}

.team-member h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.team-member p {
    color: #666;
    line-height: 1.6;
}

/* CTA Section */
.cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #DC2626 0%, #991B1B 100%);
    color: white;
    text-align: center;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-badge {
    height: 50px;
    width: auto;
    transition: transform 0.3s ease;
}

.cta-badge:hover {
    transform: scale(1.05);
}

/* Contact Page Styles */
.contact-content {
    padding: 80px 0;
    background: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #333;
}

.contact-info p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.method-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #DC2626, #991B1B);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.method-icon i {
    font-size: 1.5rem;
    color: white;
}

.method-info h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.method-info p {
    color: #666;
    margin: 0;
    font-size: 1rem;
}

/* Contact Form */
.contact-form {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
}

.contact-form h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #333;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #DC2626;
}

/* Contact FAQ */
.contact-faq {
    padding: 80px 0;
    background: #f8f9fa;
}

/* Privacy & Terms Pages */
.privacy-content,
.terms-content {
    padding: 80px 0;
    background: white;
}

.privacy-text,
.terms-text {
    max-width: 800px;
    margin: 0 auto;
}

.last-updated {
    font-style: italic;
    color: #666;
    margin-bottom: 2rem;
}

.privacy-text h2,
.terms-text h2 {
    font-size: 2rem;
    margin: 2rem 0 1rem;
    color: #333;
}

.privacy-text h3,
.terms-text h3 {
    font-size: 1.5rem;
    margin: 1.5rem 0 1rem;
    color: #DC2626;
}

.privacy-text p,
.terms-text p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.privacy-text ul,
.terms-text ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.privacy-text li,
.terms-text li {
    color: #666;
    margin-bottom: 0.5rem;
}

/* Help Center Styles */
.help-search {
    padding: 40px 0;
    background: #f8f9fa;
}

.search-box {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

.search-box input {
    width: 100%;
    padding: 1rem 3rem 1rem 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 50px;
    font-size: 1rem;
}

.search-box button {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: #DC2626;
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
}

.help-categories {
    padding: 80px 0;
    background: white;
}

.help-categories h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.category-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease;
}

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

.category-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #DC2626, #991B1B);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.category-icon i {
    font-size: 2rem;
    color: white;
}

.category-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.category-card p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.category-link {
    color: #DC2626;
    text-decoration: none;
    font-weight: 600;
}

.category-link:hover {
    text-decoration: underline;
}

/* Help FAQ */
.help-faq {
    padding: 80px 0;
    background: #f8f9fa;
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background: white;
    border-radius: 10px;
    margin-bottom: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-question h3 {
    font-size: 1.2rem;
    color: #333;
    margin: 0;
}

.faq-question i {
    color: #DC2626;
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 0 1.5rem 1.5rem;
    background: white;
    border-radius: 0 0 10px 10px;
    margin-top: -1rem;
    margin-bottom: 1rem;
    display: none;
}

.faq-answer p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-item.active .faq-answer {
    display: block;
}

/* Contact Support */
.contact-support {
    padding: 80px 0;
    background: white;
}

.contact-support h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.contact-support p {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
}

.support-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.support-option {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease;
}

.support-option:hover {
    transform: translateY(-5px);
}

.support-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #DC2626, #991B1B);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.support-icon i {
    font-size: 2rem;
    color: white;
}

.support-option h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.support-option p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* Support Page Styles */
.support-options {
    padding: 80px 0;
    background: white;
}

.support-options h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.support-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease;
}

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

.support-card .support-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #DC2626, #991B1B);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.support-card .support-icon i {
    font-size: 2rem;
    color: white;
}

.support-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.support-card p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* Common Issues */
.common-issues {
    padding: 80px 0;
    background: #f8f9fa;
}

.common-issues h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
}

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

.issue-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    transition: transform 0.3s ease;
}

.issue-item:hover {
    transform: translateY(-5px);
}

.issue-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #DC2626, #991B1B);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.issue-icon i {
    font-size: 1.5rem;
    color: white;
}

.issue-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.issue-content p {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.issue-link {
    color: #DC2626;
    text-decoration: none;
    font-weight: 600;
}

.issue-link:hover {
    text-decoration: underline;
}

/* System Status */
.system-status {
    padding: 80px 0;
    background: white;
}

.system-status h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
}

.status-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.status-item {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.status-indicator {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    flex-shrink: 0;
}

.status-indicator.online {
    background: #10B981;
}

.status-indicator.offline {
    background: #EF4444;
}

.status-indicator.maintenance {
    background: #F59E0B;
}

.status-info h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.status-info p {
    color: #666;
    margin: 0;
}

/* Support Form */
.support-form {
    padding: 80px 0;
    background: #f8f9fa;
}

.support-form h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.support-form p {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
}

.support-form-container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .issues-grid {
        grid-template-columns: 1fr;
    }
    
    .issue-item {
        flex-direction: column;
        text-align: center;
    }
}

/* Loading animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content,
.hero-image,
.feature-card,
.download-card {
    animation: fadeInUp 0.8s ease-out;
}
