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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #1c2426;
    overflow-x: hidden;
}

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

/* Cookie Notice */
.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1c2426;
    color: white;
    padding: 15px 0;
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-notice.show {
    transform: translateY(0);
}

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

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

.cookie-buttons button {
    padding: 8px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.3s ease;
}

.cookie-buttons button:first-child {
    background: #3eb3d6;
    color: white;
}

.cookie-buttons button:first-child:hover {
    background: rgba(62, 179, 214, 0.8);
}

.cookie-buttons button:not(:first-child) {
    background: transparent;
    color: white;
    border: 1px solid white;
}

.cookie-buttons button:not(:first-child):hover {
    background: white;
    color: #1c2426;
}

/* Cookie Settings Modal */
.cookie-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1001;
}

.cookie-modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 30px;
    border-radius: 10px;
    max-width: 500px;
    width: 90%;
}

.cookie-category {
    margin: 15px 0;
    padding: 10px;
    border: 1px solid rgba(62, 179, 214, 0.3);
    border-radius: 5px;
}

.cookie-category label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-weight: 500;
}

.cookie-category span {
    font-size: 14px;
    color: #666;
    font-weight: normal;
}

.cookie-modal-buttons {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    margin-top: 20px;
}

.cookie-modal-buttons button {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cookie-modal-buttons button:first-child {
    background: #3eb3d6;
    color: white;
}

.cookie-modal-buttons button:first-child:hover {
    background: rgba(62, 179, 214, 0.8);
}

.cookie-modal-buttons button:last-child {
    background: #f0f0f0;
    color: #1c2426;
}

.cookie-modal-buttons button:last-child:hover {
    background: #e0e0e0;
}

/* Navigation */
.navbar {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
}

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

.nav-logo a {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-size: 24px;
    font-weight: bold;
    color: #1c2426;
}

.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: #1c2426;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #3eb3d6;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #3eb3d6;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

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

.bar {
    width: 25px;
    height: 3px;
    background: #1c2426;
    transition: 0.3s;
}

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

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

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(62, 179, 214, 0.05) 0%, rgba(28, 36, 38, 0.05) 100%);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: #1c2426;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.3rem;
    color: #666;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.btn-primary, .btn-secondary {
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

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

.btn-primary:hover {
    background: rgba(62, 179, 214, 0.8);
    transform: translateY(-2px);
}

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

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

/* Sections */
.section {
    padding: 80px 0;
}

.bg-light {
    background: rgba(62, 179, 214, 0.03);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1c2426;
    margin: 20px 0;
}

.section-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-stats {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

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

.stat h3 {
    margin-top: 15px;
    color: #1c2426;
    font-size: 1.1rem;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background: white;
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.service-card h3 {
    margin: 20px 0 15px;
    color: #1c2426;
    font-size: 1.3rem;
}

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

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.benefit-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 30px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.benefit-item h3 {
    color: #1c2426;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

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

/* FAQ Section */
.faq-content {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 30px;
    padding: 30px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

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

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

/* Blog Grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.blog-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.blog-content {
    padding: 30px;
}

.blog-content h3 {
    margin-bottom: 15px;
}

.blog-content h3 a {
    text-decoration: none;
    color: #1c2426;
    font-size: 1.3rem;
    transition: color 0.3s ease;
}

.blog-content h3 a:hover {
    color: #3eb3d6;
}

.blog-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: #999;
}

/* Newsletter Section */
.newsletter {
    background: linear-gradient(135deg, #3eb3d6 0%, #1c2426 100%);
    color: white;
    padding: 80px 0;
}

.newsletter-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.newsletter-text h2 {
    font-size: 2.2rem;
    margin: 20px 0 15px;
}

.newsletter-form {
    display: grid;
    gap: 20px;
}

.form-group input {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
}

.newsletter-form .btn-primary {
    background: white;
    color: #3eb3d6;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.newsletter-form .btn-primary:hover {
    background: rgba(255, 255, 255, 0.9);
}

/* Contact Section */
.contact-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
}

.contact-info {
    display: grid;
    gap: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.contact-item h4 {
    color: #1c2426;
    margin-bottom: 5px;
}

.contact-item p {
    color: #666;
    margin: 0;
}

.social-links {
    text-align: center;
}

.social-links h4 {
    color: #1c2426;
    margin-bottom: 20px;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-icons a {
    transition: transform 0.3s ease;
}

.social-icons a:hover {
    transform: translateY(-3px);
}

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

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 15px;
}

.footer-section h4 {
    color: #3eb3d6;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

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

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

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .newsletter-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-buttons {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
    .cookie-table {
    display: none;}
}

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

/* Hide elements with display: none in CSS for accessibility */
.cookie-modal {
    display: none;
}

.cookie-modal.show {
    display: block;
}

/* Article Pages Styling */
.article-header {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, rgba(62, 179, 214, 0.05) 0%, rgba(28, 36, 38, 0.05) 100%);
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.back-link {
    color: #3eb3d6;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.back-link:hover {
    color: #1c2426;
}

.article-date, .read-time {
    color: #666;
    font-size: 0.9rem;
}

.article-header h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #1c2426;
    margin-bottom: 20px;
    line-height: 1.2;
}

.article-subtitle {
    font-size: 1.3rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 40px;
}

.article-image {
    margin-top: 40px;
}

.article-content {
    padding: 80px 0;
}

.article-body {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
}

.article-body h2 {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 2rem;
    font-weight: 600;
    color: #1c2426;
    margin: 50px 0 25px;
}

.article-body h2:first-child {
    margin-top: 0;
}

.article-body h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1c2426;
    margin: 35px 0 15px;
}

.article-body p {
    margin-bottom: 20px;
    color: #333;
}

.article-body ul, .article-body ol {
    margin: 20px 0;
    padding-left: 30px;
}

.article-body li {
    margin-bottom: 10px;
    color: #333;
}

.article-body strong {
    color: #1c2426;
    font-weight: 600;
}

.article-cta {
    background: linear-gradient(135deg, #3eb3d6 0%, #1c2426 100%);
    color: white;
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    margin-top: 60px;
}

.article-cta h3 {
    color: white;
    margin-bottom: 15px;
}

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

.article-cta .btn-primary {
    background: white;
    color: #3eb3d6;
}

.article-cta .btn-primary:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

/* Thank You Page Styling */
.thank-you-section {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, rgba(62, 179, 214, 0.05) 0%, rgba(28, 36, 38, 0.05) 100%);
}

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

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

.thank-you-content h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #1c2426;
    margin-bottom: 20px;
}

.thank-you-message {
    font-size: 1.3rem;
    color: #666;
    margin-bottom: 60px;
}

.what-happens-next {
    margin-bottom: 60px;
}

.what-happens-next h2 {
    font-size: 2.2rem;
    color: #1c2426;
    margin-bottom: 40px;
}

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

.step {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.step h3 {
    color: #1c2426;
    margin: 20px 0 15px;
    font-size: 1.3rem;
}

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

.free-resources {
    margin-bottom: 60px;
}

.free-resources h2 {
    font-size: 2.2rem;
    color: #1c2426;
    margin-bottom: 40px;
}

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

.resource-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

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

.resource-card h3 {
    color: #1c2426;
    margin: 20px 0 15px;
    font-size: 1.2rem;
}

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

.social-follow {
    margin-bottom: 60px;
}

.social-follow h3 {
    font-size: 1.5rem;
    color: #1c2426;
    margin-bottom: 15px;
}

.social-follow p {
    color: #666;
    margin-bottom: 25px;
}

.continue-journey h3 {
    font-size: 1.8rem;
    color: #1c2426;
    margin-bottom: 15px;
}

.continue-journey p {
    color: #666;
    margin-bottom: 30px;
}

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

/* Legal Pages Styling */
.legal-page {
    padding: 120px 0 80px;
}

.legal-header {
    text-align: center;
    margin-bottom: 60px;
}

.legal-header h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #1c2426;
    margin-bottom: 15px;
}

.legal-updated {
    font-size: 1.1rem;
    color: #666;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
}

.legal-content h2 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #1c2426;
    margin: 50px 0 25px;
    border-bottom: 2px solid #3eb3d6;
    padding-bottom: 10px;
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1c2426;
    margin: 35px 0 15px;
}

.legal-content p {
    margin-bottom: 20px;
    color: #333;
}

.legal-content ul, .legal-content ol {
    margin: 20px 0;
    padding-left: 30px;
}

.legal-content li {
    margin-bottom: 10px;
    color: #333;
}

.legal-content strong {
    color: #1c2426;
    font-weight: 600;
}

.contact-details {
    background: rgba(62, 179, 214, 0.05);
    padding: 25px;
    border-radius: 10px;
    margin: 25px 0;
}

.contact-details p {
    margin-bottom: 10px;
}

.contact-details p:last-child {
    margin-bottom: 0;
}

/* Cookie Table Styling */
.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.cookie-table th {
    background: #3eb3d6;
    color: white;
    padding: 15px;
    text-align: left;
    font-weight: 600;
}

.cookie-table td {
    padding: 15px;
    border-bottom: 1px solid rgba(62, 179, 214, 0.1);
}

.cookie-table tbody tr:last-child td {
    border-bottom: none;
}

.cookie-table tbody tr:nth-child(even) {
    background: rgba(62, 179, 214, 0.02);
}

/* Responsive Design for New Pages */
@media (max-width: 768px) {
    .article-header h1 {
        font-size: 2.2rem;
    }
    
    .article-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .article-body {
        font-size: 1rem;
    }
    
    .article-body h2 {
        font-size: 1.6rem;
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .thank-you-content h1 {
        font-size: 2.2rem;
    }
    
    .next-steps {
        grid-template-columns: 1fr;
    }
    
    .resources-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .legal-header h1 {
        font-size: 2.2rem;
    }
    
    .legal-content {
        font-size: 1rem;
    }
    
    .legal-content h2 {
        font-size: 1.5rem;
    }
    
    .cookie-table {
        font-size: 0.9rem;
    }
    
    .cookie-table th,
    .cookie-table td {
        padding: 10px;
    }
}