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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

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

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

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

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

.btn-secondary {
    background-color: #6b7280;
    color: white;
}

.btn-secondary:hover {
    background-color: #4b5563;
}

.btn-outline {
    background-color: transparent;
    color: #2563eb;
    border: 2px solid #2563eb;
}

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.95);
    color: white;
    padding: 20px;
    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;
    text-align: center;
}

.cookie-content h3 {
    margin-bottom: 10px;
    font-size: 18px;
}

.cookie-content p {
    margin-bottom: 20px;
    opacity: 0.9;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.cookie-buttons .btn {
    padding: 10px 20px;
    font-size: 14px;
}

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

.navbar {
    padding: 0;
}

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

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

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

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

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

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #2563eb;
}

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

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #333;
    transition: 0.3s;
}

/* Main content padding */
main {
    margin-top: 70px;
}

/* Banner Section */
.banner {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.banner-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.banner h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1e293b;
}

.highlight {
    color: #2563eb;
}

.banner-subtitle {
    font-size: 1.25rem;
    color: #64748b;
    margin-bottom: 40px;
    line-height: 1.7;
}

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

/* Section styles */
section {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    color: #1e293b;
}

.section-subtitle {
    font-size: 1.125rem;
    color: #64748b;
    text-align: center;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Services Section */
.services {
    background-color: #f8fafc;
}

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

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

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

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

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #1e293b;
}

.service-card p {
    color: #64748b;
    line-height: 1.7;
}

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

.about h2 {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1e293b;
}

.about p {
    font-size: 1.125rem;
    color: #64748b;
    margin-bottom: 30px;
    line-height: 1.7;
}

.about-features {
    list-style: none;
}

.about-features li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 1.125rem;
    color: #374151;
}

/* Achievements Section */
.achievements {
    background-color: #1e293b;
    color: white;
}

.achievements .section-title {
    color: white;
}

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

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

.achievement-number {
    font-size: 3rem;
    font-weight: 700;
    color: #3b82f6;
    margin-bottom: 10px;
}

.achievement-label {
    font-size: 1.125rem;
    opacity: 0.9;
}

/* Team Section */
.team-preview {
    background-color: #f8fafc;
}

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

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

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

.team-avatar {
    margin-bottom: 20px;
}

.team-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #1e293b;
}

.team-card p {
    color: #64748b;
}

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

/* Contact Preview Section */
.contact-preview {
    background-color: #2563eb;
    color: white;
}

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

.contact-preview h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.contact-preview p {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 40px;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.125rem;
}

.contact-item svg {
    flex-shrink: 0;
}

/* Footer */
.footer {
    background-color: #1e293b;
    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-section h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #3b82f6;
}

.footer-section h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-section p {
    opacity: 0.8;
    line-height: 1.7;
}

.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: #3b82f6;
}

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

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    transition: all 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.8;
}

/* Responsive design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background-color: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        transform: translateY(-100%);
        transition: transform 0.3s ease;
        opacity: 0;
        visibility: hidden;
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .banner h1 {
        font-size: 2.5rem;
    }

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

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

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

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

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

    .achievements-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .banner h1 {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

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

/* Form styles */
.form-group {
    margin-bottom: 20px;
}

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

.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 6px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: #2563eb;
}

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

.form-error {
    color: #dc2626;
    font-size: 14px;
    margin-top: 5px;
}

.form-success {
    background-color: #ecfdf5;
    color: #065f46;
    padding: 15px;
    border-radius: 6px;
    margin-bottom: 20px;
    border: 1px solid #a7f3d0;
}

/* Page specific styles */
.page-header {
    padding: 120px 0 60px;
    background-color: #f8fafc;
    text-align: center;
}

.page-title {
    font-size: 3rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 20px;
}

.page-subtitle {
    font-size: 1.25rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

/* Services page specific styles */
.service-card.detailed {
    padding: 50px 40px;
    text-align: left;
}

.service-card.detailed .service-description {
    font-size: 1.125rem;
    margin-bottom: 30px;
    line-height: 1.7;
}

.service-details h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #1e293b;
}

.service-details ul {
    list-style: none;
    margin-bottom: 30px;
}

.service-details ul li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: #374151;
}

.service-details ul li::before {
    content: '•';
    color: #2563eb;
    font-size: 1.2rem;
    position: absolute;
    left: 0;
}

.service-info {
    background-color: #f8fafc;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.info-item {
    margin-bottom: 10px;
    color: #374151;
}

.info-item strong {
    color: #1e293b;
}

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

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

.additional-service h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #1e293b;
}

.additional-service p {
    color: #64748b;
    line-height: 1.6;
}

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

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

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

.step-content h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #1e293b;
}

.step-content p {
    color: #64748b;
    line-height: 1.6;
}

/* Team page specific styles */
.team-detailed {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.team-member {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 60px;
    align-items: flex-start;
}

.member-photo {
    text-align: center;
}

.member-info h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #1e293b;
}

.member-title {
    font-size: 1.25rem;
    color: #2563eb;
    font-weight: 600;
    margin-bottom: 20px;
}

.member-credentials {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.credential {
    background-color: #e5e7eb;
    color: #374151;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
}

.member-description {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #374151;
    margin-bottom: 30px;
}

.member-specializations h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #1e293b;
}

.member-specializations ul {
    list-style: none;
}

.member-specializations ul li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: #374151;
}

.member-specializations ul li::before {
    content: '→';
    color: #2563eb;
    font-size: 1.1rem;
    position: absolute;
    left: 0;
}

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

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

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

.value-card h4 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #1e293b;
}

.value-card p {
    color: #64748b;
    line-height: 1.7;
}

/* Contact page specific styles */
.contact-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 80px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form-section h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1e293b;
}

.contact-form-section > p {
    font-size: 1.125rem;
    color: #64748b;
    margin-bottom: 40px;
}

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

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

.contact-info-section h2 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: #1e293b;
}

.contact-item-detailed {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    margin-bottom: 40px;
    padding: 25px;
    background-color: #f8fafc;
    border-radius: 12px;
}

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

.contact-item-detailed h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1e293b;
}

.contact-item-detailed p {
    color: #374151;
    margin-bottom: 5px;
}

.contact-item-detailed small {
    color: #64748b;
    font-size: 0.875rem;
}

.contact-item-detailed a {
    color: #2563eb;
    text-decoration: none;
    font-weight: 500;
}

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

.business-hours {
    background-color: #f8fafc;
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 30px;
}

.business-hours h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #1e293b;
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    color: #374151;
}

.social-contact h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #1e293b;
}

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

.social-link {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background-color: #f8fafc;
    border-radius: 8px;
    text-decoration: none;
    color: #374151;
    font-weight: 500;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: #e5e7eb;
    color: #2563eb;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

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

.faq-item h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #1e293b;
}

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

.btn-large {
    padding: 15px 30px;
    font-size: 1.125rem;
}

/* Thank you page styles */
.thank-you-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    text-align: center;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

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

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

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

.thank-you-message {
    font-size: 1.25rem;
    color: #64748b;
    margin-bottom: 50px;
    line-height: 1.7;
}

.next-steps {
    background-color: white;
    padding: 40px;
    border-radius: 12px;
    margin-bottom: 40px;
    text-align: left;
}

.next-steps h3 {
    font-size: 1.75rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 30px;
    text-align: center;
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

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

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

.step-text h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1e293b;
}

.step-text p {
    color: #64748b;
    line-height: 1.6;
}

.contact-reminder {
    background-color: white;
    padding: 40px;
    border-radius: 12px;
    margin-bottom: 40px;
}

.contact-reminder h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 25px;
}

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

.contact-option {
    display: flex;
    gap: 15px;
    align-items: center;
    padding: 20px;
    background-color: #f8fafc;
    border-radius: 8px;
}

.contact-option strong {
    font-size: 1.125rem;
    color: #1e293b;
    margin-bottom: 5px;
    display: block;
}

.contact-option p {
    margin: 0;
    color: #374151;
}

.contact-option a {
    color: #2563eb;
    text-decoration: none;
    font-weight: 500;
}

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

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

/* Additional styles for better layout */
.mission-values {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin: 40px 0;
}

.value-item {
    display: flex;
    gap: 25px;
    align-items: flex-start;
    padding: 30px;
    background-color: #f8fafc;
    border-radius: 12px;
}

.value-item h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #1e293b;
}

.value-item p {
    color: #64748b;
    line-height: 1.7;
}

.benefits-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
}

.benefits-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.125rem;
    color: #374151;
}

.cta-box {
    background-color: #2563eb;
    color: white;
    padding: 30px;
    border-radius: 12px;
    margin-top: 30px;
    text-align: center;
}

.cta-box h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.cta-box p {
    margin-bottom: 25px;
    opacity: 0.9;
}

.cta-box .btn {
    background-color: white;
    color: #2563eb;
}

.cta-box .btn:hover {
    background-color: #f1f5f9;
}

/* Legal pages styles */
.legal-content {
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
}

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

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

.legal-section h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 2px solid #2563eb;
}

.legal-section h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #374151;
    margin: 30px 0 15px 0;
}

.legal-section p {
    margin-bottom: 15px;
    color: #374151;
    text-align: justify;
}

.legal-section ul {
    margin: 20px 0;
    padding-left: 30px;
}

.legal-section ul li {
    margin-bottom: 8px;
    color: #374151;
}

.legal-section strong {
    font-weight: 600;
    color: #1e293b;
}

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

.legal-section a:hover {
    color: #1d4ed8;
}

.contact-details {
    background-color: #f8fafc;
    padding: 25px;
    border-radius: 8px;
    margin-top: 20px;
}

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

/* Cookie tables */
.cookie-category {
    background-color: #f8fafc;
    padding: 25px;
    border-radius: 8px;
    margin: 25px 0;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

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

.cookie-table td {
    padding: 15px;
    border-bottom: 1px solid #e5e7eb;
    color: #374151;
}

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

.cookie-table tr:nth-child(even) {
    background-color: #f8fafc;
}

/* Responsive adjustments for legal pages */
@media (max-width: 768px) {
    .legal-content {
        padding: 0 20px;
    }
    
    .legal-section h2 {
        font-size: 1.5rem;
    }
    
    .cookie-table {
        font-size: 0.875rem;
    }
    
    .cookie-table th,
    .cookie-table td {
        padding: 10px;
    }
}

.content-section {
    padding: 60px 0;
}

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

.sidebar {
    background-color: #f8fafc;
    padding: 40px;
    border-radius: 12px;
    height: fit-content;
}

.sidebar h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #1e293b;
}

.sidebar ul {
    list-style: none;
}

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

.sidebar ul li a {
    color: #64748b;
    text-decoration: none;
    transition: color 0.3s ease;
}

.sidebar ul li a:hover {
    color: #2563eb;
}