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

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: #111827;
    background-color: #ffffff;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header Styles */
header {
    background-color: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    position: sticky;
    top: 0;
    z-index: 100;
}

.navbar {
    padding: 16px 0;
}

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

.nav-logo {
    text-decoration: none;
    color: #111827;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 18px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    text-decoration: none;
    color: #111827;
    font-weight: 400;
    font-size: 14px;
    transition: color 0.2s ease;
}

.nav-links a:hover {
    color: #2563eb;
}

.dropdown {
    position: relative;
}

.dropdown-btn {
    background: none;
    border: none;
    color: #111827;
    font-weight: 400;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: color 0.2s ease;
}

.dropdown-btn:hover {
    color: #2563eb;
}

.dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 8px 0;
    min-width: 200px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s ease;
}

.dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-content a {
    display: block;
    padding: 8px 16px;
    color: #111827;
    text-decoration: none;
    font-size: 14px;
    transition: background-color 0.2s ease;
}

.dropdown-content a:hover {
    background-color: #f3f4f6;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.nav-link {
    text-decoration: none;
    color: #111827;
    font-weight: 400;
    font-size: 14px;
    transition: color 0.2s ease;
}

.nav-link:hover {
    color: #2563eb;
}

/* Button Styles */
.btn-primary {
    background-color: #000000;
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 16px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: #1f2937;
    transform: translateY(-1px);
}

.btn-secondary {
    background-color: #ffffff;
    color: #000000;
    padding: 8px 16px;
    border-radius: 16px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s ease;
    border: 1px solid #e5e7eb;
    cursor: pointer;
}

.btn-secondary:hover {
    background-color: #f9fafb;
    border-color: #d1d5db;
}

/* Hero Section */
.hero {
    padding: 80px 0 120px;
    background-color: #ffffff;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 72px;
    font-weight: 600;
    line-height: 72px;
    color: #111827;
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 20px;
    color: #000000;
    margin-bottom: 48px;
    line-height: 1.6;
}

.introduction-section {
    background-color: #f8fafc;
    border-radius: 16px;
    padding: 32px;
    margin: 48px 0;
    text-align: left;
}

.introduction-title {
    font-size: 24px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 16px;
}

.introduction-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #374151;
    margin-bottom: 16px;
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 32px;
}

.hero-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
    color: #6b7280;
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-tag {
    display: inline-block;
    background-color: #f3f4f6;
    color: #6b7280;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 16px;
}

.section-header h2 {
    font-size: 48px;
    font-weight: 300;
    color: #111827;
    margin-bottom: 16px;
    line-height: 1.2;
}

.section-header p {
    font-size: 18px;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
}

/* Problem Section */
.problem-section {
    padding: 120px 0;
    background-color: #ffffff;
}

.problem-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-bottom: 80px;
}

.stat-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 24px;
    border-radius: 12px;
    background-color: #f9fafb;
}

.stat-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stat-icon.error {
    background-color: #fef2f2;
    color: #dc2626;
}

.stat-icon.warning {
    background-color: #fffbeb;
    color: #d97706;
}

.stat-content h3 {
    font-size: 20px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 4px;
}

.stat-content p {
    font-size: 14px;
    color: #6b7280;
}

.cost-analysis {
    text-align: center;
    margin-bottom: 64px;
}

.cost-analysis h3 {
    font-size: 32px;
    font-weight: 500;
    color: #111827;
    margin-bottom: 32px;
}

.response-times {
    display: flex;
    justify-content: center;
    gap: 64px;
    margin-bottom: 32px;
}

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

.response-item h4 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 8px;
}

.time-good {
    color: #059669;
}

.time-warning {
    color: #d97706;
}

.time-bad {
    color: #dc2626;
}

.response-item p {
    font-size: 14px;
    color: #6b7280;
}

.cost-description {
    font-size: 16px;
    color: #374151;
    max-width: 600px;
    margin: 0 auto;
}

/* Solution Section */
.solution-section {
    padding: 120px 0;
    background-color: #ffffff;
}

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

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 32px;
    border-radius: 16px;
    background-color: #f9fafb;
}

.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon.success {
    background-color: #ecfdf5;
    color: #059669;
}

.feature-content h3 {
    font-size: 20px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 8px;
}

.feature-content p {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 8px;
}

.feature-highlight {
    font-size: 12px;
    font-weight: 500;
    color: #059669;
    background-color: #ecfdf5;
    padding: 4px 8px;
    border-radius: 6px;
    display: inline-block;
}

/* How It Works Section */
.how-it-works {
    padding: 120px 0;
    background-color: #f9fafb;
}

.process-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.step-item {
    display: flex;
    align-items: center;
    gap: 16px;
    text-align: center;
    max-width: 200px;
}

.step-number {
    width: 40px;
    height: 40px;
    background-color: #111827;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 16px;
    flex-shrink: 0;
}

.step-arrow {
    color: #d1d5db;
    flex-shrink: 0;
}

.step-content h4 {
    font-size: 16px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 4px;
}

.step-content p {
    font-size: 14px;
    color: #6b7280;
}

.process-time {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
    color: #059669;
    margin-bottom: 48px;
}

/* CTA Section */
.cta-section {
    text-align: center;
    margin-top: 64px;
}

.cta-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
    color: #6b7280;
    margin-top: 16px;
}

/* Setup Section */
.setup-section {
    padding: 120px 0;
    background-color: #ffffff;
}

.setup-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-bottom: 80px;
}

.setup-step {
    padding: 32px;
    border-radius: 16px;
    background-color: #f9fafb;
}

.step-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.step-num {
    font-size: 18px;
    font-weight: 600;
    color: #6b7280;
}

.setup-step h3 {
    font-size: 20px;
    font-weight: 600;
    color: #111827;
}

.setup-step p {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.6;
}

.results-section {
    text-align: center;
    margin-bottom: 64px;
}

.results-section h3 {
    font-size: 32px;
    font-weight: 500;
    color: #111827;
    margin-bottom: 32px;
}

.result-stats {
    display: flex;
    justify-content: center;
    gap: 64px;
    margin-bottom: 32px;
}

.result-stat {
    text-align: center;
}

.result-stat h4 {
    font-size: 48px;
    font-weight: 600;
    color: #059669;
    margin-bottom: 8px;
}

.result-stat p {
    font-size: 14px;
    color: #6b7280;
}

/* FAQ Section */
.faq-section {
    padding: 120px 0;
    background-color: #f9fafb;
}

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

.faq-item {
    border-bottom: 1px solid #e5e7eb;
}

.faq-question {
    width: 100%;
    padding: 24px 0;
    background: none;
    border: none;
    text-align: left;
    font-size: 18px;
    font-weight: 500;
    color: #111827;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: color 0.2s ease;
}

.faq-question:hover {
    color: #2563eb;
}

.faq-question svg {
    transition: transform 0.2s ease;
}

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

.faq-answer {
    padding-bottom: 24px;
    display: none;
}

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

.faq-answer p {
    font-size: 16px;
    color: #6b7280;
    line-height: 1.6;
}

/* Security Section */
.security-section {
    padding: 120px 0;
    background-color: #ffffff;
}

.security-content {
    display: flex;
    align-items: flex-start;
    gap: 48px;
    max-width: 1000px;
    margin: 0 auto;
}

.security-icon {
    flex-shrink: 0;
    color: #2563eb;
}

.security-details h3 {
    font-size: 24px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 16px;
}

.security-details p {
    font-size: 16px;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 24px;
}

.security-features {
    list-style: none;
    margin-bottom: 32px;
}

.security-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    color: #374151;
    margin-bottom: 12px;
}

.security-features svg {
    color: #059669;
    flex-shrink: 0;
}

.security-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-bottom: 24px;
}

.security-card {
    padding: 24px;
    border-radius: 12px;
    background-color: #f9fafb;
}

.card-icon {
    width: 48px;
    height: 48px;
    background-color: #eff6ff;
    color: #2563eb;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.security-card h4 {
    font-size: 18px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 8px;
}

.security-card p {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.6;
}

/* Final CTA Section */
.final-cta {
    padding: 120px 0;
    background-color: #111827;
    color: #ffffff;
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.final-cta h2 {
    font-size: 48px;
    font-weight: 500;
    margin-bottom: 24px;
    line-height: 1.2;
}

.final-cta p {
    font-size: 18px;
    color: #d1d5db;
    margin-bottom: 48px;
}

.cta-benefits {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    color: #ffffff;
}

.benefit-item svg {
    color: #059669;
}

.cta-actions {
    margin-bottom: 24px;
}

.final-cta .btn-primary {
    background-color: #ffffff;
    color: #111827;
    padding: 12px 24px;
    font-size: 18px;
}

.final-cta .btn-primary:hover {
    background-color: #f3f4f6;
}

.final-cta .cta-note {
    color: #9ca3af;
}

/* Footer */
footer {
    background-color: #111827;
    color: #ffffff;
    padding: 64px 0 32px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 64px;
    margin-bottom: 48px;
}

.footer-brand .footer-logo {
    text-decoration: none;
    color: #ffffff;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 32px;
}

.footer-section h3 {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 16px;
}

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

.footer-section li {
    margin-bottom: 8px;
}

.footer-section a {
    color: #d1d5db;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s ease;
}

.footer-section a:hover {
    color: #ffffff;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 32px;
    border-top: 1px solid #374151;
    font-size: 14px;
    color: #9ca3af;
}

.footer-bottom a {
    color: #d1d5db;
    text-decoration: none;
}

.footer-bottom a:hover {
    color: #ffffff;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 48px;
        line-height: 52px;
    }
    
    .section-header h2 {
        font-size: 36px;
    }
    
    .hero-actions {
        flex-direction: column;
        gap: 12px;
    }
    
    .process-steps {
        flex-direction: column;
        align-items: center;
    }
    
    .step-arrow {
        transform: rotate(90deg);
    }
    
    .response-times {
        flex-direction: column;
        gap: 24px;
    }
    
    .result-stats {
        flex-direction: column;
        gap: 24px;
    }
    
    .cta-benefits {
        flex-direction: column;
        gap: 16px;
    }
    
    .security-content {
        flex-direction: column;
        gap: 32px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .nav-menu {
        display: none;
    }
}

/* Pricing Section */
.pricing-section {
    padding: 120px 0;
    background-color: #ffffff;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card {
    background-color: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 32px;
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    border-color: #2563eb;
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.1);
    transform: translateY(-4px);
}

.pricing-card.featured {
    border-color: #2563eb;
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.15);
    transform: scale(1.05);
}

.featured-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #2563eb;
    color: #ffffff;
    padding: 6px 16px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 500;
}

.pricing-header {
    text-align: center;
    margin-bottom: 32px;
}

.pricing-header h3 {
    font-size: 24px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 16px;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 16px;
}

.currency {
    font-size: 24px;
    font-weight: 500;
    color: #6b7280;
}

.amount {
    font-size: 48px;
    font-weight: 600;
    color: #111827;
    margin: 0 4px;
}

.period {
    font-size: 16px;
    color: #6b7280;
}

.pricing-header p {
    font-size: 16px;
    color: #6b7280;
    line-height: 1.6;
}

.pricing-features {
    margin-bottom: 32px;
}

.pricing-features ul {
    list-style: none;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    color: #374151;
    margin-bottom: 12px;
}

.pricing-features svg {
    color: #059669;
    flex-shrink: 0;
}

.pricing-cta {
    text-align: center;
}

.pricing-cta .btn-primary,
.pricing-cta .btn-secondary {
    width: 100%;
    justify-content: center;
    padding: 12px 24px;
}

/* Contact Section */
.contact-section {
    padding: 120px 0;
    background-color: #f9fafb;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 64px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info h2 {
    font-size: 32px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 16px;
}

.contact-info > p {
    font-size: 18px;
    color: #6b7280;
    margin-bottom: 48px;
    line-height: 1.6;
}

.contact-details {
    margin-bottom: 48px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 32px;
}

.contact-icon {
    width: 48px;
    height: 48px;
    background-color: #eff6ff;
    color: #2563eb;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-content h3 {
    font-size: 18px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 4px;
}

.contact-content p {
    font-size: 16px;
    color: #6b7280;
    line-height: 1.6;
}

.contact-content a {
    color: #2563eb;
    text-decoration: none;
}

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

.response-time {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 24px;
    background-color: #f0f9ff;
    border-radius: 12px;
    border-left: 4px solid #2563eb;
}

.response-icon {
    color: #2563eb;
    flex-shrink: 0;
}

.response-content h4 {
    font-size: 16px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 4px;
}

.response-content p {
    font-size: 14px;
    color: #6b7280;
}

/* Contact Form */
.contact-form-container {
    background-color: #ffffff;
    border-radius: 16px;
    padding: 48px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.contact-form {
    display: grid;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 14px;
    font-weight: 500;
    color: #374151;
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 16px;
    color: #111827;
    background-color: #ffffff;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    color: #374151;
    cursor: pointer;
    margin-bottom: 0;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #d1d5db;
    border-radius: 4px;
    position: relative;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background-color: #2563eb;
    border-color: #2563eb;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '';
    position: absolute;
    left: 6px;
    top: 2px;
    width: 6px;
    height: 10px;
    border: solid #ffffff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.contact-form .btn-primary {
    width: 100%;
    justify-content: center;
    padding: 16px 24px;
    font-size: 18px;
    margin-top: 16px;
}

/* Thank You Message */
.thank-you-message {
    text-align: center;
    padding: 48px;
    background-color: #f0fdf4;
    border-radius: 16px;
    border: 1px solid #bbf7d0;
}

.thank-you-icon {
    margin-bottom: 24px;
}

.thank-you-message h3 {
    font-size: 24px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 16px;
}

.thank-you-message p {
    font-size: 16px;
    color: #374151;
    line-height: 1.6;
    margin-bottom: 16px;
}

.thank-you-message a {
    color: #2563eb;
    text-decoration: none;
}

.thank-you-message a:hover {
    text-decoration: underline;
}

/* Active Navigation Link */
.nav-links a.active {
    color: #2563eb;
    font-weight: 500;
}

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .contact-form-container {
        padding: 32px;
    }
    
    .hero h1 {
        font-size: 48px;
        line-height: 52px;
    }
    
    .section-header h2 {
        font-size: 36px;
    }
    
    .hero-actions {
        flex-direction: column;
        gap: 12px;
    }
    
    .process-steps {
        flex-direction: column;
        align-items: center;
    }
    
    .step-arrow {
        transform: rotate(90deg);
    }
    
    .response-times {
        flex-direction: column;
        gap: 24px;
    }
    
    .result-stats {
        flex-direction: column;
        gap: 24px;
    }
    
    .cta-benefits {
        flex-direction: column;
        gap: 16px;
    }
    
    .security-content {
        flex-direction: column;
        gap: 32px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .nav-menu {
        display: none;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero {
        padding: 40px 0 80px;
    }
    
    .hero h1 {
        font-size: 36px;
        line-height: 40px;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
    
    .problem-section,
    .solution-section,
    .how-it-works,
    .setup-section,
    .faq-section,
    .security-section,
    .final-cta,
    .pricing-section,
    .contact-section {
        padding: 80px 0;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .pricing-card {
        padding: 24px;
    }
    
    .contact-form-container {
        padding: 24px;
    }
}

/* Legal Content Styles */
.legal-content {
    padding: 80px 0;
    background-color: #ffffff;
}

.legal-document {
    max-width: 800px;
    margin: 0 auto;
}

.legal-section {
    margin-bottom: 48px;
}

.legal-section h2 {
    font-size: 28px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid #e5e7eb;
}

.legal-section h3 {
    font-size: 20px;
    font-weight: 600;
    color: #111827;
    margin: 24px 0 12px 0;
}

.legal-section p {
    font-size: 16px;
    color: #374151;
    line-height: 1.7;
    margin-bottom: 16px;
}

.legal-section ul {
    margin: 16px 0;
    padding-left: 24px;
}

.legal-section li {
    font-size: 16px;
    color: #374151;
    line-height: 1.7;
    margin-bottom: 8px;
}

.legal-section a {
    color: #2563eb;
    text-decoration: none;
}

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

.contact-info {
    background-color: #f9fafb;
    padding: 24px;
    border-radius: 12px;
    border-left: 4px solid #2563eb;
    margin: 24px 0;
}

.contact-info p {
    margin-bottom: 12px;
}

.contact-info a {
    color: #2563eb;
    text-decoration: none;
}

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