:root {
            --primary: hsl(243, 49%, 41%);
            --secondary: hsl(243, 49%, 26%);
            --accent: hsl(243, 49%, 66%);
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        .navbar {
            background-color: var(--primary);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }
        
        .navbar-brand {
            font-weight: bold;
            color: white !important;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .navbar-brand img {
            filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
            transition: transform 0.3s ease;
        }
        
        .navbar-brand:hover img {
            transform: scale(1.05);
        }
        
        .navbar-toggler {
            border: none;
            color: white;
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
        }
        
        .nav-link {
            color: rgba(255, 255, 255, 0.9) !important;
            font-weight: 500;
            transition: all 0.3s ease;
            padding: 0.5rem 1rem;
            border-radius: 4px;
        }
        
        .nav-link:hover, .nav-link:focus {
            color: white !important;
            background-color: var(--accent);
            transform: translateY(-2px);
        }
        
        .navbar-collapse {
            border-radius: 8px;
        }
        
        @media (max-width: 991.98px) {
            .navbar-collapse {
                background-color: var(--secondary);
                padding: 1rem;
                margin-top: 0.5rem;
            }
            
            .nav-link {
                padding: 0.75rem 1rem;
                margin-bottom: 0.25rem;
            }
        }

.about-section {
        padding: 5rem 0;
        background-color: #fff;
        font-family: 'Montserrat', sans-serif;
    }
    
    .about-title {
        color: hsl(243, 49%, 41%);
        font-weight: 700;
        margin-bottom: 2rem;
        position: relative;
    }
    
    .about-title:after {
        content: "";
        position: absolute;
        width: 80px;
        height: 3px;
        background-color: hsl(243, 49%, 66%);
        bottom: -10px;
        left: 0;
    }
    
    .about-subtitle {
        color: hsl(243, 49%, 26%);
        font-weight: 600;
        margin-bottom: 1.5rem;
    }
    
    .about-text {
        color: #555;
        line-height: 1.8;
        margin-bottom: 2rem;
    }
    
    .about-image {
        border-radius: 8px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        transition: transform 0.3s ease;
        width: 100%;
        height: auto;
        object-fit: cover;
    }
    
    .about-image:hover {
        transform: scale(1.02);
    }
    
    .timeline {
        position: relative;
        padding: 2rem 0;
    }
    
    .timeline:before {
        content: '';
        position: absolute;
        height: 100%;
        width: 2px;
        background-color: hsl(243, 49%, 66%);
        left: 50%;
        transform: translateX(-50%);
    }
    
    .timeline-item {
        margin-bottom: 2rem;
        position: relative;
    }
    
    .timeline-item:nth-child(odd) {
        padding-right: 50%;
        text-align: right;
        padding-right: calc(50% + 30px);
    }
    
    .timeline-item:nth-child(even) {
        padding-left: 50%;
        padding-left: calc(50% + 30px);
    }
    
    .timeline-marker {
        position: absolute;
        width: 16px;
        height: 16px;
        border-radius: 50%;
        background-color: hsl(243, 49%, 41%);
        top: 0;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .timeline-date {
        color: hsl(243, 49%, 41%);
        font-weight: 600;
        margin-bottom: 0.5rem;
    }
    
    .timeline-content {
        background-color: #f9f9f9;
        padding: 1.5rem;
        border-radius: 8px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    }
    
    .values-card {
        background-color: #f9f9f9;
        padding: 2rem;
        border-radius: 8px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        height: 100%;
        transition: transform 0.3s ease;
    }
    
    .values-card:hover {
        transform: translateY(-10px);
    }
    
    .values-icon {
        font-size: 2.5rem;
        color: hsl(243, 49%, 66%);
        margin-bottom: 1rem;
    }
    
    @media (max-width: 768px) {
        .timeline:before {
            left: 30px;
        }
        
        .timeline-item:nth-child(odd),
        .timeline-item:nth-child(even) {
            padding-left: 80px;
            padding-right: 0;
            text-align: left;
        }
        
        .timeline-marker {
            left: 30px;
        }
    }

.advantages-section {
        padding: 80px 0;
        background-color: #f8f9fa;
    }
    
    .advantages-title {
        color: hsl(243, 49%, 41%);
        text-align: center;
        margin-bottom: 60px;
        font-weight: 700;
    }
    
    .advantages-subtitle {
        color: hsl(243, 49%, 26%);
        margin-bottom: 30px;
        font-weight: 600;
    }
    
    .timeline {
        position: relative;
        padding: 0;
    }
    
    .timeline::before {
        content: '';
        position: absolute;
        width: 4px;
        background-color: hsl(243, 49%, 66%);
        top: 0;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .timeline-item {
        position: relative;
        margin-bottom: 50px;
    }
    
    .timeline-item:nth-child(odd) .timeline-content {
        margin-right: 50px;
        text-align: right;
    }
    
    .timeline-item:nth-child(even) .timeline-content {
        margin-left: 50px;
        text-align: left;
    }
    
    .timeline-dot {
        position: absolute;
        width: 30px;
        height: 30px;
        background-color: hsl(243, 49%, 41%);
        border-radius: 50%;
        left: 50%;
        top: 20px;
        transform: translateX(-50%);
        transition: all 0.3s ease;
        z-index: 10;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
    }
    
    .timeline-card {
        background-color: white;
        border-radius: 10px;
        padding: 25px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
    }
    
    .timeline-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    }
    
    .timeline-card:hover .timeline-icon {
        transform: scale(1.2);
        color: hsl(243, 49%, 41%);
    }
    
    .timeline-icon {
        font-size: 2rem;
        color: hsl(243, 49%, 66%);
        margin-bottom: 15px;
        transition: all 0.3s ease;
    }
    
    .timeline-title {
        font-size: 1.3rem;
        font-weight: 600;
        color: hsl(243, 49%, 26%);
        margin-bottom: 15px;
    }
    
    .timeline-description {
        color: #6c757d;
        line-height: 1.6;
    }
    
    @media (max-width: 767px) {
        .timeline::before {
            left: 40px;
        }
        
        .timeline-item:nth-child(odd) .timeline-content,
        .timeline-item:nth-child(even) .timeline-content {
            margin-left: 80px;
            margin-right: 0;
            text-align: left;
        }
        
        .timeline-dot {
            left: 40px;
        }
    }

.statistics-section {
        padding: 80px 0;
        background-color: hsl(243, 49%, 41%, 0.05);
    }
    
    .statistics-section h2 {
        color: hsl(243, 49%, 26%);
        margin-bottom: 50px;
        text-align: center;
        font-weight: 700;
    }
    
    .statistics-box {
        text-align: center;
        margin-bottom: 30px;
        transition: all 0.3s ease;
    }
    
    .statistics-box:hover {
        transform: translateY(-10px);
    }
    
    .statistics-number {
        font-size: 3rem;
        font-weight: 700;
        color: hsl(243, 49%, 41%);
        margin-bottom: 10px;
        display: block;
    }
    
    .statistics-icon {
        font-size: 2rem;
        color: hsl(243, 49%, 66%);
        margin-bottom: 15px;
    }
    
    .statistics-description {
        color: #555;
        font-size: 1.1rem;
    }
    
    .statistics-section .row {
        justify-content: center;
    }
    
    @media (max-width: 768px) {
        .statistics-number {
            font-size: 2.5rem;
        }
        .statistics-icon {
            font-size: 1.8rem;
        }
    }

:root {
    --primary-color: hsl(243, 49%, 41%);
    --secondary-color: hsl(243, 49%, 26%);
    --accent-color: hsl(243, 49%, 66%);
}

.footer {
    background-color: var(--secondary-color);
    color: #fff;
    padding: 3rem 0;
    font-size: 0.9rem;
}

.footer h5 {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.footer p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

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

.footer a:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    margin-top: 2rem;
}

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--primary-color);
    color: white;
    padding: 15px 0;
    z-index: 1000;
    box-shadow: 0 -3px 10px rgba(0, 0, 0, 0.2);
    display: none;
}

.cookie-notice.show {
    display: block;
    animation: slideUp 0.5s ease-out forwards;
}

.cookie-btn {
    background-color: var(--accent-color);
    color: var(--secondary-color);
    font-weight: 600;
    border: none;
    padding: 8px 15px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-btn:hover {
    background-color: #fff;
    transform: translateY(-2px);
}

.cookie-btn.outline {
    background-color: transparent;
    color: #fff;
    border: 1px solid #fff;
}

.cookie-btn.outline:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

:root {
            --primary: hsl(243, 49%, 41%);
            --secondary: hsl(243, 49%, 26%);
            --accent: hsl(243, 49%, 66%);
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        .navbar {
            background-color: var(--primary);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }
        
        .navbar-brand {
            font-weight: bold;
            color: white !important;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .navbar-brand img {
            filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
            transition: transform 0.3s ease;
        }
        
        .navbar-brand:hover img {
            transform: scale(1.05);
        }
        
        .navbar-toggler {
            border: none;
            color: white;
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
        }
        
        .nav-link {
            color: rgba(255, 255, 255, 0.9) !important;
            font-weight: 500;
            transition: all 0.3s ease;
            padding: 0.5rem 1rem;
            border-radius: 4px;
        }
        
        .nav-link:hover, .nav-link:focus {
            color: white !important;
            background-color: var(--accent);
            transform: translateY(-2px);
        }
        
        .navbar-collapse {
            border-radius: 8px;
        }
        
        @media (max-width: 991.98px) {
            .navbar-collapse {
                background-color: var(--secondary);
                padding: 1rem;
                margin-top: 0.5rem;
            }
            
            .nav-link {
                padding: 0.75rem 1rem;
                margin-bottom: 0.25rem;
            }
        }

.privacy-policy {
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        color: #333;
        line-height: 1.6;
        max-width: 1100px;
        margin: 0 auto;
        padding: 20px;
    }
    
    .privacy-policy h1 {
        color: #2c3e50;
        font-size: 2.2em;
        border-bottom: 2px solid #e67e22;
        padding-bottom: 10px;
        margin-bottom: 30px;
    }
    
    .privacy-policy h2 {
        color: #e67e22;
        font-size: 1.5em;
        margin-top: 30px;
        border-left: 4px solid #e67e22;
        padding-left: 15px;
    }
    
    .privacy-policy p {
        margin-bottom: 15px;
        text-align: justify;
    }
    
    .privacy-policy ul {
        padding-left: 30px;
        margin-bottom: 20px;
    }
    
    .privacy-policy li {
        margin-bottom: 8px;
    }
    
    .privacy-policy .highlight {
        background-color: #fef9e7;
        padding: 15px;
        border-radius: 5px;
        border-left: 4px solid #f1c40f;
        margin-bottom: 20px;
    }
    
    .privacy-policy .effective-date {
        font-style: italic;
        color: #7f8c8d;
        text-align: right;
        margin-top: 40px;
    }

:root {
    --primary-color: hsl(243, 49%, 41%);
    --secondary-color: hsl(243, 49%, 26%);
    --accent-color: hsl(243, 49%, 66%);
}

.footer {
    background-color: var(--secondary-color);
    color: #fff;
    padding: 3rem 0;
    font-size: 0.9rem;
}

.footer h5 {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.footer p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

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

.footer a:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    margin-top: 2rem;
}

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--primary-color);
    color: white;
    padding: 15px 0;
    z-index: 1000;
    box-shadow: 0 -3px 10px rgba(0, 0, 0, 0.2);
    display: none;
}

.cookie-notice.show {
    display: block;
    animation: slideUp 0.5s ease-out forwards;
}

.cookie-btn {
    background-color: var(--accent-color);
    color: var(--secondary-color);
    font-weight: 600;
    border: none;
    padding: 8px 15px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-btn:hover {
    background-color: #fff;
    transform: translateY(-2px);
}

.cookie-btn.outline {
    background-color: transparent;
    color: #fff;
    border: 1px solid #fff;
}

.cookie-btn.outline:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

:root {
            --primary: hsl(243, 49%, 41%);
            --secondary: hsl(243, 49%, 26%);
            --accent: hsl(243, 49%, 66%);
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        .navbar {
            background-color: var(--primary);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }
        
        .navbar-brand {
            font-weight: bold;
            color: white !important;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .navbar-brand img {
            filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
            transition: transform 0.3s ease;
        }
        
        .navbar-brand:hover img {
            transform: scale(1.05);
        }
        
        .navbar-toggler {
            border: none;
            color: white;
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
        }
        
        .nav-link {
            color: rgba(255, 255, 255, 0.9) !important;
            font-weight: 500;
            transition: all 0.3s ease;
            padding: 0.5rem 1rem;
            border-radius: 4px;
        }
        
        .nav-link:hover, .nav-link:focus {
            color: white !important;
            background-color: var(--accent);
            transform: translateY(-2px);
        }
        
        .navbar-collapse {
            border-radius: 8px;
        }
        
        @media (max-width: 991.98px) {
            .navbar-collapse {
                background-color: var(--secondary);
                padding: 1rem;
                margin-top: 0.5rem;
            }
            
            .nav-link {
                padding: 0.75rem 1rem;
                margin-bottom: 0.25rem;
            }
        }

.cookies-policy {
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        max-width: 1200px;
        margin: 0 auto;
        padding: 20px;
        color: #333;
        line-height: 1.6;
    }
    .cookies-policy h1 {
        color: #2e7d32;
        border-bottom: 2px solid #a5d6a7;
        padding-bottom: 10px;
        margin-bottom: 30px;
    }
    .cookies-policy h2 {
        color: #388e3c;
        margin-top: 30px;
        border-left: 4px solid #a5d6a7;
        padding-left: 15px;
    }
    .cookies-policy p {
        margin-bottom: 15px;
        text-align: justify;
    }
    .cookies-policy ul, .cookies-policy ol {
        margin-bottom: 20px;
        padding-left: 20px;
    }
    .cookies-policy li {
        margin-bottom: 10px;
    }
    .cookies-policy table {
        width: 100%;
        border-collapse: collapse;
        margin: 20px 0;
    }
    .cookies-policy th, .cookies-policy td {
        border: 1px solid #ddd;
        padding: 12px;
        text-align: left;
    }
    .cookies-policy th {
        background-color: #f1f8e9;
        color: #2e7d32;
    }
    .cookies-policy tr:nth-child(even) {
        background-color: #f9f9f9;
    }
    .cookies-policy .highlight {
        background-color: #e8f5e9;
        padding: 15px;
        border-radius: 5px;
        margin: 20px 0;
    }

:root {
    --primary-color: hsl(243, 49%, 41%);
    --secondary-color: hsl(243, 49%, 26%);
    --accent-color: hsl(243, 49%, 66%);
}

.footer {
    background-color: var(--secondary-color);
    color: #fff;
    padding: 3rem 0;
    font-size: 0.9rem;
}

.footer h5 {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.footer p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

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

.footer a:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    margin-top: 2rem;
}

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--primary-color);
    color: white;
    padding: 15px 0;
    z-index: 1000;
    box-shadow: 0 -3px 10px rgba(0, 0, 0, 0.2);
    display: none;
}

.cookie-notice.show {
    display: block;
    animation: slideUp 0.5s ease-out forwards;
}

.cookie-btn {
    background-color: var(--accent-color);
    color: var(--secondary-color);
    font-weight: 600;
    border: none;
    padding: 8px 15px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-btn:hover {
    background-color: #fff;
    transform: translateY(-2px);
}

.cookie-btn.outline {
    background-color: transparent;
    color: #fff;
    border: 1px solid #fff;
}

.cookie-btn.outline:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

:root {
            --primary: hsl(243, 49%, 41%);
            --secondary: hsl(243, 49%, 26%);
            --accent: hsl(243, 49%, 66%);
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        .navbar {
            background-color: var(--primary);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }
        
        .navbar-brand {
            font-weight: bold;
            color: white !important;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .navbar-brand img {
            filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
            transition: transform 0.3s ease;
        }
        
        .navbar-brand:hover img {
            transform: scale(1.05);
        }
        
        .navbar-toggler {
            border: none;
            color: white;
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
        }
        
        .nav-link {
            color: rgba(255, 255, 255, 0.9) !important;
            font-weight: 500;
            transition: all 0.3s ease;
            padding: 0.5rem 1rem;
            border-radius: 4px;
        }
        
        .nav-link:hover, .nav-link:focus {
            color: white !important;
            background-color: var(--accent);
            transform: translateY(-2px);
        }
        
        .navbar-collapse {
            border-radius: 8px;
        }
        
        @media (max-width: 991.98px) {
            .navbar-collapse {
                background-color: var(--secondary);
                padding: 1rem;
                margin-top: 0.5rem;
            }
            
            .nav-link {
                padding: 0.75rem 1rem;
                margin-bottom: 0.25rem;
            }
        }

.contact-section {
        padding: 100px 0;
        background-color: #f9f9ff;
    }
    
    .contact-title {
        color: hsl(243, 49%, 41%);
        font-weight: 700;
        margin-bottom: 40px;
        position: relative;
    }
    
    .contact-title:after {
        content: '';
        position: absolute;
        left: 0;
        bottom: -15px;
        width: 70px;
        height: 3px;
        background-color: hsl(243, 49%, 66%);
    }
    
    .form-group {
        margin-bottom: 20px;
    }
    
    .form-control {
        border-radius: 0;
        padding: 15px;
        height: auto;
        border: 1px solid #e2e2e2;
    }
    
    .form-control:focus {
        box-shadow: none;
        border-color: hsl(243, 49%, 41%);
    }
    
    .btn-contact {
        background-color: hsl(243, 49%, 41%);
        color: white;
        padding: 12px 30px;
        border: none;
        border-radius: 50px;
        font-weight: 600;
        letter-spacing: 1px;
        transition: all 0.3s ease;
        text-transform: uppercase;
    }
    
    .btn-contact:hover {
        background-color: hsl(243, 49%, 66%);
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }
    
    .contact-info-box {
        padding: 30px;
        border-radius: 10px;
        background-color: white;
        box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
        margin-bottom: 30px;
        transition: all 0.3s ease;
    }
    
    .contact-info-box:hover {
        transform: translateY(-10px);
    }
    
    .contact-info-box h5 {
        color: hsl(243, 49%, 41%);
        margin-bottom: 15px;
        font-weight: 600;
    }
    
    .contact-info-box p {
        color: #777;
        margin-bottom: 0;
    }
    
    .contact-map {
        border-radius: 10px;
        overflow: hidden;
        height: 300px;
    }
    
    .contact-process {
        background-color: hsl(243, 49%, 26%);
        color: white;
        padding: 30px;
        border-radius: 10px;
        margin-top: 30px;
    }
    
    .contact-process h4 {
        color: white;
        margin-bottom: 20px;
        font-weight: 600;
    }
    
    .contact-process p {
        color: rgba(255, 255, 255, 0.8);
    }
    
    label {
        color: hsl(243, 49%, 41%);
        font-weight: 600;
    }
    
    @media (max-width: 768px) {
        .contact-section {
            padding: 60px 0;
        }
    }

.about-section {
        padding: 5rem 0;
        background-color: #fff;
        font-family: 'Montserrat', sans-serif;
    }
    
    .about-title {
        color: hsl(243, 49%, 41%);
        font-weight: 700;
        margin-bottom: 2rem;
        position: relative;
    }
    
    .about-title:after {
        content: "";
        position: absolute;
        width: 80px;
        height: 3px;
        background-color: hsl(243, 49%, 66%);
        bottom: -10px;
        left: 0;
    }
    
    .about-subtitle {
        color: hsl(243, 49%, 26%);
        font-weight: 600;
        margin-bottom: 1.5rem;
    }
    
    .about-text {
        color: #555;
        line-height: 1.8;
        margin-bottom: 2rem;
    }
    
    .about-image {
        border-radius: 8px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        transition: transform 0.3s ease;
        width: 100%;
        height: auto;
        object-fit: cover;
    }
    
    .about-image:hover {
        transform: scale(1.02);
    }
    
    .timeline {
        position: relative;
        padding: 2rem 0;
    }
    
    .timeline:before {
        content: '';
        position: absolute;
        height: 100%;
        width: 2px;
        background-color: hsl(243, 49%, 66%);
        left: 50%;
        transform: translateX(-50%);
    }
    
    .timeline-item {
        margin-bottom: 2rem;
        position: relative;
    }
    
    .timeline-item:nth-child(odd) {
        padding-right: 50%;
        text-align: right;
        padding-right: calc(50% + 30px);
    }
    
    .timeline-item:nth-child(even) {
        padding-left: 50%;
        padding-left: calc(50% + 30px);
    }
    
    .timeline-marker {
        position: absolute;
        width: 16px;
        height: 16px;
        border-radius: 50%;
        background-color: hsl(243, 49%, 41%);
        top: 0;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .timeline-date {
        color: hsl(243, 49%, 41%);
        font-weight: 600;
        margin-bottom: 0.5rem;
    }
    
    .timeline-content {
        background-color: #f9f9f9;
        padding: 1.5rem;
        border-radius: 8px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    }
    
    .values-card {
        background-color: #f9f9f9;
        padding: 2rem;
        border-radius: 8px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        height: 100%;
        transition: transform 0.3s ease;
    }
    
    .values-card:hover {
        transform: translateY(-10px);
    }
    
    .values-icon {
        font-size: 2.5rem;
        color: hsl(243, 49%, 66%);
        margin-bottom: 1rem;
    }
    
    @media (max-width: 768px) {
        .timeline:before {
            left: 30px;
        }
        
        .timeline-item:nth-child(odd),
        .timeline-item:nth-child(even) {
            padding-left: 80px;
            padding-right: 0;
            text-align: left;
        }
        
        .timeline-marker {
            left: 30px;
        }
    }

:root {
    --primary-color: hsl(243, 49%, 41%);
    --secondary-color: hsl(243, 49%, 26%);
    --accent-color: hsl(243, 49%, 66%);
}

.footer {
    background-color: var(--secondary-color);
    color: #fff;
    padding: 3rem 0;
    font-size: 0.9rem;
}

.footer h5 {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.footer p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

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

.footer a:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    margin-top: 2rem;
}

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--primary-color);
    color: white;
    padding: 15px 0;
    z-index: 1000;
    box-shadow: 0 -3px 10px rgba(0, 0, 0, 0.2);
    display: none;
}

.cookie-notice.show {
    display: block;
    animation: slideUp 0.5s ease-out forwards;
}

.cookie-btn {
    background-color: var(--accent-color);
    color: var(--secondary-color);
    font-weight: 600;
    border: none;
    padding: 8px 15px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-btn:hover {
    background-color: #fff;
    transform: translateY(-2px);
}

.cookie-btn.outline {
    background-color: transparent;
    color: #fff;
    border: 1px solid #fff;
}

.cookie-btn.outline:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

:root {
            --primary: hsl(243, 49%, 41%);
            --secondary: hsl(243, 49%, 26%);
            --accent: hsl(243, 49%, 66%);
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        .navbar {
            background-color: var(--primary);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }
        
        .navbar-brand {
            font-weight: bold;
            color: white !important;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .navbar-brand img {
            filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
            transition: transform 0.3s ease;
        }
        
        .navbar-brand:hover img {
            transform: scale(1.05);
        }
        
        .navbar-toggler {
            border: none;
            color: white;
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
        }
        
        .nav-link {
            color: rgba(255, 255, 255, 0.9) !important;
            font-weight: 500;
            transition: all 0.3s ease;
            padding: 0.5rem 1rem;
            border-radius: 4px;
        }
        
        .nav-link:hover, .nav-link:focus {
            color: white !important;
            background-color: var(--accent);
            transform: translateY(-2px);
        }
        
        .navbar-collapse {
            border-radius: 8px;
        }
        
        @media (max-width: 991.98px) {
            .navbar-collapse {
                background-color: var(--secondary);
                padding: 1rem;
                margin-top: 0.5rem;
            }
            
            .nav-link {
                padding: 0.75rem 1rem;
                margin-bottom: 0.25rem;
            }
        }

.services-section {
        padding: 80px 0;
        background-color: #f8f9fa;
    }
    
    .services-section h2 {
        color: hsl(243, 49%, 41%);
        font-weight: 700;
        margin-bottom: 50px;
        text-align: center;
        position: relative;
    }
    
    .services-section h2:after {
        content: "";
        position: absolute;
        bottom: -15px;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 3px;
        background-color: hsl(243, 49%, 66%);
    }
    
    .service-card {
        background-color: #fff;
        border-radius: 10px;
        padding: 30px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        transition: all 0.3s ease;
        height: 100%;
        display: flex;
        flex-direction: column;
        margin-bottom: 30px;
    }
    
    .service-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        border-bottom: 3px solid hsl(243, 49%, 66%);
    }
    
    .service-icon {
        font-size: 2.5rem;
        margin-bottom: 20px;
        color: hsl(243, 49%, 41%);
    }
    
    .service-title {
        color: hsl(243, 49%, 26%);
        font-weight: 600;
        margin-bottom: 15px;
    }
    
    .service-description {
        color: #555;
        flex-grow: 1;
        margin-bottom: 15px;
    }
    
    .service-price {
        color: hsl(243, 49%, 41%);
        font-weight: 700;
        font-size: 1.2rem;
        margin-top: auto;
    }
    
    .service-conditions {
        font-size: 0.8rem;
        color: #777;
        margin-top: 10px;
    }

.newsletter-section {
        background: linear-gradient(135deg, hsl(243, 49%, 41%), hsl(243, 49%, 26%));
        padding: 4rem 0;
        color: #fff;
        border-radius: 15px;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
        margin: 3rem auto;
    }
    
    .newsletter-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 15px;
    }
    
    .newsletter-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .newsletter-title {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
        font-weight: 700;
        position: relative;
    }
    
    .newsletter-title:after {
        content: "";
        display: block;
        width: 80px;
        height: 3px;
        background-color: hsl(243, 49%, 66%);
        margin: 15px auto 0;
    }
    
    .newsletter-description {
        font-size: 1.1rem;
        margin-bottom: 2rem;
        max-width: 700px;
        line-height: 1.7;
    }
    
    .newsletter-benefits {
        display: flex;
        justify-content: space-around;
        flex-wrap: wrap;
        margin-bottom: 2.5rem;
        width: 100%;
    }
    
    .benefit-item {
        flex-basis: 30%;
        margin-bottom: 1.5rem;
        padding: 1rem;
        background-color: rgba(255, 255, 255, 0.1);
        border-radius: 10px;
        transition: transform 0.3s ease;
    }
    
    .benefit-item:hover {
        transform: translateY(-5px);
    }
    
    .benefit-title {
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
        font-weight: 600;
        color: hsl(243, 49%, 66%);
    }
    
    .benefit-text {
        font-size: 0.95rem;
    }
    
    .newsletter-form {
        width: 100%;
        max-width: 550px;
    }
    
    .form-control {
        height: 55px;
        border-radius: 30px;
        padding-left: 25px;
        font-size: 1rem;
        border: none;
    }
    
    .form-control:focus {
        box-shadow: 0 0 0 3px hsl(243, 49%, 66%, 0.5);
        border-color: hsl(243, 49%, 66%);
    }
    
    .btn-subscribe {
        background-color: hsl(243, 49%, 66%);
        color: white;
        border: none;
        border-radius: 30px;
        padding: 15px 35px;
        font-size: 1rem;
        font-weight: 600;
        letter-spacing: 0.5px;
        transition: all 0.3s ease;
    }
    
    .btn-subscribe:hover {
        background-color: hsl(243, 49%, 80%);
        transform: translateY(-2px);
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    }
    
    .privacy-text {
        font-size: 0.85rem;
        margin-top: 1.5rem;
        opacity: 0.8;
    }
    
    @media (max-width: 768px) {
        .newsletter-title {
            font-size: 2rem;
        }
        
        .benefit-item {
            flex-basis: 100%;
        }
        
        .newsletter-benefits {
            flex-direction: column;
        }
    }

.testimonials-section {
    background-color: #f8f9fa;
    padding: 5rem 0;
    position: relative;
}

.testimonials-section h2 {
    color: hsl(243, 49%, 41%);
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 700;
    position: relative;
}

.testimonials-section h2:after {
    content: "";
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: hsl(243, 49%, 66%);
}

.testimonial-card {
    background-color: white;
    border-radius: 10px;
    padding: 2rem;
    margin: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

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

.testimonial-text {
    font-style: italic;
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-size: 1rem;
}

.testimonial-author {
    font-weight: 600;
    color: hsl(243, 49%, 41%);
    margin-bottom: 0.2rem;
}

.testimonial-location {
    color: hsl(243, 49%, 66%);
    font-size: 0.9rem;
}

.carousel-control-prev, .carousel-control-next {
    width: 40px;
    height: 40px;
    background-color: hsl(243, 49%, 41%);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.9;
}

.carousel-control-prev {
    left: -20px;
}

.carousel-control-next {
    right: -20px;
}

.carousel-control-prev-icon, .carousel-control-next-icon {
    width: 20px;
    height: 20px;
}

.carousel-indicators {
    bottom: -50px;
}

.carousel-indicators button {
    background-color: hsl(243, 49%, 41%);
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 5px;
}

@media (max-width: 768px) {
    .carousel-control-prev, .carousel-control-next {
        display: none;
    }
    
    .testimonial-card {
        margin: 10px 5px;
        padding: 1.5rem;
    }
}

:root {
    --primary-color: hsl(243, 49%, 41%);
    --secondary-color: hsl(243, 49%, 26%);
    --accent-color: hsl(243, 49%, 66%);
}

.footer {
    background-color: var(--secondary-color);
    color: #fff;
    padding: 3rem 0;
    font-size: 0.9rem;
}

.footer h5 {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.footer p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

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

.footer a:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    margin-top: 2rem;
}

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--primary-color);
    color: white;
    padding: 15px 0;
    z-index: 1000;
    box-shadow: 0 -3px 10px rgba(0, 0, 0, 0.2);
    display: none;
}

.cookie-notice.show {
    display: block;
    animation: slideUp 0.5s ease-out forwards;
}

.cookie-btn {
    background-color: var(--accent-color);
    color: var(--secondary-color);
    font-weight: 600;
    border: none;
    padding: 8px 15px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-btn:hover {
    background-color: #fff;
    transform: translateY(-2px);
}

.cookie-btn.outline {
    background-color: transparent;
    color: #fff;
    border: 1px solid #fff;
}

.cookie-btn.outline:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

:root {
            --primary: hsl(243, 49%, 41%);
            --secondary: hsl(243, 49%, 26%);
            --accent: hsl(243, 49%, 66%);
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        .navbar {
            background-color: var(--primary);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }
        
        .navbar-brand {
            font-weight: bold;
            color: white !important;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .navbar-brand img {
            filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
            transition: transform 0.3s ease;
        }
        
        .navbar-brand:hover img {
            transform: scale(1.05);
        }
        
        .navbar-toggler {
            border: none;
            color: white;
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
        }
        
        .nav-link {
            color: rgba(255, 255, 255, 0.9) !important;
            font-weight: 500;
            transition: all 0.3s ease;
            padding: 0.5rem 1rem;
            border-radius: 4px;
        }
        
        .nav-link:hover, .nav-link:focus {
            color: white !important;
            background-color: var(--accent);
            transform: translateY(-2px);
        }
        
        .navbar-collapse {
            border-radius: 8px;
        }
        
        @media (max-width: 991.98px) {
            .navbar-collapse {
                background-color: var(--secondary);
                padding: 1rem;
                margin-top: 0.5rem;
            }
            
            .nav-link {
                padding: 0.75rem 1rem;
                margin-bottom: 0.25rem;
            }
        }

.terms-container {
        font-family: 'Open Sans', Arial, sans-serif;
        max-width: 1000px;
        margin: 0 auto;
        padding: 20px;
        color: #333;
        line-height: 1.6;
    }
    .terms-header {
        text-align: center;
        margin-bottom: 30px;
        border-bottom: 2px solid #3a5f0b;
        padding-bottom: 15px;
    }
    .terms-title {
        color: #3a5f0b;
        font-size: 28px;
        margin-bottom: 10px;
    }
    .terms-subtitle {
        color: #666;
        font-size: 16px;
        font-style: italic;
    }
    .terms-section {
        margin-bottom: 25px;
    }
    .terms-section-title {
        color: #3a5f0b;
        font-size: 20px;
        margin-bottom: 15px;
        border-left: 4px solid #3a5f0b;
        padding-left: 10px;
    }
    .terms-last-updated {
        text-align: right;
        font-style: italic;
        margin-top: 40px;
        font-size: 14px;
        color: #777;
    }
    .terms-list {
        list-style-type: disc;
        margin-left: 20px;
    }
    .terms-list li {
        margin-bottom: 8px;
    }

:root {
    --primary-color: hsl(243, 49%, 41%);
    --secondary-color: hsl(243, 49%, 26%);
    --accent-color: hsl(243, 49%, 66%);
}

.footer {
    background-color: var(--secondary-color);
    color: #fff;
    padding: 3rem 0;
    font-size: 0.9rem;
}

.footer h5 {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.footer p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

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

.footer a:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    margin-top: 2rem;
}

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--primary-color);
    color: white;
    padding: 15px 0;
    z-index: 1000;
    box-shadow: 0 -3px 10px rgba(0, 0, 0, 0.2);
    display: none;
}

.cookie-notice.show {
    display: block;
    animation: slideUp 0.5s ease-out forwards;
}

.cookie-btn {
    background-color: var(--accent-color);
    color: var(--secondary-color);
    font-weight: 600;
    border: none;
    padding: 8px 15px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-btn:hover {
    background-color: #fff;
    transform: translateY(-2px);
}

.cookie-btn.outline {
    background-color: transparent;
    color: #fff;
    border: 1px solid #fff;
}

.cookie-btn.outline:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

:root {
            --primary: hsl(243, 49%, 41%);
            --secondary: hsl(243, 49%, 26%);
            --accent: hsl(243, 49%, 66%);
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        .navbar {
            background-color: var(--primary);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }
        
        .navbar-brand {
            font-weight: bold;
            color: white !important;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .navbar-brand img {
            filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
            transition: transform 0.3s ease;
        }
        
        .navbar-brand:hover img {
            transform: scale(1.05);
        }
        
        .navbar-toggler {
            border: none;
            color: white;
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
        }
        
        .nav-link {
            color: rgba(255, 255, 255, 0.9) !important;
            font-weight: 500;
            transition: all 0.3s ease;
            padding: 0.5rem 1rem;
            border-radius: 4px;
        }
        
        .nav-link:hover, .nav-link:focus {
            color: white !important;
            background-color: var(--accent);
            transform: translateY(-2px);
        }
        
        .navbar-collapse {
            border-radius: 8px;
        }
        
        @media (max-width: 991.98px) {
            .navbar-collapse {
                background-color: var(--secondary);
                padding: 1rem;
                margin-top: 0.5rem;
            }
            
            .nav-link {
                padding: 0.75rem 1rem;
                margin-bottom: 0.25rem;
            }
        }

.faq-section {
        padding: 80px 0;
        background-color: #f8f9fa;
    }
    
    .faq-title {
        color: hsl(243, 49%, 41%);
        margin-bottom: 50px;
        font-weight: 700;
        text-align: center;
    }
    
    .faq-card {
        margin-bottom: 20px;
        border: none;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        transition: transform 0.3s, box-shadow 0.3s;
        border-radius: 10px;
        overflow: hidden;
    }
    
    .faq-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    }
    
    .faq-card .card-header {
        background-color: white;
        border-bottom: none;
        padding: 20px 25px;
        cursor: pointer;
    }
    
    .faq-card .card-header h5 {
        color: hsl(243, 49%, 26%);
        font-weight: 600;
        margin: 0;
    }
    
    .faq-card .card-header:after {
        content: '+';
        float: right;
        font-size: 22px;
        font-weight: 700;
        color: hsl(243, 49%, 66%);
        transition: transform 0.3s;
    }
    
    .faq-card .card-header.active:after {
        content: '−';
        transform: rotate(180deg);
    }
    
    .faq-card .card-body {
        padding: 0 25px 20px;
        color: #555;
        line-height: 1.7;
    }
    
    .faq-card .collapse.show {
        border-top: 1px solid rgba(0, 0, 0, 0.05);
    }
    
    @media (max-width: 768px) {
        .faq-section {
            padding: 50px 0;
        }
        
        .faq-title {
            margin-bottom: 30px;
        }
    }

.about-section {
        padding: 5rem 0;
        background-color: #fff;
        font-family: 'Montserrat', sans-serif;
    }
    
    .about-title {
        color: hsl(243, 49%, 41%);
        font-weight: 700;
        margin-bottom: 2rem;
        position: relative;
    }
    
    .about-title:after {
        content: "";
        position: absolute;
        width: 80px;
        height: 3px;
        background-color: hsl(243, 49%, 66%);
        bottom: -10px;
        left: 0;
    }
    
    .about-subtitle {
        color: hsl(243, 49%, 26%);
        font-weight: 600;
        margin-bottom: 1.5rem;
    }
    
    .about-text {
        color: #555;
        line-height: 1.8;
        margin-bottom: 2rem;
    }
    
    .about-image {
        border-radius: 8px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        transition: transform 0.3s ease;
        width: 100%;
        height: auto;
        object-fit: cover;
    }
    
    .about-image:hover {
        transform: scale(1.02);
    }
    
    .timeline {
        position: relative;
        padding: 2rem 0;
    }
    
    .timeline:before {
        content: '';
        position: absolute;
        height: 100%;
        width: 2px;
        background-color: hsl(243, 49%, 66%);
        left: 50%;
        transform: translateX(-50%);
    }
    
    .timeline-item {
        margin-bottom: 2rem;
        position: relative;
    }
    
    .timeline-item:nth-child(odd) {
        padding-right: 50%;
        text-align: right;
        padding-right: calc(50% + 30px);
    }
    
    .timeline-item:nth-child(even) {
        padding-left: 50%;
        padding-left: calc(50% + 30px);
    }
    
    .timeline-marker {
        position: absolute;
        width: 16px;
        height: 16px;
        border-radius: 50%;
        background-color: hsl(243, 49%, 41%);
        top: 0;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .timeline-date {
        color: hsl(243, 49%, 41%);
        font-weight: 600;
        margin-bottom: 0.5rem;
    }
    
    .timeline-content {
        background-color: #f9f9f9;
        padding: 1.5rem;
        border-radius: 8px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    }
    
    .values-card {
        background-color: #f9f9f9;
        padding: 2rem;
        border-radius: 8px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        height: 100%;
        transition: transform 0.3s ease;
    }
    
    .values-card:hover {
        transform: translateY(-10px);
    }
    
    .values-icon {
        font-size: 2.5rem;
        color: hsl(243, 49%, 66%);
        margin-bottom: 1rem;
    }
    
    @media (max-width: 768px) {
        .timeline:before {
            left: 30px;
        }
        
        .timeline-item:nth-child(odd),
        .timeline-item:nth-child(even) {
            padding-left: 80px;
            padding-right: 0;
            text-align: left;
        }
        
        .timeline-marker {
            left: 30px;
        }
    }

.newsletter-section {
        background: linear-gradient(135deg, hsl(243, 49%, 41%), hsl(243, 49%, 26%));
        padding: 4rem 0;
        color: #fff;
        border-radius: 15px;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
        margin: 3rem auto;
    }
    
    .newsletter-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 15px;
    }
    
    .newsletter-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .newsletter-title {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
        font-weight: 700;
        position: relative;
    }
    
    .newsletter-title:after {
        content: "";
        display: block;
        width: 80px;
        height: 3px;
        background-color: hsl(243, 49%, 66%);
        margin: 15px auto 0;
    }
    
    .newsletter-description {
        font-size: 1.1rem;
        margin-bottom: 2rem;
        max-width: 700px;
        line-height: 1.7;
    }
    
    .newsletter-benefits {
        display: flex;
        justify-content: space-around;
        flex-wrap: wrap;
        margin-bottom: 2.5rem;
        width: 100%;
    }
    
    .benefit-item {
        flex-basis: 30%;
        margin-bottom: 1.5rem;
        padding: 1rem;
        background-color: rgba(255, 255, 255, 0.1);
        border-radius: 10px;
        transition: transform 0.3s ease;
    }
    
    .benefit-item:hover {
        transform: translateY(-5px);
    }
    
    .benefit-title {
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
        font-weight: 600;
        color: hsl(243, 49%, 66%);
    }
    
    .benefit-text {
        font-size: 0.95rem;
    }
    
    .newsletter-form {
        width: 100%;
        max-width: 550px;
    }
    
    .form-control {
        height: 55px;
        border-radius: 30px;
        padding-left: 25px;
        font-size: 1rem;
        border: none;
    }
    
    .form-control:focus {
        box-shadow: 0 0 0 3px hsl(243, 49%, 66%, 0.5);
        border-color: hsl(243, 49%, 66%);
    }
    
    .btn-subscribe {
        background-color: hsl(243, 49%, 66%);
        color: white;
        border: none;
        border-radius: 30px;
        padding: 15px 35px;
        font-size: 1rem;
        font-weight: 600;
        letter-spacing: 0.5px;
        transition: all 0.3s ease;
    }
    
    .btn-subscribe:hover {
        background-color: hsl(243, 49%, 80%);
        transform: translateY(-2px);
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    }
    
    .privacy-text {
        font-size: 0.85rem;
        margin-top: 1.5rem;
        opacity: 0.8;
    }
    
    @media (max-width: 768px) {
        .newsletter-title {
            font-size: 2rem;
        }
        
        .benefit-item {
            flex-basis: 100%;
        }
        
        .newsletter-benefits {
            flex-direction: column;
        }
    }

:root {
    --primary-color: hsl(243, 49%, 41%);
    --secondary-color: hsl(243, 49%, 26%);
    --accent-color: hsl(243, 49%, 66%);
}

.footer {
    background-color: var(--secondary-color);
    color: #fff;
    padding: 3rem 0;
    font-size: 0.9rem;
}

.footer h5 {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.footer p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

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

.footer a:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    margin-top: 2rem;
}

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--primary-color);
    color: white;
    padding: 15px 0;
    z-index: 1000;
    box-shadow: 0 -3px 10px rgba(0, 0, 0, 0.2);
    display: none;
}

.cookie-notice.show {
    display: block;
    animation: slideUp 0.5s ease-out forwards;
}

.cookie-btn {
    background-color: var(--accent-color);
    color: var(--secondary-color);
    font-weight: 600;
    border: none;
    padding: 8px 15px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-btn:hover {
    background-color: #fff;
    transform: translateY(-2px);
}

.cookie-btn.outline {
    background-color: transparent;
    color: #fff;
    border: 1px solid #fff;
}

.cookie-btn.outline:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

:root {
            --primary: hsl(243, 49%, 41%);
            --secondary: hsl(243, 49%, 26%);
            --accent: hsl(243, 49%, 66%);
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        .navbar {
            background-color: var(--primary);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }
        
        .navbar-brand {
            font-weight: bold;
            color: white !important;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .navbar-brand img {
            filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
            transition: transform 0.3s ease;
        }
        
        .navbar-brand:hover img {
            transform: scale(1.05);
        }
        
        .navbar-toggler {
            border: none;
            color: white;
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
        }
        
        .nav-link {
            color: rgba(255, 255, 255, 0.9) !important;
            font-weight: 500;
            transition: all 0.3s ease;
            padding: 0.5rem 1rem;
            border-radius: 4px;
        }
        
        .nav-link:hover, .nav-link:focus {
            color: white !important;
            background-color: var(--accent);
            transform: translateY(-2px);
        }
        
        .navbar-collapse {
            border-radius: 8px;
        }
        
        @media (max-width: 991.98px) {
            .navbar-collapse {
                background-color: var(--secondary);
                padding: 1rem;
                margin-top: 0.5rem;
            }
            
            .nav-link {
                padding: 0.75rem 1rem;
                margin-bottom: 0.25rem;
            }
        }

.hero-section {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-areas:
            "heading image"
            "description image"
            "features cta";
        gap: 2rem;
        padding: 5rem 2rem;
        background: linear-gradient(145deg, hsl(243, 49%, 41%), hsl(243, 49%, 26%));
        color: #fff;
        min-height: 100vh;
    }

    .hero-heading {
        grid-area: heading;
        font-size: 3.5rem;
        font-weight: 800;
        margin-bottom: 1rem;
        line-height: 1.2;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        position: relative;
    }

    .hero-heading::after {
        content: "";
        position: absolute;
        bottom: -15px;
        left: 0;
        width: 80px;
        height: 5px;
        background-color: hsl(243, 49%, 66%);
    }

    .hero-subheading {
        grid-area: subheading;
        font-size: 1.8rem;
        font-weight: 300;
        margin-bottom: 2rem;
        opacity: 0.9;
    }

    .hero-description {
        grid-area: description;
        font-size: 1.1rem;
        line-height: 1.8;
        margin-bottom: 2rem;
        max-width: 90%;
    }

    .hero-image-container {
        grid-area: image;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .hero-image {
        max-width: 100%;
        height: auto;
        border-radius: 12px;
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
        transition: transform 0.3s ease;
    }

    .hero-image:hover {
        transform: scale(1.02);
    }

    .hero-features {
        grid-area: features;
        padding-left: 1rem;
    }

    .hero-features ul {
        list-style: none;
        padding-left: 0;
    }

    .hero-features li {
        margin-bottom: 1rem;
        display: flex;
        align-items: center;
    }

    .hero-features i {
        color: hsl(243, 49%, 66%);
        margin-right: 0.75rem;
        font-size: 1.2rem;
    }

    .hero-cta {
        grid-area: cta;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        align-items: flex-start;
        padding-bottom: 2rem;
    }

    .btn-primary {
        background-color: hsl(243, 49%, 66%);
        border: none;
        padding: 0.75rem 2rem;
        font-size: 1.1rem;
        font-weight: 600;
        border-radius: 50px;
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-bottom: 1rem;
        transition: all 0.3s ease;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }

    .btn-primary:hover {
        background-color: hsl(243, 49%, 76%);
        transform: translateY(-3px);
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.25);
    }

    .btn-secondary {
        background-color: transparent;
        border: 2px solid hsl(243, 49%, 66%);
        color: #fff;
        padding: 0.7rem 1.8rem;
        font-size: 1rem;
        font-weight: 500;
        border-radius: 50px;
        text-transform: uppercase;
        transition: all 0.3s ease;
    }

    .btn-secondary:hover {
        background-color: rgba(255, 255, 255, 0.1);
        transform: translateY(-3px);
    }

    @media (max-width: 992px) {
        .hero-section {
            grid-template-columns: 1fr;
            grid-template-areas:
                "heading"
                "description"
                "image"
                "features"
                "cta";
        }

        .hero-description,
        .hero-heading {
            max-width: 100%;
        }

        .hero-image-container {
            margin: 2rem 0;
        }

        .hero-cta {
            align-items: center;
            padding-bottom: 0;
        }
    }

.contact-section {
        padding: 100px 0;
        background-color: #f9f9ff;
    }
    
    .contact-title {
        color: hsl(243, 49%, 41%);
        font-weight: 700;
        margin-bottom: 40px;
        position: relative;
    }
    
    .contact-title:after {
        content: '';
        position: absolute;
        left: 0;
        bottom: -15px;
        width: 70px;
        height: 3px;
        background-color: hsl(243, 49%, 66%);
    }
    
    .form-group {
        margin-bottom: 20px;
    }
    
    .form-control {
        border-radius: 0;
        padding: 15px;
        height: auto;
        border: 1px solid #e2e2e2;
    }
    
    .form-control:focus {
        box-shadow: none;
        border-color: hsl(243, 49%, 41%);
    }
    
    .btn-contact {
        background-color: hsl(243, 49%, 41%);
        color: white;
        padding: 12px 30px;
        border: none;
        border-radius: 50px;
        font-weight: 600;
        letter-spacing: 1px;
        transition: all 0.3s ease;
        text-transform: uppercase;
    }
    
    .btn-contact:hover {
        background-color: hsl(243, 49%, 66%);
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }
    
    .contact-info-box {
        padding: 30px;
        border-radius: 10px;
        background-color: white;
        box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
        margin-bottom: 30px;
        transition: all 0.3s ease;
    }
    
    .contact-info-box:hover {
        transform: translateY(-10px);
    }
    
    .contact-info-box h5 {
        color: hsl(243, 49%, 41%);
        margin-bottom: 15px;
        font-weight: 600;
    }
    
    .contact-info-box p {
        color: #777;
        margin-bottom: 0;
    }
    
    .contact-map {
        border-radius: 10px;
        overflow: hidden;
        height: 300px;
    }
    
    .contact-process {
        background-color: hsl(243, 49%, 26%);
        color: white;
        padding: 30px;
        border-radius: 10px;
        margin-top: 30px;
    }
    
    .contact-process h4 {
        color: white;
        margin-bottom: 20px;
        font-weight: 600;
    }
    
    .contact-process p {
        color: rgba(255, 255, 255, 0.8);
    }
    
    label {
        color: hsl(243, 49%, 41%);
        font-weight: 600;
    }
    
    @media (max-width: 768px) {
        .contact-section {
            padding: 60px 0;
        }
    }

.newsletter-section {
        background: linear-gradient(135deg, hsl(243, 49%, 41%), hsl(243, 49%, 26%));
        padding: 4rem 0;
        color: #fff;
        border-radius: 15px;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
        margin: 3rem auto;
    }
    
    .newsletter-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 15px;
    }
    
    .newsletter-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .newsletter-title {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
        font-weight: 700;
        position: relative;
    }
    
    .newsletter-title:after {
        content: "";
        display: block;
        width: 80px;
        height: 3px;
        background-color: hsl(243, 49%, 66%);
        margin: 15px auto 0;
    }
    
    .newsletter-description {
        font-size: 1.1rem;
        margin-bottom: 2rem;
        max-width: 700px;
        line-height: 1.7;
    }
    
    .newsletter-benefits {
        display: flex;
        justify-content: space-around;
        flex-wrap: wrap;
        margin-bottom: 2.5rem;
        width: 100%;
    }
    
    .benefit-item {
        flex-basis: 30%;
        margin-bottom: 1.5rem;
        padding: 1rem;
        background-color: rgba(255, 255, 255, 0.1);
        border-radius: 10px;
        transition: transform 0.3s ease;
    }
    
    .benefit-item:hover {
        transform: translateY(-5px);
    }
    
    .benefit-title {
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
        font-weight: 600;
        color: hsl(243, 49%, 66%);
    }
    
    .benefit-text {
        font-size: 0.95rem;
    }
    
    .newsletter-form {
        width: 100%;
        max-width: 550px;
    }
    
    .form-control {
        height: 55px;
        border-radius: 30px;
        padding-left: 25px;
        font-size: 1rem;
        border: none;
    }
    
    .form-control:focus {
        box-shadow: 0 0 0 3px hsl(243, 49%, 66%, 0.5);
        border-color: hsl(243, 49%, 66%);
    }
    
    .btn-subscribe {
        background-color: hsl(243, 49%, 66%);
        color: white;
        border: none;
        border-radius: 30px;
        padding: 15px 35px;
        font-size: 1rem;
        font-weight: 600;
        letter-spacing: 0.5px;
        transition: all 0.3s ease;
    }
    
    .btn-subscribe:hover {
        background-color: hsl(243, 49%, 80%);
        transform: translateY(-2px);
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    }
    
    .privacy-text {
        font-size: 0.85rem;
        margin-top: 1.5rem;
        opacity: 0.8;
    }
    
    @media (max-width: 768px) {
        .newsletter-title {
            font-size: 2rem;
        }
        
        .benefit-item {
            flex-basis: 100%;
        }
        
        .newsletter-benefits {
            flex-direction: column;
        }
    }

.services-section {
        padding: 80px 0;
        background-color: #f8f9fa;
    }
    
    .services-section h2 {
        color: hsl(243, 49%, 41%);
        font-weight: 700;
        margin-bottom: 50px;
        text-align: center;
        position: relative;
    }
    
    .services-section h2:after {
        content: "";
        position: absolute;
        bottom: -15px;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 3px;
        background-color: hsl(243, 49%, 66%);
    }
    
    .service-card {
        background-color: #fff;
        border-radius: 10px;
        padding: 30px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        transition: all 0.3s ease;
        height: 100%;
        display: flex;
        flex-direction: column;
        margin-bottom: 30px;
    }
    
    .service-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        border-bottom: 3px solid hsl(243, 49%, 66%);
    }
    
    .service-icon {
        font-size: 2.5rem;
        margin-bottom: 20px;
        color: hsl(243, 49%, 41%);
    }
    
    .service-title {
        color: hsl(243, 49%, 26%);
        font-weight: 600;
        margin-bottom: 15px;
    }
    
    .service-description {
        color: #555;
        flex-grow: 1;
        margin-bottom: 15px;
    }
    
    .service-price {
        color: hsl(243, 49%, 41%);
        font-weight: 700;
        font-size: 1.2rem;
        margin-top: auto;
    }
    
    .service-conditions {
        font-size: 0.8rem;
        color: #777;
        margin-top: 10px;
    }

.testimonials-section {
    background-color: #f8f9fa;
    padding: 5rem 0;
    position: relative;
}

.testimonials-section h2 {
    color: hsl(243, 49%, 41%);
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 700;
    position: relative;
}

.testimonials-section h2:after {
    content: "";
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: hsl(243, 49%, 66%);
}

.testimonial-card {
    background-color: white;
    border-radius: 10px;
    padding: 2rem;
    margin: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

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

.testimonial-text {
    font-style: italic;
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-size: 1rem;
}

.testimonial-author {
    font-weight: 600;
    color: hsl(243, 49%, 41%);
    margin-bottom: 0.2rem;
}

.testimonial-location {
    color: hsl(243, 49%, 66%);
    font-size: 0.9rem;
}

.carousel-control-prev, .carousel-control-next {
    width: 40px;
    height: 40px;
    background-color: hsl(243, 49%, 41%);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.9;
}

.carousel-control-prev {
    left: -20px;
}

.carousel-control-next {
    right: -20px;
}

.carousel-control-prev-icon, .carousel-control-next-icon {
    width: 20px;
    height: 20px;
}

.carousel-indicators {
    bottom: -50px;
}

.carousel-indicators button {
    background-color: hsl(243, 49%, 41%);
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 5px;
}

@media (max-width: 768px) {
    .carousel-control-prev, .carousel-control-next {
        display: none;
    }
    
    .testimonial-card {
        margin: 10px 5px;
        padding: 1.5rem;
    }
}

.statistics-section {
        padding: 80px 0;
        background-color: hsl(243, 49%, 41%, 0.05);
    }
    
    .statistics-section h2 {
        color: hsl(243, 49%, 26%);
        margin-bottom: 50px;
        text-align: center;
        font-weight: 700;
    }
    
    .statistics-box {
        text-align: center;
        margin-bottom: 30px;
        transition: all 0.3s ease;
    }
    
    .statistics-box:hover {
        transform: translateY(-10px);
    }
    
    .statistics-number {
        font-size: 3rem;
        font-weight: 700;
        color: hsl(243, 49%, 41%);
        margin-bottom: 10px;
        display: block;
    }
    
    .statistics-icon {
        font-size: 2rem;
        color: hsl(243, 49%, 66%);
        margin-bottom: 15px;
    }
    
    .statistics-description {
        color: #555;
        font-size: 1.1rem;
    }
    
    .statistics-section .row {
        justify-content: center;
    }
    
    @media (max-width: 768px) {
        .statistics-number {
            font-size: 2.5rem;
        }
        .statistics-icon {
            font-size: 1.8rem;
        }
    }

.advantages-section {
        padding: 80px 0;
        background-color: #f8f9fa;
    }
    
    .advantages-title {
        color: hsl(243, 49%, 41%);
        text-align: center;
        margin-bottom: 60px;
        font-weight: 700;
    }
    
    .advantages-subtitle {
        color: hsl(243, 49%, 26%);
        margin-bottom: 30px;
        font-weight: 600;
    }
    
    .timeline {
        position: relative;
        padding: 0;
    }
    
    .timeline::before {
        content: '';
        position: absolute;
        width: 4px;
        background-color: hsl(243, 49%, 66%);
        top: 0;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .timeline-item {
        position: relative;
        margin-bottom: 50px;
    }
    
    .timeline-item:nth-child(odd) .timeline-content {
        margin-right: 50px;
        text-align: right;
    }
    
    .timeline-item:nth-child(even) .timeline-content {
        margin-left: 50px;
        text-align: left;
    }
    
    .timeline-dot {
        position: absolute;
        width: 30px;
        height: 30px;
        background-color: hsl(243, 49%, 41%);
        border-radius: 50%;
        left: 50%;
        top: 20px;
        transform: translateX(-50%);
        transition: all 0.3s ease;
        z-index: 10;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
    }
    
    .timeline-card {
        background-color: white;
        border-radius: 10px;
        padding: 25px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
    }
    
    .timeline-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    }
    
    .timeline-card:hover .timeline-icon {
        transform: scale(1.2);
        color: hsl(243, 49%, 41%);
    }
    
    .timeline-icon {
        font-size: 2rem;
        color: hsl(243, 49%, 66%);
        margin-bottom: 15px;
        transition: all 0.3s ease;
    }
    
    .timeline-title {
        font-size: 1.3rem;
        font-weight: 600;
        color: hsl(243, 49%, 26%);
        margin-bottom: 15px;
    }
    
    .timeline-description {
        color: #6c757d;
        line-height: 1.6;
    }
    
    @media (max-width: 767px) {
        .timeline::before {
            left: 40px;
        }
        
        .timeline-item:nth-child(odd) .timeline-content,
        .timeline-item:nth-child(even) .timeline-content {
            margin-left: 80px;
            margin-right: 0;
            text-align: left;
        }
        
        .timeline-dot {
            left: 40px;
        }
    }

.about-section {
        padding: 5rem 0;
        background-color: #fff;
        font-family: 'Montserrat', sans-serif;
    }
    
    .about-title {
        color: hsl(243, 49%, 41%);
        font-weight: 700;
        margin-bottom: 2rem;
        position: relative;
    }
    
    .about-title:after {
        content: "";
        position: absolute;
        width: 80px;
        height: 3px;
        background-color: hsl(243, 49%, 66%);
        bottom: -10px;
        left: 0;
    }
    
    .about-subtitle {
        color: hsl(243, 49%, 26%);
        font-weight: 600;
        margin-bottom: 1.5rem;
    }
    
    .about-text {
        color: #555;
        line-height: 1.8;
        margin-bottom: 2rem;
    }
    
    .about-image {
        border-radius: 8px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        transition: transform 0.3s ease;
        width: 100%;
        height: auto;
        object-fit: cover;
    }
    
    .about-image:hover {
        transform: scale(1.02);
    }
    
    .timeline {
        position: relative;
        padding: 2rem 0;
    }
    
    .timeline:before {
        content: '';
        position: absolute;
        height: 100%;
        width: 2px;
        background-color: hsl(243, 49%, 66%);
        left: 50%;
        transform: translateX(-50%);
    }
    
    .timeline-item {
        margin-bottom: 2rem;
        position: relative;
    }
    
    .timeline-item:nth-child(odd) {
        padding-right: 50%;
        text-align: right;
        padding-right: calc(50% + 30px);
    }
    
    .timeline-item:nth-child(even) {
        padding-left: 50%;
        padding-left: calc(50% + 30px);
    }
    
    .timeline-marker {
        position: absolute;
        width: 16px;
        height: 16px;
        border-radius: 50%;
        background-color: hsl(243, 49%, 41%);
        top: 0;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .timeline-date {
        color: hsl(243, 49%, 41%);
        font-weight: 600;
        margin-bottom: 0.5rem;
    }
    
    .timeline-content {
        background-color: #f9f9f9;
        padding: 1.5rem;
        border-radius: 8px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    }
    
    .values-card {
        background-color: #f9f9f9;
        padding: 2rem;
        border-radius: 8px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        height: 100%;
        transition: transform 0.3s ease;
    }
    
    .values-card:hover {
        transform: translateY(-10px);
    }
    
    .values-icon {
        font-size: 2.5rem;
        color: hsl(243, 49%, 66%);
        margin-bottom: 1rem;
    }
    
    @media (max-width: 768px) {
        .timeline:before {
            left: 30px;
        }
        
        .timeline-item:nth-child(odd),
        .timeline-item:nth-child(even) {
            padding-left: 80px;
            padding-right: 0;
            text-align: left;
        }
        
        .timeline-marker {
            left: 30px;
        }
    }

.faq-section {
        padding: 80px 0;
        background-color: #f8f9fa;
    }
    
    .faq-title {
        color: hsl(243, 49%, 41%);
        margin-bottom: 50px;
        font-weight: 700;
        text-align: center;
    }
    
    .faq-card {
        margin-bottom: 20px;
        border: none;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        transition: transform 0.3s, box-shadow 0.3s;
        border-radius: 10px;
        overflow: hidden;
    }
    
    .faq-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    }
    
    .faq-card .card-header {
        background-color: white;
        border-bottom: none;
        padding: 20px 25px;
        cursor: pointer;
    }
    
    .faq-card .card-header h5 {
        color: hsl(243, 49%, 26%);
        font-weight: 600;
        margin: 0;
    }
    
    .faq-card .card-header:after {
        content: '+';
        float: right;
        font-size: 22px;
        font-weight: 700;
        color: hsl(243, 49%, 66%);
        transition: transform 0.3s;
    }
    
    .faq-card .card-header.active:after {
        content: '−';
        transform: rotate(180deg);
    }
    
    .faq-card .card-body {
        padding: 0 25px 20px;
        color: #555;
        line-height: 1.7;
    }
    
    .faq-card .collapse.show {
        border-top: 1px solid rgba(0, 0, 0, 0.05);
    }
    
    @media (max-width: 768px) {
        .faq-section {
            padding: 50px 0;
        }
        
        .faq-title {
            margin-bottom: 30px;
        }
    }

:root {
    --primary-color: hsl(243, 49%, 41%);
    --secondary-color: hsl(243, 49%, 26%);
    --accent-color: hsl(243, 49%, 66%);
}

.footer {
    background-color: var(--secondary-color);
    color: #fff;
    padding: 3rem 0;
    font-size: 0.9rem;
}

.footer h5 {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.footer p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

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

.footer a:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    margin-top: 2rem;
}

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--primary-color);
    color: white;
    padding: 15px 0;
    z-index: 1000;
    box-shadow: 0 -3px 10px rgba(0, 0, 0, 0.2);
    display: none;
}

.cookie-notice.show {
    display: block;
    animation: slideUp 0.5s ease-out forwards;
}

.cookie-btn {
    background-color: var(--accent-color);
    color: var(--secondary-color);
    font-weight: 600;
    border: none;
    padding: 8px 15px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-btn:hover {
    background-color: #fff;
    transform: translateY(-2px);
}

.cookie-btn.outline {
    background-color: transparent;
    color: #fff;
    border: 1px solid #fff;
}

.cookie-btn.outline:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}