/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1f2937;
    background-color: #ffffff;
}

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1f2937;
    color: white;
    padding: 20px;
    z-index: 1000;
    transition: transform 0.3s ease;
}

.cookie-banner.hidden {
    transform: translateY(100%);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

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

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

.btn-secondary {
    background-color: transparent;
    color: #3b82f6;
    border: 2px solid #3b82f6;
}

.btn-secondary:hover {
    background-color: #3b82f6;
    color: white;
}

.btn-large {
    padding: 16px 32px;
    font-size: 18px;
}

/* Header and Navigation */
.main-header {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 24px;
    font-weight: bold;
    color: #1e40af;
}

.logo-svg {
    width: 40px;
    height: 40px;
}

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

.nav-link {
    text-decoration: none;
    color: #4b5563;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #3b82f6;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #1f2937;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Banner */
.hero-banner {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    padding: 80px 0;
    min-height: 600px;
    display: flex;
    align-items: center;
}

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

.hero-text h1 {
    font-size: 48px;
    font-weight: 700;
    color: #1e40af;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-text p {
    font-size: 20px;
    color: #4b5563;
    margin-bottom: 32px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-graphic {
    display: flex;
    justify-content: center;
    align-items: center;
}

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

/* Features Section */
.features-overview {
    padding: 80px 0;
    background: white;
}

.features-overview h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    color: #1e40af;
    margin-bottom: 60px;
}

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

.feature-card {
    text-align: center;
    padding: 40px 20px;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

.feature-card h3 {
    font-size: 24px;
    font-weight: 600;
    color: #1e40af;
    margin-bottom: 16px;
}

.feature-card p {
    color: #6b7280;
    line-height: 1.7;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    padding: 80px 0;
    color: white;
    text-align: center;
}

.cta-icon {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
}

.cta-svg {
    opacity: 0.9;
}

.cta-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 20px;
    margin-bottom: 32px;
    opacity: 0.9;
}

/* Footer */
.main-footer {
    background: #1f2937;
    color: white;
    padding: 60px 0 20px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.footer-section h3,
.footer-section h4 {
    color: #3b82f6;
    margin-bottom: 20px;
}

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

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

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

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

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    margin-top: 40px;
    border-top: 1px solid #374151;
    color: #9ca3af;
}

/* Form Styles */
.form-section {
    padding: 80px 0;
    background: #f9fafb;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #1f2937;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #d1d5db;
    border-radius: 6px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

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

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

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        flex-direction: column;
        padding: 20px;
        gap: 20px;
    }
    
    .nav-menu.mobile-open {
        display: flex;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 36px;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 28px;
    }
    
    .btn-large {
        padding: 14px 24px;
        font-size: 16px;
    }
    
    .form-container {
        margin: 0 20px;
        padding: 20px;
    }
}

/* Legal Pages */
.legal-page {
    padding: 80px 0;
    background: #f9fafb;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 60px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.legal-intro {
    font-size: 18px;
    color: #6b7280;
    margin-bottom: 32px;
    line-height: 1.6;
}

.legal-meta {
    background: #f3f4f6;
    padding: 20px;
    border-radius: 8px;
    margin: 32px 0;
    border-left: 4px solid #3b82f6;
}

.legal-content h2 {
    color: #1e40af;
    margin: 40px 0 20px;
    font-size: 24px;
    font-weight: 600;
}

.legal-content h3 {
    color: #374151;
    margin: 24px 0 16px;
    font-size: 20px;
    font-weight: 600;
}

.legal-content h4 {
    color: #4b5563;
    margin: 20px 0 12px;
    font-size: 18px;
    font-weight: 600;
}

.contact-info {
    background: #f8fafc;
    padding: 24px;
    border-radius: 8px;
    margin: 24px 0;
}

.legal-note {
    margin-top: 40px;
    padding: 16px;
    background: #fef3c7;
    border-radius: 6px;
    border-left: 4px solid #f59e0b;
}

/* Blog Post Styles */
.blog-post {
    padding: 80px 0;
    background: #f9fafb;
}

.post-header {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
}

.post-meta {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
    font-size: 14px;
    color: #6b7280;
    flex-wrap: wrap;
}

.post-date, .post-category, .post-author {
    background: #e5e7eb;
    padding: 4px 12px;
    border-radius: 12px;
}

.post-category {
    background: #dbeafe;
    color: #1e40af;
}

.post-header h1 {
    font-size: 48px;
    font-weight: 700;
    color: #1e40af;
    margin: 24px 0;
    line-height: 1.2;
}

.post-excerpt {
    font-size: 20px;
    color: #4b5563;
    margin: 24px 0 40px;
    line-height: 1.6;
}

.post-graphic {
    display: flex;
    justify-content: center;
    margin: 40px 0;
}

.post-content {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 60px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.post-content h2 {
    color: #1e40af;
    font-size: 32px;
    font-weight: 700;
    margin: 40px 0 20px;
}

.post-content h3 {
    color: #374151;
    font-size: 24px;
    font-weight: 600;
    margin: 32px 0 16px;
}

.post-content h4 {
    color: #4b5563;
    font-size: 20px;
    font-weight: 600;
    margin: 24px 0 12px;
}

.post-content p {
    margin: 16px 0;
    line-height: 1.7;
    color: #374151;
}

.post-content ul, .post-content ol {
    margin: 16px 0;
    padding-left: 24px;
}

.post-content li {
    margin: 8px 0;
    line-height: 1.6;
}

.content-highlight {
    background: #f0f9ff;
    border: 1px solid #bfdbfe;
    border-radius: 8px;
    padding: 20px;
    margin: 24px 0;
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.highlight-icon {
    flex-shrink: 0;
}

.post-cta {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    color: white;
    padding: 32px;
    border-radius: 12px;
    text-align: center;
    margin: 40px 0;
}

.post-cta h3 {
    color: white;
    margin-bottom: 16px;
}

.post-cta p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 24px;
}

.post-footer {
    max-width: 800px;
    margin: 40px auto 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.post-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.tag {
    background: #e5e7eb;
    color: #374151;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 14px;
}

.post-share {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: #6b7280;
}

.share-link {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 500;
}

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

.related-posts {
    padding: 80px 0;
    background: white;
}

.related-posts h2 {
    text-align: center;
    color: #1e40af;
    margin-bottom: 40px;
    font-size: 32px;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.related-card {
    background: #f9fafb;
    padding: 24px;
    border-radius: 8px;
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.related-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.related-card h3 {
    color: #1e40af;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    line-height: 1.4;
}

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

/* Contact Form Styles */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

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

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-weight: normal;
    cursor: pointer;
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 2px;
    width: auto;
    flex-shrink: 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.contact-card {
    text-align: center;
    padding: 30px 20px;
}

.contact-icon {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

.contact-card h3 {
    color: #1e40af;
    margin-bottom: 12px;
    font-size: 20px;
}

.contact-card p {
    color: #374151;
    font-weight: 600;
    margin-bottom: 8px;
}

.contact-detail {
    color: #6b7280;
    font-size: 14px;
    font-weight: normal;
    line-height: 1.4;
}

.faq-section {
    padding: 80px 0;
    background: #f9fafb;
}

.faq-section h2 {
    text-align: center;
    color: #1e40af;
    margin-bottom: 60px;
    font-size: 32px;
}

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

.faq-item {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq-item h3 {
    color: #1e40af;
    margin-bottom: 16px;
    font-size: 18px;
}

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

/* Thanks Page */
.thanks-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    text-align: center;
}

.thanks-content {
    max-width: 800px;
    margin: 0 auto;
}

.thanks-icon {
    margin-bottom: 40px;
    display: flex;
    justify-content: center;
}

.thanks-hero h1 {
    font-size: 48px;
    font-weight: 700;
    color: #1e40af;
    margin-bottom: 24px;
}

.thanks-message {
    font-size: 20px;
    color: #4b5563;
    margin-bottom: 60px;
    line-height: 1.6;
}

.next-steps {
    margin: 80px 0;
}

.next-steps h2 {
    color: #1e40af;
    margin-bottom: 40px;
    font-size: 32px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.step-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.step-number {
    width: 50px;
    height: 50px;
    background: #3b82f6;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    margin: 0 auto 20px;
}

.step-card h3 {
    color: #1e40af;
    margin-bottom: 16px;
    font-size: 20px;
}

.thanks-actions {
    margin: 80px 0;
}

.thanks-actions h2 {
    color: #1e40af;
    margin-bottom: 32px;
    font-size: 28px;
}

.action-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.contact-reminder {
    padding: 60px 0;
    background: white;
}

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

.reminder-content h2 {
    color: #1e40af;
    margin-bottom: 32px;
    font-size: 24px;
}

.contact-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.contact-option {
    display: flex;
    align-items: center;
    gap: 20px;
    text-align: left;
}

.contact-option h3 {
    color: #1e40af;
    margin-bottom: 8px;
    font-size: 18px;
}

.contact-option p {
    color: #374151;
    font-weight: 600;
    margin-bottom: 4px;
}

.contact-option small {
    color: #6b7280;
    font-size: 14px;
}

/* Additional responsive styles */
@media (max-width: 768px) {
    .post-header h1 {
        font-size: 32px;
    }
    
    .post-content {
        padding: 30px 20px;
    }
    
    .legal-content {
        padding: 40px 20px;
    }
    
    .thanks-hero h1 {
        font-size: 36px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .post-footer {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .post-meta {
        justify-content: center;
        text-align: center;
    }
}