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

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    margin-bottom: 1rem;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 1rem;
    color: #666;
}

a {
    text-decoration: none;
    color: #00b4d8;
    transition: color 0.3s ease;
}

a:hover {
    color: #2563EB;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border: 2px solid transparent;
    border-radius: 8px;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 1rem;
}

.btn-primary {
    background-color: #00b4d8;
    color: white;
    border-color: #00b4d8;
}

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

.btn-secondary {
    background-color: #10B981;
    color: white;
    border-color: #10B981;
}

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

.btn-outline {
    background-color: transparent;
    color: #00b4d8;
    border-color: #00b4d8;
}

.btn-outline:hover {
    background-color: #00b4d8;
    color: white;
    transform: translateY(-2px);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.95);
    color: white;
    padding: 20px 0;
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-banner.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: 20px;
}

.cookie-text h3 {
    margin-bottom: 8px;
    color: white;
}

.cookie-text p {
    color: #E5E7EB;
    margin: 0;
}

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

.cookie-buttons .btn {
    padding: 8px 16px;
    font-size: 0.9rem;
}

/* Cookie Modal */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1001;
}

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

.cookie-modal-content {
    background-color: white;
    padding: 30px;
    border-radius: 12px;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
}

.cookie-category {
    margin-bottom: 20px;
    padding: 15px;
    background-color: #F9FAFB;
    border-radius: 8px;
}

.cookie-switch {
    display: flex;
    align-items: center;
    cursor: pointer;
    margin-bottom: 8px;
}

.cookie-switch input {
    display: none;
}

.cookie-switch .slider {
    position: relative;
    width: 50px;
    height: 24px;
    background-color: #ccc;
    border-radius: 24px;
    margin-right: 12px;
    transition: 0.3s;
}

.cookie-switch .slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    border-radius: 50%;
    transition: 0.3s;
}

.cookie-switch input:checked + .slider {
    background-color: #00b4d8;
}

.cookie-switch input:checked + .slider:before {
    transform: translateX(26px);
}

.cookie-switch input:disabled + .slider {
    background-color: #00b4d8;
    opacity: 0.7;
}

.cookie-modal-buttons {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

/* Header */
.header {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.25rem;
    font-weight: 600;
    color: #1F2937;
}

.logo-text {
    color: #00b4d8;
}

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

.nav-link {
    color: #4B5563;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #00b4d8;
}

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

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

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

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background-color: #4B5563;
    margin: 2px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #F3F4F6 0%, #E5E7EB 100%);
    min-height: 70vh;
    display: flex;
    align-items: center;
}

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

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #6B7280;
    margin-bottom: 30px;
}

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

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

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

.section-header svg {
    margin: 0 auto 20px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #1F2937;
    margin-bottom: 16px;
}

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

/* Company Information Section */
.company-info {
    padding: 80px 0;
    background-color: white;
}

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

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

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.info-card svg {
    margin-bottom: 20px;
}

.info-card h3 {
    color: #1F2937;
    margin-bottom: 15px;
}

.info-card p {
    color: #6B7280;
    line-height: 1.6;
}

/* Services Section */
.services {
    padding: 80px 0;
    background: linear-gradient(135deg, #F8FAFC 0%, #F1F5F9 100%);
}

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

.service-card {
    background-color: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.service-icon {
    margin-bottom: 25px;
}

.service-card h3 {
    color: #1F2937;
    margin-bottom: 15px;
}

.service-card p {
    color: #6B7280;
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-card ul {
    list-style: none;
    padding: 0;
}

.service-card li {
    color: #6B7280;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.service-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10B981;
    font-weight: 600;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background-color: white;
}

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

.testimonial-card {
    padding: 40px;
    background-color: #F9FAFB;
    border-radius: 12px;
    border-left: 4px solid #00b4d8;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.testimonial-content .stars {
    color: #F59E0B;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.testimonial-content p {
    font-style: italic;
    color: #4B5563;
    margin-bottom: 20px;
    line-height: 1.7;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-author h4 {
    color: #1F2937;
    margin-bottom: 5px;
}

.testimonial-author p {
    color: #6B7280;
    font-size: 0.9rem;
    margin: 0;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background: linear-gradient(135deg, #F8FAFC 0%, #F1F5F9 100%);
}

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

.faq-item {
    background-color: white;
    margin-bottom: 20px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.faq-question {
    padding: 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #F9FAFB;
}

.faq-question h3 {
    color: #1F2937;
    margin: 0;
    flex: 1;
}

.faq-question svg {
    transition: transform 0.3s ease;
    color: #6B7280;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 25px 25px;
}

.faq-answer p {
    color: #6B7280;
    line-height: 1.7;
    margin: 0;
}

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

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background-color: #F9FAFB;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.contact-item h3 {
    color: #1F2937;
    margin-bottom: 8px;
}

.contact-item p {
    color: #6B7280;
    margin: 0;
    line-height: 1.6;
}

.contact-item a {
    color: #00b4d8;
    font-weight: 500;
}

.contact-forms {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.form-container {
    background-color: #F9FAFB;
    padding: 40px;
    border-radius: 12px;
}

.form-container h3 {
    color: #1F2937;
    margin-bottom: 20px;
}

.form-container p {
    color: #6B7280;
    margin-bottom: 25px;
}

/* Form Styles */
.form-group {
    margin-bottom: 25px;
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #E5E7EB;
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

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

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

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

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

.checkmark {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid #D1D5DB;
    border-radius: 4px;
    position: relative;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-top: 2px;
}

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

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

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

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

.footer-section h3 {
    color: white;
    margin-bottom: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-section p {
    color: #D1D5DB;
    line-height: 1.6;
    margin-bottom: 20px;
}

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

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

.footer-section a {
    color: #D1D5DB;
    transition: color 0.3s ease;
}

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

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background-color: #374151;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

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

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    color: #9CA3AF;
    margin-bottom: 8px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    .nav {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-buttons {
        justify-content: center;
    }

    .info-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .form-container {
        padding: 25px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

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

    .hero-buttons .btn {
        width: 100%;
        max-width: 250px;
    }

    .cookie-modal-content {
        margin: 20px;
        padding: 20px;
    }

    .cookie-modal-buttons {
        flex-direction: column;
    }

    .cookie-modal-buttons .btn {
        width: 100%;
    }
}

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

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

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Focus States for Accessibility */
.btn:focus,
input:focus,
textarea:focus,
.nav-link:focus {
    outline: 2px solid #00b4d8;
    outline-offset: 2px;
}

/* About Page Styles */

/* Page Header */
.page-header {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #EBF8FF 0%, #DBEAFE 100%);
    min-height: 50vh;
    display: flex;
    align-items: center;
}

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

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

.page-header-text p {
    font-size: 1.3rem;
    color: #6B7280;
    margin-bottom: 0;
}

.page-header-image svg {
    width: 100%;
    height: auto;
    max-width: 400px;
}

/* Mission Section */
.mission-section {
    padding: 80px 0;
    background-color: white;
}

.mission-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}

.section-icon {
    margin-bottom: 30px;
}

.mission-text h2 {
    font-size: 2.5rem;
    color: #1F2937;
    margin-bottom: 25px;
}

.lead {
    font-size: 1.25rem;
    font-weight: 500;
    color: #4B5563;
    margin-bottom: 25px;
    line-height: 1.7;
}

.mission-stats {
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding: 40px;
    background: linear-gradient(135deg, #F8FAFC 0%, #F1F5F9 100%);
    border-radius: 12px;
}

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

.stat-item svg {
    margin-bottom: 15px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 8px;
}

.stat-label {
    color: #6B7280;
    font-weight: 500;
}

/* Values Section */
.values-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #F8FAFC 0%, #F1F5F9 100%);
}

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

.value-card {
    background-color: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.value-icon {
    margin-bottom: 25px;
}

.value-card h3 {
    color: #1F2937;
    margin-bottom: 15px;
}

.value-card p {
    color: #6B7280;
    line-height: 1.7;
    text-align: left;
}

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

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

.team-member {
    text-align: center;
    padding: 40px 20px;
    background-color: #F9FAFB;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.member-avatar {
    margin-bottom: 25px;
}

.team-member h3 {
    color: #1F2937;
    margin-bottom: 8px;
}

.member-role {
    color: #00b4d8;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 15px;
}

.member-bio {
    color: #6B7280;
    line-height: 1.6;
    text-align: left;
}

/* Story Section */
.story-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #F8FAFC 0%, #F1F5F9 100%);
}

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

.story-text h2 {
    color: #1F2937;
    margin-bottom: 40px;
    font-size: 2.5rem;
}

.story-timeline {
    position: relative;
}

.story-timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, #00b4d8, #10B981, #8B5CF6, #F59E0B, #EF4444);
}

.timeline-item {
    position: relative;
    padding-left: 80px;
    margin-bottom: 50px;
}

.timeline-year {
    position: absolute;
    left: 0;
    top: 0;
    width: 60px;
    height: 60px;
    background-color: #00b4d8;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.9rem;
    border: 4px solid white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.timeline-item:nth-child(2) .timeline-year {
    background-color: #10B981;
}

.timeline-item:nth-child(3) .timeline-year {
    background-color: #8B5CF6;
}

.timeline-item:nth-child(4) .timeline-year {
    background-color: #F59E0B;
}

.timeline-item:nth-child(5) .timeline-year {
    background-color: #EF4444;
}

.timeline-content h4 {
    color: #1F2937;
    margin-bottom: 8px;
}

.timeline-content p {
    color: #6B7280;
    line-height: 1.6;
    margin: 0;
}

.story-image svg {
    width: 100%;
    height: auto;
    max-width: 400px;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #00b4d8 0%, #2563EB 100%);
    color: white;
}

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

.cta-text h2 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 20px;
}

.cta-text p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    line-height: 1.7;
}

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

.cta-section .btn-primary {
    background-color: white;
    color: #00b4d8;
    border-color: white;
}

.cta-section .btn-primary:hover {
    background-color: #F3F4F6;
    border-color: #F3F4F6;
    color: #2563EB;
}

.cta-section .btn-outline {
    background-color: transparent;
    color: white;
    border-color: rgba(255, 255, 255, 0.5);
}

.cta-section .btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: white;
    color: white;
}

/* Active Nav Link */
.nav-link.active {
    color: #00b4d8;
}

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

/* Responsive Design for About Page */
@media (max-width: 768px) {
    .page-header-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .page-header-text h1 {
        font-size: 2.2rem;
    }

    .mission-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .mission-stats {
        flex-direction: row;
        justify-content: space-around;
        padding: 25px;
    }

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

    .values-grid {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .story-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .story-timeline::before {
        left: 15px;
    }

    .timeline-item {
        padding-left: 60px;
    }

    .timeline-year {
        width: 40px;
        height: 40px;
        font-size: 0.8rem;
        left: -5px;
    }

    .cta-text h2 {
        font-size: 2rem;
    }

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

    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .page-header-text h1 {
        font-size: 1.8rem;
    }

    .mission-stats {
        flex-direction: column;
        gap: 25px;
    }

    .value-card {
        padding: 25px;
    }

    .team-member {
        padding: 25px 15px;
    }

    .timeline-item {
        margin-bottom: 30px;
    }

    .story-text h2 {
        font-size: 2rem;
    }

    .cta-text h2 {
        font-size: 1.8rem;
    }
}

/* Article Page Styles */

/* Article Header */
.article-header {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, #F9FAFB 0%, #F3F4F6 100%);
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    font-size: 0.9rem;
    color: #6B7280;
}

.breadcrumb a {
    color: #00b4d8;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

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

.article-category {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    background-color: rgba(59, 130, 246, 0.1);
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #00b4d8;
}

.article-date {
    color: #6B7280;
    font-size: 0.9rem;
}

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

.article-subtitle {
    font-size: 1.25rem;
    color: #6B7280;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 800px;
}

.article-featured-image {
    margin-bottom: 0;
}

.article-featured-image svg {
    width: 100%;
    height: auto;
    max-width: 600px;
    border-radius: 12px;
}

/* Article Content Layout */
.article-content {
    padding: 60px 0;
    background-color: white;
}

.content-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
}

.main-content {
    max-width: none;
}

.content-section {
    margin-bottom: 50px;
    padding-bottom: 40px;
    border-bottom: 1px solid #E5E7EB;
}

.content-section:last-child {
    border-bottom: none;
}

.content-section h2 {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 2rem;
    color: #1F2937;
    margin-bottom: 25px;
}

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

.content-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4B5563;
    margin-bottom: 20px;
}

/* Info Boxes */
.info-box {
    background: linear-gradient(135deg, #DBEAFE 0%, #BFDBFE 100%);
    border-left: 4px solid #00b4d8;
    padding: 25px;
    border-radius: 8px;
    margin: 30px 0;
}

.info-box h4 {
    color: #1E40AF;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.info-box ul {
    list-style: none;
    padding: 0;
}

.info-box li {
    margin-bottom: 8px;
    font-weight: 500;
    color: #1E40AF;
}

.warning-box {
    background: linear-gradient(135deg, #FEF3C7 0%, #FEF08A 100%);
    border-left: 4px solid #F59E0B;
    padding: 25px;
    border-radius: 8px;
    margin: 30px 0;
}

.warning-box h4 {
    color: #92400E;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.warning-box p {
    color: #92400E;
    margin: 0;
}

.summary-box {
    background: linear-gradient(135deg, #D1FAE5 0%, #A7F3D0 100%);
    border-left: 4px solid #10B981;
    padding: 25px;
    border-radius: 8px;
    margin: 30px 0;
}

.summary-box p {
    color: #065F46;
    margin-bottom: 15px;
}

.summary-box ul {
    list-style: none;
    padding: 0;
}

.summary-box li {
    margin-bottom: 8px;
    font-weight: 500;
    color: #065F46;
    padding-left: 20px;
    position: relative;
}

.summary-box li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10B981;
    font-weight: 600;
}

/* Step Guide */
.step-guide {
    margin: 30px 0;
}

.step-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    padding: 25px;
    background-color: #F9FAFB;
    border-radius: 12px;
    border-left: 4px solid #00b4d8;
}

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

.step-content h4 {
    color: #1F2937;
    margin-bottom: 10px;
}

.step-content p {
    color: #6B7280;
    margin: 0;
    line-height: 1.6;
}

/* Feature Grids */
.feature-grid,
.app-grid,
.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.feature-card,
.tip-item {
    background-color: white;
    border: 2px solid #E5E7EB;
    border-radius: 12px;
    padding: 25px;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.feature-card:hover,
.tip-item:hover {
    transform: translateY(-3px);
    border-color: #00b4d8;
}

.feature-card h4,
.tip-item h4 {
    color: #1F2937;
    margin-bottom: 12px;
    font-size: 1.1rem;
}

.feature-card p,
.tip-item p {
    color: #6B7280;
    margin: 0;
    line-height: 1.6;
}

/* App Items */
.app-item {
    display: flex;
    gap: 15px;
    padding: 20px;
    background-color: white;
    border: 2px solid #E5E7EB;
    border-radius: 12px;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.app-item:hover {
    transform: translateY(-3px);
    border-color: #00b4d8;
}

.app-icon {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.app-details h4 {
    color: #1F2937;
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.app-details p {
    color: #6B7280;
    margin: 0;
    line-height: 1.5;
}

/* Security Tips */
.security-tips {
    margin: 30px 0;
}

.security-tip {
    padding: 25px;
    background-color: #FEF2F2;
    border-left: 4px solid #EF4444;
    border-radius: 8px;
    margin-bottom: 20px;
}

.security-tip h4 {
    color: #991B1B;
    margin-bottom: 12px;
    font-size: 1.1rem;
}

.security-tip p {
    color: #991B1B;
    margin: 0;
    line-height: 1.6;
}

/* Problem Solutions */
.problem-solutions {
    margin: 30px 0;
}

.problem-item {
    padding: 25px;
    background-color: #F0F9FF;
    border-left: 4px solid #0284C7;
    border-radius: 8px;
    margin-bottom: 20px;
}

.problem-item h4 {
    color: #0C4A6E;
    margin-bottom: 12px;
    font-size: 1.1rem;
}

.problem-item p {
    color: #0C4A6E;
    margin: 0;
    line-height: 1.6;
}

/* FAQ in Articles */
.article-content .faq-container {
    margin: 30px 0;
}

.article-content .faq-item {
    background-color: #F9FAFB;
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
}

.article-content .faq-question {
    padding: 20px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.article-content .faq-question:hover {
    background-color: #F3F4F6;
}

.article-content .faq-question h4 {
    margin: 0;
    color: #1F2937;
    font-size: 1rem;
}

.article-content .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.article-content .faq-item.active .faq-answer {
    max-height: 150px;
    padding: 0 20px 20px;
}

/* Article Sidebar */
.article-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.sidebar-section {
    background-color: #F9FAFB;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 30px;
}

.sidebar-section h3 {
    color: #1F2937;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.article-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.info-item {
    font-size: 0.95rem;
    color: #6B7280;
}

.info-item strong {
    color: #374151;
}

.related-article {
    display: block;
    padding: 20px;
    background-color: white;
    border-radius: 8px;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #E5E7EB;
}

.related-article:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.related-article h4 {
    color: #1F2937;
    margin-bottom: 8px;
    font-size: 1rem;
}

.related-article p {
    color: #6B7280;
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.5;
}

.help-box,
.download-box {
    text-align: center;
}

.help-box p,
.download-box p {
    margin-bottom: 20px;
    color: #6B7280;
    line-height: 1.6;
}

.download-box h4 {
    color: #1F2937;
    margin-bottom: 12px;
}

/* Responsive Design for Articles */
@media (max-width: 768px) {
    .article-header h1 {
        font-size: 2.2rem;
    }

    .article-subtitle {
        font-size: 1.1rem;
    }

    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .article-sidebar {
        position: static;
        order: -1;
    }

    .step-item {
        flex-direction: column;
        text-align: center;
    }

    .app-item {
        flex-direction: column;
        text-align: center;
    }

    .app-icon {
        align-self: center;
    }

    .feature-grid,
    .app-grid,
    .tips-grid {
        grid-template-columns: 1fr;
    }

    .content-section h2 {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .article-header {
        padding: 100px 0 40px;
    }

    .article-header h1 {
        font-size: 1.8rem;
    }

    .content-section {
        margin-bottom: 30px;
        padding-bottom: 30px;
    }

    .step-item,
    .info-box,
    .warning-box,
    .summary-box,
    .security-tip,
    .problem-item {
        padding: 20px;
    }

    .sidebar-section {
        padding: 20px;
    }

    .article-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}

/* Legal Page Styles */

.legal-content {
    padding: 60px 0;
    background-color: white;
}

.legal-content .content-wrapper {
    display: block;
    max-width: 800px;
    margin: 0 auto;
}

.legal-section {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #E5E7EB;
}

.legal-section:last-child {
    border-bottom: none;
}

.legal-section h2 {
    color: #1F2937;
    font-size: 1.5rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #00b4d8;
}

.legal-section h3 {
    color: #374151;
    font-size: 1.25rem;
    margin-bottom: 15px;
}

.legal-section h4 {
    color: #374151;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.legal-section p {
    color: #4B5563;
    line-height: 1.7;
    margin-bottom: 15px;
}

.legal-section ul {
    margin-bottom: 20px;
    padding-left: 25px;
}

.legal-section li {
    color: #4B5563;
    line-height: 1.6;
    margin-bottom: 8px;
}

.contact-box {
    background-color: #F9FAFB;
    border: 2px solid #E5E7EB;
    border-radius: 8px;
    padding: 20px;
    margin: 20px 0;
}

.contact-box p {
    margin-bottom: 10px;
    color: #374151;
}

.contact-box strong {
    color: #1F2937;
}

/* Cookie Policy Specific Styles */
.cookie-category {
    background-color: #F8FAFC;
    border-left: 4px solid #00b4d8;
    padding: 20px;
    margin: 20px 0;
    border-radius: 8px;
}

.cookie-management {
    display: grid;
    gap: 25px;
    margin: 30px 0;
}

.management-option,
.third-party-service {
    background-color: #F9FAFB;
    padding: 25px;
    border-radius: 12px;
    border: 1px solid #E5E7EB;
}

.management-option h4,
.third-party-service h4 {
    color: #1F2937;
    margin-bottom: 12px;
}

.third-party-cookies {
    display: grid;
    gap: 20px;
    margin: 25px 0;
}

/* Thanks Page Styles */
.thanks-section {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #D1FAE5 0%, #A7F3D0 100%);
    min-height: 70vh;
    display: flex;
    align-items: center;
    text-align: center;
}

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

.thanks-icon {
    margin-bottom: 30px;
}

.thanks-section h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #065F46;
    margin-bottom: 20px;
}

.thanks-subtitle {
    font-size: 1.3rem;
    color: #047857;
    margin-bottom: 40px;
}

.thanks-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.detail-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    text-align: left;
    background-color: rgba(255, 255, 255, 0.7);
    padding: 25px;
    border-radius: 12px;
}

.detail-item h3 {
    color: #065F46;
    margin-bottom: 8px;
}

.detail-item p {
    color: #047857;
    margin: 0;
    line-height: 1.6;
}

.thanks-info {
    background-color: white;
    border-radius: 12px;
    padding: 40px;
    margin: 50px 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.thanks-info h2 {
    color: #1F2937;
    margin-bottom: 30px;
}

.next-steps {
    display: flex;
    flex-direction: column;
    gap: 25px;
    text-align: left;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

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

.step-text h4 {
    color: #1F2937;
    margin-bottom: 8px;
}

.step-text p {
    color: #6B7280;
    margin: 0;
    line-height: 1.6;
}

.thanks-actions {
    margin: 40px 0;
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-reminder {
    background-color: rgba(59, 130, 246, 0.1);
    border-radius: 12px;
    padding: 30px;
    margin-top: 50px;
}

.contact-reminder h3 {
    color: #1E40AF;
    margin-bottom: 10px;
}

.contact-reminder p {
    color: #1E40AF;
    margin-bottom: 20px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #00b4d8;
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #2563EB;
}

.contact-hours {
    color: #6B7280;
    font-size: 0.9rem;
}

.nawsteller__section {
    padding-top: 40px;
    padding-bottom: 40px;
    
}
.nawsteller__section .form-container{
background: linear-gradient(135deg, #D1FAE5 0%, #A7F3D0 100%);
}

/* Responsive Design for Legal and Thanks Pages */
@media (max-width: 768px) {
    .legal-content .content-wrapper {
        padding: 0 20px;
    }
    
    .legal-section h2 {
        font-size: 1.3rem;
    }
    
    .cookie-management {
        grid-template-columns: 1fr;
    }
    
    .thanks-section {
        padding: 100px 0 60px;
    }
    
    .thanks-section h1 {
        font-size: 2.5rem;
    }
    
    .thanks-details {
        grid-template-columns: 1fr;
    }
    
    .detail-item {
        flex-direction: column;
        text-align: center;
    }
    
    .next-steps {
        gap: 20px;
    }
    
    .step {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .thanks-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .thanks-actions .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .thanks-section h1 {
        font-size: 2rem;
    }
    
    .thanks-info {
        padding: 25px;
        margin: 30px 0;
    }
    
    .legal-section {
        margin-bottom: 30px;
        padding-bottom: 20px;
    }
    
    .management-option,
    .third-party-service {
        padding: 20px;
    }
    
    .contact-reminder {
        padding: 20px;
    }
}

/* Print Styles */
@media print {
    .header,
    .cookie-banner,
    .cookie-modal,
    .footer,
    .article-sidebar {
        display: none;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    .container {
        max-width: none;
        padding: 0;
    }
    
    .content-wrapper {
        grid-template-columns: 1fr;
    }
    
    .main-content {
        max-width: 100%;
    }
    
    .article-header {
        padding: 20pt 0 10pt;
    }
    
    .step-item,
    .info-box,
    .warning-box,
    .summary-box {
        break-inside: avoid;
    }
    
    .thanks-section {
        padding: 20pt 0;
        background: none;
    }
    
    .thanks-icon svg {
        display: none;
    }
}
.nav-menu.active {
    position: absolute;
    top: 80px;
    left: 0px;
    width: 100%;

    display: flex;
    flex-direction: column;
    gap: 32px;
    padding: 32px;
    background-color: #fff;
    z-index: 1000;
}