:root {
            --primary-color: hsl(38, 53%, 45%);
            --secondary-color: hsl(38, 53%, 30%);
            --accent-color: hsl(38, 53%, 70%);
        }
        
        body {
            font-family: 'Montserrat', sans-serif;
        }
        
        .navbar {
            background-color: white;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        .navbar-brand {
            font-weight: 700;
            color: var(--primary-color);
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .navbar-brand img {
            transition: transform 0.3s ease;
        }
        
        .navbar-brand:hover img {
            transform: rotate(10deg);
        }
        
        .nav-link {
            color: var(--secondary-color);
            font-weight: 500;
            position: relative;
            margin: 0 5px;
        }
        
        .nav-link:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: var(--primary-color);
            transition: width 0.3s ease;
        }
        
        .nav-link:hover:after {
            width: 100%;
        }
        
        .nav-link.active {
            color: var(--primary-color);
            font-weight: 600;
        }
        
        .nav-link.active:after {
            width: 100%;
        }
        
        .navbar-toggler {
            border: none;
            padding: 0;
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='hsl(38, 53%, 45%)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }

.about-section {
    padding: 80px 0;
    color: #333;
    background-color: #fff;
  }
  
  .about-section h2 {
    color: hsl(38, 53%, 30%);
    font-weight: 700;
    margin-bottom: 30px;
    position: relative;
  }
  
  .about-section h2:after {
    content: '';
    display: block;
    width: 70px;
    height: 3px;
    background-color: hsl(38, 53%, 45%);
    margin-top: 15px;
  }
  
  .about-section p {
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 16px;
  }
  
  .about-image {
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-bottom: 30px;
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
  }
  
  .about-image:hover {
    transform: scale(1.02);
  }
  
  .timeline {
    position: relative;
    margin: 50px 0;
  }
  
  .timeline:before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background-color: hsl(38, 53%, 70%);
  }
  
  .timeline-item {
    position: relative;
    margin-bottom: 50px;
  }
  
  .timeline-item:nth-child(odd) {
    padding-right: 50px;
    text-align: right;
  }
  
  .timeline-item:nth-child(even) {
    padding-left: 50px;
    margin-left: 50%;
  }
  
  .timeline-dot {
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: hsl(38, 53%, 45%);
    top: 0;
  }
  
  .timeline-item:nth-child(odd) .timeline-dot {
    right: -10px;
  }
  
  .timeline-item:nth-child(even) .timeline-dot {
    left: -10px;
  }
  
  .timeline-content {
    padding: 20px;
    background-color: #f9f5ed;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
  }
  
  .timeline-year {
    color: hsl(38, 53%, 30%);
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 18px;
  }
  
  .mission-card {
    background-color: #f9f5ed;
    border-radius: 8px;
    padding: 30px;
    margin-top: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border-left: 4px solid hsl(38, 53%, 45%);
  }
  
  .values-list {
    list-style: none;
    padding-left: 0;
    margin-top: 25px;
  }
  
  .values-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 15px;
    font-size: 16px;
  }
  
  .values-list li:before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 10px;
    height: 10px;
    background-color: hsl(38, 53%, 45%);
    border-radius: 50%;
  }
  
  @media (max-width: 768px) {
    .timeline:before {
      left: 20px;
    }
    
    .timeline-item:nth-child(odd),
    .timeline-item:nth-child(even) {
      padding-left: 50px;
      padding-right: 0;
      text-align: left;
      margin-left: 0;
    }
    
    .timeline-item:nth-child(odd) .timeline-dot,
    .timeline-item:nth-child(even) .timeline-dot {
      left: 11px;
      right: auto;
    }
  }

.advantages-section {
        padding: 80px 0;
        background-color: #fff;
    }
    
    .advantages-section h2 {
        color: hsl(38, 53%, 30%);
        margin-bottom: 50px;
        font-weight: 700;
        position: relative;
    }
    
    .advantages-section h2:after {
        content: '';
        position: absolute;
        width: 80px;
        height: 3px;
        background-color: hsl(38, 53%, 45%);
        bottom: -15px;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .advantage-card {
        padding: 30px;
        border-radius: 8px;
        margin-bottom: 30px;
        transition: all 0.3s ease;
        background-color: #fff;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        height: 100%;
        border-left: 5px solid transparent;
    }
    
    .advantage-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        border-left: 5px solid hsl(38, 53%, 45%);
    }
    
    .advantage-icon {
        font-size: 2.5rem;
        color: hsl(38, 53%, 45%);
        margin-bottom: 20px;
        display: inline-block;
    }
    
    .advantage-title {
        font-size: 1.4rem;
        font-weight: 600;
        margin-bottom: 15px;
        color: hsl(38, 53%, 30%);
    }
    
    .advantage-text {
        color: #666;
        line-height: 1.6;
    }
    
    .advantage-right {
        flex-direction: row-reverse;
    }
    
    @media (max-width: 767.98px) {
        .advantage-row {
            margin-bottom: 0;
        }
        
        .advantage-card {
            margin-bottom: 25px;
        }
    }

.statistics-section {
        background-color: hsl(38, 53%, 95%);
        padding: 80px 0;
    }
    
    .statistics-section h2 {
        color: hsl(38, 53%, 30%);
        text-align: center;
        margin-bottom: 50px;
        font-weight: bold;
        position: relative;
    }
    
    .statistics-section h2:after {
        content: "";
        position: absolute;
        width: 80px;
        height: 3px;
        background-color: hsl(38, 53%, 45%);
        bottom: -15px;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .stat-circle {
        width: 150px;
        height: 150px;
        border-radius: 50%;
        border: 8px solid hsl(38, 53%, 45%);
        margin: 0 auto 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        transition: transform 0.3s ease;
    }
    
    .stat-circle:hover {
        transform: scale(1.05);
        border-color: hsl(38, 53%, 30%);
    }
    
    .stat-number {
        font-size: 32px;
        font-weight: bold;
        color: hsl(38, 53%, 30%);
    }
    
    .stat-title {
        text-align: center;
        font-weight: 600;
        color: hsl(38, 53%, 45%);
        margin-bottom: 5px;
    }
    
    .stat-description {
        text-align: center;
        color: #666;
        font-size: 0.9rem;
    }
    
    .stat-item {
        margin-bottom: 40px;
    }
    
    .stat-icon {
        color: hsl(38, 53%, 45%);
        font-size: 24px;
        margin-bottom: 10px;
        display: block;
        text-align: center;
    }

:root {
        --primary-color: hsl(38, 53%, 45%);
        --secondary-color: hsl(38, 53%, 30%);
        --accent-color: hsl(38, 53%, 70%);
    }

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

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

    footer p {
        line-height: 1.6;
    }

    footer a {
        color: var(--accent-color);
        text-decoration: none;
        transition: color 0.3s ease;
    }

    footer a:hover {
        color: white;
        text-decoration: underline;
    }

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

    footer .contact-info i {
        margin-right: 0.5rem;
        color: var(--accent-color);
    }

    footer hr {
        border-color: rgba(255, 255, 255, 0.1);
    }

    .cookie-notice {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background-color: var(--secondary-color);
        color: white;
        padding: 1rem 0;
        z-index: 1000;
        box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
        display: none;
    }

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

    .cookie-btn {
        background-color: var(--primary-color);
        color: white;
        border: none;
        padding: 0.5rem 1.2rem;
        border-radius: 4px;
        font-weight: 500;
        transition: all 0.3s ease;
    }

    .cookie-btn:hover {
        background-color: var(--accent-color);
        color: var(--secondary-color);
        transform: translateY(-2px);
    }

    .cookie-btn.outline {
        background-color: transparent;
        border: 1px solid var(--accent-color);
    }

    .cookie-btn.outline:hover {
        background-color: var(--accent-color);
        color: var(--secondary-color);
    }

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

:root {
            --primary-color: hsl(38, 53%, 45%);
            --secondary-color: hsl(38, 53%, 30%);
            --accent-color: hsl(38, 53%, 70%);
        }
        
        body {
            font-family: 'Montserrat', sans-serif;
        }
        
        .navbar {
            background-color: white;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        .navbar-brand {
            font-weight: 700;
            color: var(--primary-color);
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .navbar-brand img {
            transition: transform 0.3s ease;
        }
        
        .navbar-brand:hover img {
            transform: rotate(10deg);
        }
        
        .nav-link {
            color: var(--secondary-color);
            font-weight: 500;
            position: relative;
            margin: 0 5px;
        }
        
        .nav-link:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: var(--primary-color);
            transition: width 0.3s ease;
        }
        
        .nav-link:hover:after {
            width: 100%;
        }
        
        .nav-link.active {
            color: var(--primary-color);
            font-weight: 600;
        }
        
        .nav-link.active:after {
            width: 100%;
        }
        
        .navbar-toggler {
            border: none;
            padding: 0;
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='hsl(38, 53%, 45%)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }

.privacy-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 20px;
        font-family: 'Arial', sans-serif;
        line-height: 1.6;
        color: #333;
    }
    .privacy-title {
        color: #1a365d;
        border-bottom: 2px solid #e2e8f0;
        padding-bottom: 10px;
        margin-bottom: 30px;
    }
    .privacy-section {
        margin-bottom: 30px;
    }
    .privacy-section h2 {
        color: #2c5282;
        margin-top: 25px;
        margin-bottom: 15px;
        font-size: 1.5rem;
    }
    .privacy-section p {
        margin-bottom: 15px;
        text-align: justify;
    }
    .privacy-section ul {
        margin-left: 20px;
        margin-bottom: 15px;
    }
    .privacy-section li {
        margin-bottom: 8px;
    }
    .privacy-date {
        font-style: italic;
        margin-top: 40px;
        text-align: right;
        color: #718096;
    }
    .highlight {
        background-color: #f8f9fa;
        padding: 15px;
        border-left: 4px solid #3182ce;
        margin-bottom: 20px;
    }

:root {
        --primary-color: hsl(38, 53%, 45%);
        --secondary-color: hsl(38, 53%, 30%);
        --accent-color: hsl(38, 53%, 70%);
    }

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

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

    footer p {
        line-height: 1.6;
    }

    footer a {
        color: var(--accent-color);
        text-decoration: none;
        transition: color 0.3s ease;
    }

    footer a:hover {
        color: white;
        text-decoration: underline;
    }

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

    footer .contact-info i {
        margin-right: 0.5rem;
        color: var(--accent-color);
    }

    footer hr {
        border-color: rgba(255, 255, 255, 0.1);
    }

    .cookie-notice {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background-color: var(--secondary-color);
        color: white;
        padding: 1rem 0;
        z-index: 1000;
        box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
        display: none;
    }

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

    .cookie-btn {
        background-color: var(--primary-color);
        color: white;
        border: none;
        padding: 0.5rem 1.2rem;
        border-radius: 4px;
        font-weight: 500;
        transition: all 0.3s ease;
    }

    .cookie-btn:hover {
        background-color: var(--accent-color);
        color: var(--secondary-color);
        transform: translateY(-2px);
    }

    .cookie-btn.outline {
        background-color: transparent;
        border: 1px solid var(--accent-color);
    }

    .cookie-btn.outline:hover {
        background-color: var(--accent-color);
        color: var(--secondary-color);
    }

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

:root {
            --primary-color: hsl(38, 53%, 45%);
            --secondary-color: hsl(38, 53%, 30%);
            --accent-color: hsl(38, 53%, 70%);
        }
        
        body {
            font-family: 'Montserrat', sans-serif;
        }
        
        .navbar {
            background-color: white;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        .navbar-brand {
            font-weight: 700;
            color: var(--primary-color);
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .navbar-brand img {
            transition: transform 0.3s ease;
        }
        
        .navbar-brand:hover img {
            transform: rotate(10deg);
        }
        
        .nav-link {
            color: var(--secondary-color);
            font-weight: 500;
            position: relative;
            margin: 0 5px;
        }
        
        .nav-link:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: var(--primary-color);
            transition: width 0.3s ease;
        }
        
        .nav-link:hover:after {
            width: 100%;
        }
        
        .nav-link.active {
            color: var(--primary-color);
            font-weight: 600;
        }
        
        .nav-link.active:after {
            width: 100%;
        }
        
        .navbar-toggler {
            border: none;
            padding: 0;
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='hsl(38, 53%, 45%)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }

.cookies-policy {
        font-family: 'Arial', sans-serif;
        max-width: 1200px;
        margin: 0 auto;
        padding: 20px;
        color: #333;
        line-height: 1.6;
    }
    .cookies-policy h1 {
        color: #0056b3;
        font-size: 2.2em;
        margin-bottom: 20px;
        text-align: center;
        border-bottom: 2px solid #eaeaea;
        padding-bottom: 15px;
    }
    .cookies-policy h2 {
        color: #0056b3;
        font-size: 1.5em;
        margin-top: 30px;
        margin-bottom: 15px;
        border-left: 4px solid #0056b3;
        padding-left: 10px;
    }
    .cookies-policy p {
        margin-bottom: 15px;
        text-align: justify;
    }
    .cookies-policy ul, .cookies-policy ol {
        margin-left: 20px;
        margin-bottom: 15px;
    }
    .cookies-policy li {
        margin-bottom: 8px;
    }
    .cookies-policy .highlight {
        background-color: #f8f9fa;
        padding: 15px;
        border-left: 4px solid #0056b3;
        margin-bottom: 20px;
    }
    .cookies-policy .table-container {
        overflow-x: auto;
        margin-bottom: 20px;
    }
    .cookies-policy table {
        width: 100%;
        border-collapse: collapse;
        margin-bottom: 15px;
    }
    .cookies-policy th, .cookies-policy td {
        border: 1px solid #ddd;
        padding: 12px;
        text-align: left;
    }
    .cookies-policy th {
        background-color: #f2f2f2;
        color: #0056b3;
    }
    .cookies-policy tr:nth-child(even) {
        background-color: #f9f9f9;
    }

:root {
        --primary-color: hsl(38, 53%, 45%);
        --secondary-color: hsl(38, 53%, 30%);
        --accent-color: hsl(38, 53%, 70%);
    }

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

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

    footer p {
        line-height: 1.6;
    }

    footer a {
        color: var(--accent-color);
        text-decoration: none;
        transition: color 0.3s ease;
    }

    footer a:hover {
        color: white;
        text-decoration: underline;
    }

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

    footer .contact-info i {
        margin-right: 0.5rem;
        color: var(--accent-color);
    }

    footer hr {
        border-color: rgba(255, 255, 255, 0.1);
    }

    .cookie-notice {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background-color: var(--secondary-color);
        color: white;
        padding: 1rem 0;
        z-index: 1000;
        box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
        display: none;
    }

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

    .cookie-btn {
        background-color: var(--primary-color);
        color: white;
        border: none;
        padding: 0.5rem 1.2rem;
        border-radius: 4px;
        font-weight: 500;
        transition: all 0.3s ease;
    }

    .cookie-btn:hover {
        background-color: var(--accent-color);
        color: var(--secondary-color);
        transform: translateY(-2px);
    }

    .cookie-btn.outline {
        background-color: transparent;
        border: 1px solid var(--accent-color);
    }

    .cookie-btn.outline:hover {
        background-color: var(--accent-color);
        color: var(--secondary-color);
    }

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

:root {
            --primary-color: hsl(38, 53%, 45%);
            --secondary-color: hsl(38, 53%, 30%);
            --accent-color: hsl(38, 53%, 70%);
        }
        
        body {
            font-family: 'Montserrat', sans-serif;
        }
        
        .navbar {
            background-color: white;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        .navbar-brand {
            font-weight: 700;
            color: var(--primary-color);
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .navbar-brand img {
            transition: transform 0.3s ease;
        }
        
        .navbar-brand:hover img {
            transform: rotate(10deg);
        }
        
        .nav-link {
            color: var(--secondary-color);
            font-weight: 500;
            position: relative;
            margin: 0 5px;
        }
        
        .nav-link:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: var(--primary-color);
            transition: width 0.3s ease;
        }
        
        .nav-link:hover:after {
            width: 100%;
        }
        
        .nav-link.active {
            color: var(--primary-color);
            font-weight: 600;
        }
        
        .nav-link.active:after {
            width: 100%;
        }
        
        .navbar-toggler {
            border: none;
            padding: 0;
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='hsl(38, 53%, 45%)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }

.contact-section {
        padding: 80px 0;
        background-color: #f8f5f0;
    }
    
    .contact-section h2 {
        color: hsl(38, 53%, 30%);
        font-weight: 700;
        margin-bottom: 1.5rem;
        position: relative;
        display: inline-block;
    }
    
    .contact-section h2:after {
        content: '';
        position: absolute;
        width: 70%;
        height: 3px;
        background-color: hsl(38, 53%, 45%);
        bottom: -10px;
        left: 0;
    }
    
    .contact-form {
        background-color: white;
        padding: 40px;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }
    
    .form-control {
        border: 2px solid hsl(38, 53%, 70%);
        padding: 12px;
        margin-bottom: 20px;
        border-radius: 6px;
        transition: all 0.3s ease;
    }
    
    .form-control:focus {
        border-color: hsl(38, 53%, 45%);
        box-shadow: 0 0 0 0.2rem hsla(38, 53%, 45%, 0.25);
    }
    
    .contact-btn {
        background-color: hsl(38, 53%, 45%);
        color: white;
        border: none;
        padding: 12px 30px;
        font-weight: 600;
        border-radius: 6px;
        transition: all 0.3s ease;
        width: 100%;
        text-transform: uppercase;
        letter-spacing: 1px;
    }
    
    .contact-btn:hover {
        background-color: hsl(38, 53%, 30%);
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }
    
    .contact-info {
        background-color: hsl(38, 53%, 45%);
        padding: 40px;
        border-radius: 10px;
        color: white;
        height: 100%;
    }
    
    .contact-info h3 {
        color: white;
        margin-bottom: 20px;
        font-weight: 600;
    }
    
    .contact-info p {
        margin-bottom: 15px;
        line-height: 1.6;
    }
    
    .hours-box {
        background-color: hsla(38, 53%, 30%, 0.7);
        padding: 15px;
        border-radius: 8px;
        margin-top: 20px;
    }
    
    .hours-box h4 {
        color: white;
        margin-bottom: 10px;
        font-size: 1.1rem;
    }
    
    .contact-icon {
        width: 50px;
        height: 50px;
        background-color: hsl(38, 53%, 70%);
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        margin-bottom: 20px;
    }
    
    .contact-icon i {
        color: hsl(38, 53%, 30%);
        font-size: 24px;
    }
    
    @media (max-width: 767px) {
        .contact-info {
            margin-top: 30px;
        }
    }

.about-section {
    padding: 80px 0;
    color: #333;
    background-color: #fff;
  }
  
  .about-section h2 {
    color: hsl(38, 53%, 30%);
    font-weight: 700;
    margin-bottom: 30px;
    position: relative;
  }
  
  .about-section h2:after {
    content: '';
    display: block;
    width: 70px;
    height: 3px;
    background-color: hsl(38, 53%, 45%);
    margin-top: 15px;
  }
  
  .about-section p {
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 16px;
  }
  
  .about-image {
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-bottom: 30px;
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
  }
  
  .about-image:hover {
    transform: scale(1.02);
  }
  
  .timeline {
    position: relative;
    margin: 50px 0;
  }
  
  .timeline:before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background-color: hsl(38, 53%, 70%);
  }
  
  .timeline-item {
    position: relative;
    margin-bottom: 50px;
  }
  
  .timeline-item:nth-child(odd) {
    padding-right: 50px;
    text-align: right;
  }
  
  .timeline-item:nth-child(even) {
    padding-left: 50px;
    margin-left: 50%;
  }
  
  .timeline-dot {
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: hsl(38, 53%, 45%);
    top: 0;
  }
  
  .timeline-item:nth-child(odd) .timeline-dot {
    right: -10px;
  }
  
  .timeline-item:nth-child(even) .timeline-dot {
    left: -10px;
  }
  
  .timeline-content {
    padding: 20px;
    background-color: #f9f5ed;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
  }
  
  .timeline-year {
    color: hsl(38, 53%, 30%);
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 18px;
  }
  
  .mission-card {
    background-color: #f9f5ed;
    border-radius: 8px;
    padding: 30px;
    margin-top: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border-left: 4px solid hsl(38, 53%, 45%);
  }
  
  .values-list {
    list-style: none;
    padding-left: 0;
    margin-top: 25px;
  }
  
  .values-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 15px;
    font-size: 16px;
  }
  
  .values-list li:before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 10px;
    height: 10px;
    background-color: hsl(38, 53%, 45%);
    border-radius: 50%;
  }
  
  @media (max-width: 768px) {
    .timeline:before {
      left: 20px;
    }
    
    .timeline-item:nth-child(odd),
    .timeline-item:nth-child(even) {
      padding-left: 50px;
      padding-right: 0;
      text-align: left;
      margin-left: 0;
    }
    
    .timeline-item:nth-child(odd) .timeline-dot,
    .timeline-item:nth-child(even) .timeline-dot {
      left: 11px;
      right: auto;
    }
  }

:root {
        --primary-color: hsl(38, 53%, 45%);
        --secondary-color: hsl(38, 53%, 30%);
        --accent-color: hsl(38, 53%, 70%);
    }

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

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

    footer p {
        line-height: 1.6;
    }

    footer a {
        color: var(--accent-color);
        text-decoration: none;
        transition: color 0.3s ease;
    }

    footer a:hover {
        color: white;
        text-decoration: underline;
    }

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

    footer .contact-info i {
        margin-right: 0.5rem;
        color: var(--accent-color);
    }

    footer hr {
        border-color: rgba(255, 255, 255, 0.1);
    }

    .cookie-notice {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background-color: var(--secondary-color);
        color: white;
        padding: 1rem 0;
        z-index: 1000;
        box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
        display: none;
    }

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

    .cookie-btn {
        background-color: var(--primary-color);
        color: white;
        border: none;
        padding: 0.5rem 1.2rem;
        border-radius: 4px;
        font-weight: 500;
        transition: all 0.3s ease;
    }

    .cookie-btn:hover {
        background-color: var(--accent-color);
        color: var(--secondary-color);
        transform: translateY(-2px);
    }

    .cookie-btn.outline {
        background-color: transparent;
        border: 1px solid var(--accent-color);
    }

    .cookie-btn.outline:hover {
        background-color: var(--accent-color);
        color: var(--secondary-color);
    }

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

:root {
            --primary-color: hsl(38, 53%, 45%);
            --secondary-color: hsl(38, 53%, 30%);
            --accent-color: hsl(38, 53%, 70%);
        }
        
        body {
            font-family: 'Montserrat', sans-serif;
        }
        
        .navbar {
            background-color: white;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        .navbar-brand {
            font-weight: 700;
            color: var(--primary-color);
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .navbar-brand img {
            transition: transform 0.3s ease;
        }
        
        .navbar-brand:hover img {
            transform: rotate(10deg);
        }
        
        .nav-link {
            color: var(--secondary-color);
            font-weight: 500;
            position: relative;
            margin: 0 5px;
        }
        
        .nav-link:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: var(--primary-color);
            transition: width 0.3s ease;
        }
        
        .nav-link:hover:after {
            width: 100%;
        }
        
        .nav-link.active {
            color: var(--primary-color);
            font-weight: 600;
        }
        
        .nav-link.active:after {
            width: 100%;
        }
        
        .navbar-toggler {
            border: none;
            padding: 0;
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='hsl(38, 53%, 45%)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }

.services-section {
        padding: 80px 0;
        background-color: #f9f6f0;
    }
    
    .section-title {
        color: hsl(38, 53%, 30%);
        margin-bottom: 50px;
        position: relative;
        font-weight: 700;
    }
    
    .section-title:after {
        content: '';
        position: absolute;
        bottom: -15px;
        left: 0;
        width: 60px;
        height: 4px;
        background-color: hsl(38, 53%, 45%);
    }
    
    .service-card {
        background-color: white;
        border-radius: 8px;
        overflow: hidden;
        transition: all 0.3s ease;
        margin-bottom: 30px;
        border: 1px solid #eee;
        box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    }
    
    .service-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        border-color: hsl(38, 53%, 45%);
    }
    
    .service-icon {
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: hsl(38, 53%, 70%);
        color: hsl(38, 53%, 30%);
        font-size: 2.5rem;
        height: 100%;
        padding: 25px;
    }
    
    .service-content {
        padding: 25px;
    }
    
    .service-title {
        color: hsl(38, 53%, 30%);
        margin-bottom: 15px;
        font-weight: 600;
    }
    
    .service-description {
        color: #666;
        margin-bottom: 15px;
        line-height: 1.6;
    }
    
    .service-price {
        font-weight: 700;
        color: hsl(38, 53%, 45%);
        font-size: 1.2rem;
        margin-top: 15px;
        display: block;
    }
    
    .service-conditions {
        font-size: 0.85rem;
        color: #888;
        margin-top: 10px;
        font-style: italic;
    }
    
    @media (max-width: 768px) {
        .service-icon {
            height: auto;
            padding: 15px;
        }
    }

.newsletter-section {
    background-color: hsl(38, 53%, 45%);
    padding: 4rem 2rem;
    border-radius: 0.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin: 5rem 0;
  }
  
  .newsletter-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .newsletter-header {
    color: #fff;
    margin-bottom: 2rem;
    font-weight: 700;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
  }
  
  .newsletter-text {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
  }
  
  .newsletter-form {
    background-color: hsl(38, 53%, 70%);
    padding: 2.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }
  
  .newsletter-form-title {
    color: hsl(38, 53%, 30%);
    margin-bottom: 1.5rem;
    font-weight: 600;
  }
  
  .newsletter-input {
    height: 50px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    font-size: 1rem;
  }
  
  .newsletter-input:focus {
    border-color: hsl(38, 53%, 30%);
    box-shadow: 0 0 0 0.25rem rgba(120, 87, 42, 0.25);
  }
  
  .newsletter-btn {
    background-color: hsl(38, 53%, 30%);
    border: none;
    color: white;
    height: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
  }
  
  .newsletter-btn:hover {
    background-color: hsl(38, 53%, 25%);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  }
  
  .newsletter-benefits {
    margin-top: 1.5rem;
  }
  
  .newsletter-benefits-item {
    margin-bottom: 0.5rem;
    color: hsl(38, 53%, 30%);
    font-weight: 500;
  }
  
  .newsletter-benefits-item i {
    color: hsl(38, 53%, 30%);
    margin-right: 0.5rem;
  }
  
  @media (max-width: 768px) {
    .newsletter-section {
      padding: 3rem 1.5rem;
    }
  }

.testimonials-section {
    padding: 5rem 0;
    background-color: #fff;
  }
  
  .testimonials-title {
    color: hsl(38, 53%, 30%);
    margin-bottom: 3rem;
    font-weight: 700;
    text-align: center;
    position: relative;
  }
  
  .testimonials-title:after {
    content: '';
    position: absolute;
    width: 80px;
    height: 4px;
    background-color: hsl(38, 53%, 45%);
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
  }
  
  .testimonial-card {
    height: 100%;
    padding: 2rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  }
  
  .testimonial-card.primary {
    background-color: hsl(38, 53%, 45%);
    color: white;
  }
  
  .testimonial-card.secondary {
    background-color: white;
    border: 2px solid hsl(38, 53%, 70%);
  }
  
  .testimonial-card.accent {
    background-color: hsl(38, 53%, 70%);
    color: hsl(38, 53%, 30%);
  }
  
  .testimonial-card .quote {
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.6;
  }
  
  .testimonial-card .author {
    font-weight: 700;
    margin-bottom: 0.2rem;
  }
  
  .testimonial-card .location {
    font-size: 0.9rem;
    opacity: 0.8;
  }
  
  .testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
  }
  
  .tall-card {
    grid-row: span 2;
  }
  
  .testimonial-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }
  
  @media (max-width: 992px) {
    .testimonial-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media (max-width: 576px) {
    .testimonial-grid {
      grid-template-columns: 1fr;
    }
  }

:root {
        --primary-color: hsl(38, 53%, 45%);
        --secondary-color: hsl(38, 53%, 30%);
        --accent-color: hsl(38, 53%, 70%);
    }

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

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

    footer p {
        line-height: 1.6;
    }

    footer a {
        color: var(--accent-color);
        text-decoration: none;
        transition: color 0.3s ease;
    }

    footer a:hover {
        color: white;
        text-decoration: underline;
    }

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

    footer .contact-info i {
        margin-right: 0.5rem;
        color: var(--accent-color);
    }

    footer hr {
        border-color: rgba(255, 255, 255, 0.1);
    }

    .cookie-notice {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background-color: var(--secondary-color);
        color: white;
        padding: 1rem 0;
        z-index: 1000;
        box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
        display: none;
    }

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

    .cookie-btn {
        background-color: var(--primary-color);
        color: white;
        border: none;
        padding: 0.5rem 1.2rem;
        border-radius: 4px;
        font-weight: 500;
        transition: all 0.3s ease;
    }

    .cookie-btn:hover {
        background-color: var(--accent-color);
        color: var(--secondary-color);
        transform: translateY(-2px);
    }

    .cookie-btn.outline {
        background-color: transparent;
        border: 1px solid var(--accent-color);
    }

    .cookie-btn.outline:hover {
        background-color: var(--accent-color);
        color: var(--secondary-color);
    }

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

:root {
            --primary-color: hsl(38, 53%, 45%);
            --secondary-color: hsl(38, 53%, 30%);
            --accent-color: hsl(38, 53%, 70%);
        }
        
        body {
            font-family: 'Montserrat', sans-serif;
        }
        
        .navbar {
            background-color: white;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        .navbar-brand {
            font-weight: 700;
            color: var(--primary-color);
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .navbar-brand img {
            transition: transform 0.3s ease;
        }
        
        .navbar-brand:hover img {
            transform: rotate(10deg);
        }
        
        .nav-link {
            color: var(--secondary-color);
            font-weight: 500;
            position: relative;
            margin: 0 5px;
        }
        
        .nav-link:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: var(--primary-color);
            transition: width 0.3s ease;
        }
        
        .nav-link:hover:after {
            width: 100%;
        }
        
        .nav-link.active {
            color: var(--primary-color);
            font-weight: 600;
        }
        
        .nav-link.active:after {
            width: 100%;
        }
        
        .navbar-toggler {
            border: none;
            padding: 0;
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='hsl(38, 53%, 45%)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }

.terms-container {
        font-family: 'Arial', sans-serif;
        max-width: 1000px;
        margin: 0 auto;
        padding: 20px;
        color: #333;
        line-height: 1.6;
    }
    .terms-container h1 {
        color: #1a365d;
        text-align: center;
        font-size: 28px;
        margin-bottom: 30px;
        border-bottom: 2px solid #e2e8f0;
        padding-bottom: 15px;
    }
    .terms-container h2 {
        color: #2c5282;
        font-size: 22px;
        margin-top: 25px;
        margin-bottom: 15px;
        border-left: 4px solid #4299e1;
        padding-left: 10px;
    }
    .terms-container p {
        margin-bottom: 15px;
        text-align: justify;
    }
    .terms-container ul {
        margin-left: 20px;
        margin-bottom: 20px;
    }
    .terms-container li {
        margin-bottom: 8px;
    }
    .terms-container .updated {
        font-style: italic;
        text-align: right;
        margin-top: 30px;
        font-size: 14px;
        color: #718096;
    }
    .terms-container .highlight {
        background-color: #ebf8ff;
        padding: 15px;
        border-radius: 5px;
        margin: 20px 0;
        border-left: 4px solid #4299e1;
    }

:root {
        --primary-color: hsl(38, 53%, 45%);
        --secondary-color: hsl(38, 53%, 30%);
        --accent-color: hsl(38, 53%, 70%);
    }

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

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

    footer p {
        line-height: 1.6;
    }

    footer a {
        color: var(--accent-color);
        text-decoration: none;
        transition: color 0.3s ease;
    }

    footer a:hover {
        color: white;
        text-decoration: underline;
    }

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

    footer .contact-info i {
        margin-right: 0.5rem;
        color: var(--accent-color);
    }

    footer hr {
        border-color: rgba(255, 255, 255, 0.1);
    }

    .cookie-notice {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background-color: var(--secondary-color);
        color: white;
        padding: 1rem 0;
        z-index: 1000;
        box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
        display: none;
    }

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

    .cookie-btn {
        background-color: var(--primary-color);
        color: white;
        border: none;
        padding: 0.5rem 1.2rem;
        border-radius: 4px;
        font-weight: 500;
        transition: all 0.3s ease;
    }

    .cookie-btn:hover {
        background-color: var(--accent-color);
        color: var(--secondary-color);
        transform: translateY(-2px);
    }

    .cookie-btn.outline {
        background-color: transparent;
        border: 1px solid var(--accent-color);
    }

    .cookie-btn.outline:hover {
        background-color: var(--accent-color);
        color: var(--secondary-color);
    }

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

:root {
            --primary-color: hsl(38, 53%, 45%);
            --secondary-color: hsl(38, 53%, 30%);
            --accent-color: hsl(38, 53%, 70%);
        }
        
        body {
            font-family: 'Montserrat', sans-serif;
        }
        
        .navbar {
            background-color: white;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        .navbar-brand {
            font-weight: 700;
            color: var(--primary-color);
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .navbar-brand img {
            transition: transform 0.3s ease;
        }
        
        .navbar-brand:hover img {
            transform: rotate(10deg);
        }
        
        .nav-link {
            color: var(--secondary-color);
            font-weight: 500;
            position: relative;
            margin: 0 5px;
        }
        
        .nav-link:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: var(--primary-color);
            transition: width 0.3s ease;
        }
        
        .nav-link:hover:after {
            width: 100%;
        }
        
        .nav-link.active {
            color: var(--primary-color);
            font-weight: 600;
        }
        
        .nav-link.active:after {
            width: 100%;
        }
        
        .navbar-toggler {
            border: none;
            padding: 0;
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='hsl(38, 53%, 45%)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }

.faq-section {
        padding: 4rem 0;
        background-color: #fff;
    }
    
    .faq-section h2 {
        color: hsl(38, 53%, 30%);
        margin-bottom: 2rem;
        font-weight: 700;
        text-align: center;
    }
    
    .faq-item {
        margin-bottom: 1rem;
        border: none;
        border-radius: 0.5rem;
        overflow: hidden;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }
    
    .faq-header {
        background-color: hsl(38, 53%, 70%);
        padding: 1rem 1.25rem;
        border: none;
        border-radius: 0.5rem;
        transition: all 0.3s ease;
        cursor: pointer;
        position: relative;
    }
    
    .faq-header:hover {
        background-color: hsl(38, 53%, 65%);
    }
    
    .faq-header h3 {
        color: hsl(38, 53%, 30%);
        font-size: 1.1rem;
        font-weight: 600;
        margin: 0;
        padding-right: 2rem;
    }
    
    .faq-header::after {
        content: '+';
        position: absolute;
        right: 1.25rem;
        top: 50%;
        transform: translateY(-50%);
        font-size: 1.5rem;
        color: hsl(38, 53%, 30%);
        transition: all 0.3s ease;
    }
    
    .faq-header.active::after {
        content: '−';
    }
    
    .faq-body {
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease, padding 0.3s ease;
    }
    
    .faq-body.active {
        max-height: 500px;
        padding: 1.25rem;
    }
    
    .faq-content {
        color: #333;
        line-height: 1.6;
    }
    
    @media (max-width: 768px) {
        .faq-section {
            padding: 3rem 1rem;
        }
        
        .faq-header h3 {
            font-size: 1rem;
        }
    }

.about-section {
    padding: 80px 0;
    color: #333;
    background-color: #fff;
  }
  
  .about-section h2 {
    color: hsl(38, 53%, 30%);
    font-weight: 700;
    margin-bottom: 30px;
    position: relative;
  }
  
  .about-section h2:after {
    content: '';
    display: block;
    width: 70px;
    height: 3px;
    background-color: hsl(38, 53%, 45%);
    margin-top: 15px;
  }
  
  .about-section p {
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 16px;
  }
  
  .about-image {
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-bottom: 30px;
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
  }
  
  .about-image:hover {
    transform: scale(1.02);
  }
  
  .timeline {
    position: relative;
    margin: 50px 0;
  }
  
  .timeline:before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background-color: hsl(38, 53%, 70%);
  }
  
  .timeline-item {
    position: relative;
    margin-bottom: 50px;
  }
  
  .timeline-item:nth-child(odd) {
    padding-right: 50px;
    text-align: right;
  }
  
  .timeline-item:nth-child(even) {
    padding-left: 50px;
    margin-left: 50%;
  }
  
  .timeline-dot {
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: hsl(38, 53%, 45%);
    top: 0;
  }
  
  .timeline-item:nth-child(odd) .timeline-dot {
    right: -10px;
  }
  
  .timeline-item:nth-child(even) .timeline-dot {
    left: -10px;
  }
  
  .timeline-content {
    padding: 20px;
    background-color: #f9f5ed;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
  }
  
  .timeline-year {
    color: hsl(38, 53%, 30%);
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 18px;
  }
  
  .mission-card {
    background-color: #f9f5ed;
    border-radius: 8px;
    padding: 30px;
    margin-top: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border-left: 4px solid hsl(38, 53%, 45%);
  }
  
  .values-list {
    list-style: none;
    padding-left: 0;
    margin-top: 25px;
  }
  
  .values-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 15px;
    font-size: 16px;
  }
  
  .values-list li:before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 10px;
    height: 10px;
    background-color: hsl(38, 53%, 45%);
    border-radius: 50%;
  }
  
  @media (max-width: 768px) {
    .timeline:before {
      left: 20px;
    }
    
    .timeline-item:nth-child(odd),
    .timeline-item:nth-child(even) {
      padding-left: 50px;
      padding-right: 0;
      text-align: left;
      margin-left: 0;
    }
    
    .timeline-item:nth-child(odd) .timeline-dot,
    .timeline-item:nth-child(even) .timeline-dot {
      left: 11px;
      right: auto;
    }
  }

.newsletter-section {
    background-color: hsl(38, 53%, 45%);
    padding: 4rem 2rem;
    border-radius: 0.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin: 5rem 0;
  }
  
  .newsletter-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .newsletter-header {
    color: #fff;
    margin-bottom: 2rem;
    font-weight: 700;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
  }
  
  .newsletter-text {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
  }
  
  .newsletter-form {
    background-color: hsl(38, 53%, 70%);
    padding: 2.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }
  
  .newsletter-form-title {
    color: hsl(38, 53%, 30%);
    margin-bottom: 1.5rem;
    font-weight: 600;
  }
  
  .newsletter-input {
    height: 50px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    font-size: 1rem;
  }
  
  .newsletter-input:focus {
    border-color: hsl(38, 53%, 30%);
    box-shadow: 0 0 0 0.25rem rgba(120, 87, 42, 0.25);
  }
  
  .newsletter-btn {
    background-color: hsl(38, 53%, 30%);
    border: none;
    color: white;
    height: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
  }
  
  .newsletter-btn:hover {
    background-color: hsl(38, 53%, 25%);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  }
  
  .newsletter-benefits {
    margin-top: 1.5rem;
  }
  
  .newsletter-benefits-item {
    margin-bottom: 0.5rem;
    color: hsl(38, 53%, 30%);
    font-weight: 500;
  }
  
  .newsletter-benefits-item i {
    color: hsl(38, 53%, 30%);
    margin-right: 0.5rem;
  }
  
  @media (max-width: 768px) {
    .newsletter-section {
      padding: 3rem 1.5rem;
    }
  }

:root {
        --primary-color: hsl(38, 53%, 45%);
        --secondary-color: hsl(38, 53%, 30%);
        --accent-color: hsl(38, 53%, 70%);
    }

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

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

    footer p {
        line-height: 1.6;
    }

    footer a {
        color: var(--accent-color);
        text-decoration: none;
        transition: color 0.3s ease;
    }

    footer a:hover {
        color: white;
        text-decoration: underline;
    }

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

    footer .contact-info i {
        margin-right: 0.5rem;
        color: var(--accent-color);
    }

    footer hr {
        border-color: rgba(255, 255, 255, 0.1);
    }

    .cookie-notice {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background-color: var(--secondary-color);
        color: white;
        padding: 1rem 0;
        z-index: 1000;
        box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
        display: none;
    }

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

    .cookie-btn {
        background-color: var(--primary-color);
        color: white;
        border: none;
        padding: 0.5rem 1.2rem;
        border-radius: 4px;
        font-weight: 500;
        transition: all 0.3s ease;
    }

    .cookie-btn:hover {
        background-color: var(--accent-color);
        color: var(--secondary-color);
        transform: translateY(-2px);
    }

    .cookie-btn.outline {
        background-color: transparent;
        border: 1px solid var(--accent-color);
    }

    .cookie-btn.outline:hover {
        background-color: var(--accent-color);
        color: var(--secondary-color);
    }

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

:root {
            --primary-color: hsl(38, 53%, 45%);
            --secondary-color: hsl(38, 53%, 30%);
            --accent-color: hsl(38, 53%, 70%);
        }
        
        body {
            font-family: 'Montserrat', sans-serif;
        }
        
        .navbar {
            background-color: white;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        .navbar-brand {
            font-weight: 700;
            color: var(--primary-color);
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .navbar-brand img {
            transition: transform 0.3s ease;
        }
        
        .navbar-brand:hover img {
            transform: rotate(10deg);
        }
        
        .nav-link {
            color: var(--secondary-color);
            font-weight: 500;
            position: relative;
            margin: 0 5px;
        }
        
        .nav-link:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: var(--primary-color);
            transition: width 0.3s ease;
        }
        
        .nav-link:hover:after {
            width: 100%;
        }
        
        .nav-link.active {
            color: var(--primary-color);
            font-weight: 600;
        }
        
        .nav-link.active:after {
            width: 100%;
        }
        
        .navbar-toggler {
            border: none;
            padding: 0;
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='hsl(38, 53%, 45%)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }

:root {
        --primary: hsl(38, 53%, 45%);
        --secondary: hsl(38, 53%, 30%);
        --accent: hsl(38, 53%, 70%);
    }
    
    .hero-section {
        position: relative;
        min-height: 100vh;
        overflow: hidden;
        background-color: #f8f8f8;
    }
    
    .hero-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 100%);
        z-index: 1;
    }
    
    .hero-content {
        position: relative;
        z-index: 2;
        padding: 6rem 0;
    }
    
    .hero-title {
        font-size: 3.5rem;
        font-weight: 800;
        color: white;
        text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        margin-bottom: 1.5rem;
        position: relative;
    }
    
    .hero-title::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: -10px;
        width: 80px;
        height: 4px;
        background-color: var(--primary);
    }
    
    .hero-subtitle {
        font-size: 1.8rem;
        color: var(--accent);
        margin-bottom: 2rem;
        font-weight: 500;
    }
    
    .hero-description {
        color: white;
        font-size: 1.1rem;
        line-height: 1.8;
        margin-bottom: 2.5rem;
        max-width: 90%;
    }
    
    .hero-image-container {
        position: relative;
        margin-top: -3rem;
    }
    
    .hero-image {
        width: 100%;
        height: auto;
        border-radius: 12px;
        box-shadow: 5px 15px 30px rgba(0,0,0,0.3);
        shape-outside: polygon(0 0, 100% 0, 100% 100%, 30% 100%);
        clip-path: polygon(0 0, 100% 0, 100% 90%, 85% 100%, 0 100%);
    }
    
    .hero-feature-list {
        list-style: none;
        padding-left: 0;
        margin-top: 2rem;
        margin-bottom: 2.5rem;
    }
    
    .hero-feature-list li {
        color: white;
        margin-bottom: 1rem;
        padding-left: 2rem;
        position: relative;
    }
    
    .hero-feature-list li i {
        color: var(--primary);
        position: absolute;
        left: 0;
        top: 4px;
    }
    
    .cta-primary {
        background-color: var(--primary);
        color: white;
        border: none;
        padding: 0.8rem 2rem;
        font-size: 1.2rem;
        border-radius: 50px;
        transition: all 0.3s ease;
        font-weight: 600;
        box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    }
    
    .cta-primary:hover {
        background-color: var(--secondary);
        transform: translateY(-3px);
        box-shadow: 0 6px 20px rgba(0,0,0,0.25);
    }
    
    .cta-secondary {
        background-color: transparent;
        color: var(--accent);
        border: 2px solid var(--accent);
        padding: 0.75rem 1.8rem;
        font-size: 1.1rem;
        border-radius: 50px;
        transition: all 0.3s ease;
        font-weight: 500;
        margin-left: 1rem;
    }
    
    .cta-secondary:hover {
        background-color: var(--accent);
        color: var(--secondary);
        transform: translateY(-3px);
    }
    
    .shape-bg {
        position: absolute;
        top: -5%;
        right: -10%;
        width: 40%;
        height: 80%;
        background-color: var(--accent);
        opacity: 0.1;
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
        z-index: 0;
    }
    
    .hero-badge {
        position: absolute;
        top: 20px;
        right: 20px;
        background-color: var(--primary);
        color: white;
        padding: 0.5rem 1rem;
        border-radius: 50px;
        font-weight: bold;
        z-index: 5;
        box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    }
    
    @media (max-width: 991px) {
        .hero-content {
            padding: 4rem 0;
        }
        
        .hero-title {
            font-size: 2.8rem;
        }
        
        .hero-subtitle {
            font-size: 1.5rem;
        }
        
        .hero-image-container {
            margin-top: 2rem;
        }
    }
    
    @media (max-width: 767px) {
        .hero-title {
            font-size: 2.2rem;
        }
        
        .hero-subtitle {
            font-size: 1.3rem;
        }
        
        .hero-description {
            font-size: 1rem;
        }
        
        .cta-secondary {
            margin-left: 0;
            margin-top: 1rem;
        }
    }

.faq-section {
        padding: 4rem 0;
        background-color: #fff;
    }
    
    .faq-section h2 {
        color: hsl(38, 53%, 30%);
        margin-bottom: 2rem;
        font-weight: 700;
        text-align: center;
    }
    
    .faq-item {
        margin-bottom: 1rem;
        border: none;
        border-radius: 0.5rem;
        overflow: hidden;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }
    
    .faq-header {
        background-color: hsl(38, 53%, 70%);
        padding: 1rem 1.25rem;
        border: none;
        border-radius: 0.5rem;
        transition: all 0.3s ease;
        cursor: pointer;
        position: relative;
    }
    
    .faq-header:hover {
        background-color: hsl(38, 53%, 65%);
    }
    
    .faq-header h3 {
        color: hsl(38, 53%, 30%);
        font-size: 1.1rem;
        font-weight: 600;
        margin: 0;
        padding-right: 2rem;
    }
    
    .faq-header::after {
        content: '+';
        position: absolute;
        right: 1.25rem;
        top: 50%;
        transform: translateY(-50%);
        font-size: 1.5rem;
        color: hsl(38, 53%, 30%);
        transition: all 0.3s ease;
    }
    
    .faq-header.active::after {
        content: '−';
    }
    
    .faq-body {
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease, padding 0.3s ease;
    }
    
    .faq-body.active {
        max-height: 500px;
        padding: 1.25rem;
    }
    
    .faq-content {
        color: #333;
        line-height: 1.6;
    }
    
    @media (max-width: 768px) {
        .faq-section {
            padding: 3rem 1rem;
        }
        
        .faq-header h3 {
            font-size: 1rem;
        }
    }

.contact-section {
        padding: 80px 0;
        background-color: #f8f5f0;
    }
    
    .contact-section h2 {
        color: hsl(38, 53%, 30%);
        font-weight: 700;
        margin-bottom: 1.5rem;
        position: relative;
        display: inline-block;
    }
    
    .contact-section h2:after {
        content: '';
        position: absolute;
        width: 70%;
        height: 3px;
        background-color: hsl(38, 53%, 45%);
        bottom: -10px;
        left: 0;
    }
    
    .contact-form {
        background-color: white;
        padding: 40px;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }
    
    .form-control {
        border: 2px solid hsl(38, 53%, 70%);
        padding: 12px;
        margin-bottom: 20px;
        border-radius: 6px;
        transition: all 0.3s ease;
    }
    
    .form-control:focus {
        border-color: hsl(38, 53%, 45%);
        box-shadow: 0 0 0 0.2rem hsla(38, 53%, 45%, 0.25);
    }
    
    .contact-btn {
        background-color: hsl(38, 53%, 45%);
        color: white;
        border: none;
        padding: 12px 30px;
        font-weight: 600;
        border-radius: 6px;
        transition: all 0.3s ease;
        width: 100%;
        text-transform: uppercase;
        letter-spacing: 1px;
    }
    
    .contact-btn:hover {
        background-color: hsl(38, 53%, 30%);
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }
    
    .contact-info {
        background-color: hsl(38, 53%, 45%);
        padding: 40px;
        border-radius: 10px;
        color: white;
        height: 100%;
    }
    
    .contact-info h3 {
        color: white;
        margin-bottom: 20px;
        font-weight: 600;
    }
    
    .contact-info p {
        margin-bottom: 15px;
        line-height: 1.6;
    }
    
    .hours-box {
        background-color: hsla(38, 53%, 30%, 0.7);
        padding: 15px;
        border-radius: 8px;
        margin-top: 20px;
    }
    
    .hours-box h4 {
        color: white;
        margin-bottom: 10px;
        font-size: 1.1rem;
    }
    
    .contact-icon {
        width: 50px;
        height: 50px;
        background-color: hsl(38, 53%, 70%);
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        margin-bottom: 20px;
    }
    
    .contact-icon i {
        color: hsl(38, 53%, 30%);
        font-size: 24px;
    }
    
    @media (max-width: 767px) {
        .contact-info {
            margin-top: 30px;
        }
    }

.about-section {
    padding: 80px 0;
    color: #333;
    background-color: #fff;
  }
  
  .about-section h2 {
    color: hsl(38, 53%, 30%);
    font-weight: 700;
    margin-bottom: 30px;
    position: relative;
  }
  
  .about-section h2:after {
    content: '';
    display: block;
    width: 70px;
    height: 3px;
    background-color: hsl(38, 53%, 45%);
    margin-top: 15px;
  }
  
  .about-section p {
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 16px;
  }
  
  .about-image {
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-bottom: 30px;
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
  }
  
  .about-image:hover {
    transform: scale(1.02);
  }
  
  .timeline {
    position: relative;
    margin: 50px 0;
  }
  
  .timeline:before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background-color: hsl(38, 53%, 70%);
  }
  
  .timeline-item {
    position: relative;
    margin-bottom: 50px;
  }
  
  .timeline-item:nth-child(odd) {
    padding-right: 50px;
    text-align: right;
  }
  
  .timeline-item:nth-child(even) {
    padding-left: 50px;
    margin-left: 50%;
  }
  
  .timeline-dot {
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: hsl(38, 53%, 45%);
    top: 0;
  }
  
  .timeline-item:nth-child(odd) .timeline-dot {
    right: -10px;
  }
  
  .timeline-item:nth-child(even) .timeline-dot {
    left: -10px;
  }
  
  .timeline-content {
    padding: 20px;
    background-color: #f9f5ed;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
  }
  
  .timeline-year {
    color: hsl(38, 53%, 30%);
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 18px;
  }
  
  .mission-card {
    background-color: #f9f5ed;
    border-radius: 8px;
    padding: 30px;
    margin-top: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border-left: 4px solid hsl(38, 53%, 45%);
  }
  
  .values-list {
    list-style: none;
    padding-left: 0;
    margin-top: 25px;
  }
  
  .values-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 15px;
    font-size: 16px;
  }
  
  .values-list li:before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 10px;
    height: 10px;
    background-color: hsl(38, 53%, 45%);
    border-radius: 50%;
  }
  
  @media (max-width: 768px) {
    .timeline:before {
      left: 20px;
    }
    
    .timeline-item:nth-child(odd),
    .timeline-item:nth-child(even) {
      padding-left: 50px;
      padding-right: 0;
      text-align: left;
      margin-left: 0;
    }
    
    .timeline-item:nth-child(odd) .timeline-dot,
    .timeline-item:nth-child(even) .timeline-dot {
      left: 11px;
      right: auto;
    }
  }

.newsletter-section {
    background-color: hsl(38, 53%, 45%);
    padding: 4rem 2rem;
    border-radius: 0.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin: 5rem 0;
  }
  
  .newsletter-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .newsletter-header {
    color: #fff;
    margin-bottom: 2rem;
    font-weight: 700;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
  }
  
  .newsletter-text {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
  }
  
  .newsletter-form {
    background-color: hsl(38, 53%, 70%);
    padding: 2.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }
  
  .newsletter-form-title {
    color: hsl(38, 53%, 30%);
    margin-bottom: 1.5rem;
    font-weight: 600;
  }
  
  .newsletter-input {
    height: 50px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    font-size: 1rem;
  }
  
  .newsletter-input:focus {
    border-color: hsl(38, 53%, 30%);
    box-shadow: 0 0 0 0.25rem rgba(120, 87, 42, 0.25);
  }
  
  .newsletter-btn {
    background-color: hsl(38, 53%, 30%);
    border: none;
    color: white;
    height: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
  }
  
  .newsletter-btn:hover {
    background-color: hsl(38, 53%, 25%);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  }
  
  .newsletter-benefits {
    margin-top: 1.5rem;
  }
  
  .newsletter-benefits-item {
    margin-bottom: 0.5rem;
    color: hsl(38, 53%, 30%);
    font-weight: 500;
  }
  
  .newsletter-benefits-item i {
    color: hsl(38, 53%, 30%);
    margin-right: 0.5rem;
  }
  
  @media (max-width: 768px) {
    .newsletter-section {
      padding: 3rem 1.5rem;
    }
  }

.statistics-section {
        background-color: hsl(38, 53%, 95%);
        padding: 80px 0;
    }
    
    .statistics-section h2 {
        color: hsl(38, 53%, 30%);
        text-align: center;
        margin-bottom: 50px;
        font-weight: bold;
        position: relative;
    }
    
    .statistics-section h2:after {
        content: "";
        position: absolute;
        width: 80px;
        height: 3px;
        background-color: hsl(38, 53%, 45%);
        bottom: -15px;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .stat-circle {
        width: 150px;
        height: 150px;
        border-radius: 50%;
        border: 8px solid hsl(38, 53%, 45%);
        margin: 0 auto 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        transition: transform 0.3s ease;
    }
    
    .stat-circle:hover {
        transform: scale(1.05);
        border-color: hsl(38, 53%, 30%);
    }
    
    .stat-number {
        font-size: 32px;
        font-weight: bold;
        color: hsl(38, 53%, 30%);
    }
    
    .stat-title {
        text-align: center;
        font-weight: 600;
        color: hsl(38, 53%, 45%);
        margin-bottom: 5px;
    }
    
    .stat-description {
        text-align: center;
        color: #666;
        font-size: 0.9rem;
    }
    
    .stat-item {
        margin-bottom: 40px;
    }
    
    .stat-icon {
        color: hsl(38, 53%, 45%);
        font-size: 24px;
        margin-bottom: 10px;
        display: block;
        text-align: center;
    }

.services-section {
        padding: 80px 0;
        background-color: #f9f6f0;
    }
    
    .section-title {
        color: hsl(38, 53%, 30%);
        margin-bottom: 50px;
        position: relative;
        font-weight: 700;
    }
    
    .section-title:after {
        content: '';
        position: absolute;
        bottom: -15px;
        left: 0;
        width: 60px;
        height: 4px;
        background-color: hsl(38, 53%, 45%);
    }
    
    .service-card {
        background-color: white;
        border-radius: 8px;
        overflow: hidden;
        transition: all 0.3s ease;
        margin-bottom: 30px;
        border: 1px solid #eee;
        box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    }
    
    .service-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        border-color: hsl(38, 53%, 45%);
    }
    
    .service-icon {
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: hsl(38, 53%, 70%);
        color: hsl(38, 53%, 30%);
        font-size: 2.5rem;
        height: 100%;
        padding: 25px;
    }
    
    .service-content {
        padding: 25px;
    }
    
    .service-title {
        color: hsl(38, 53%, 30%);
        margin-bottom: 15px;
        font-weight: 600;
    }
    
    .service-description {
        color: #666;
        margin-bottom: 15px;
        line-height: 1.6;
    }
    
    .service-price {
        font-weight: 700;
        color: hsl(38, 53%, 45%);
        font-size: 1.2rem;
        margin-top: 15px;
        display: block;
    }
    
    .service-conditions {
        font-size: 0.85rem;
        color: #888;
        margin-top: 10px;
        font-style: italic;
    }
    
    @media (max-width: 768px) {
        .service-icon {
            height: auto;
            padding: 15px;
        }
    }

.advantages-section {
        padding: 80px 0;
        background-color: #fff;
    }
    
    .advantages-section h2 {
        color: hsl(38, 53%, 30%);
        margin-bottom: 50px;
        font-weight: 700;
        position: relative;
    }
    
    .advantages-section h2:after {
        content: '';
        position: absolute;
        width: 80px;
        height: 3px;
        background-color: hsl(38, 53%, 45%);
        bottom: -15px;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .advantage-card {
        padding: 30px;
        border-radius: 8px;
        margin-bottom: 30px;
        transition: all 0.3s ease;
        background-color: #fff;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        height: 100%;
        border-left: 5px solid transparent;
    }
    
    .advantage-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        border-left: 5px solid hsl(38, 53%, 45%);
    }
    
    .advantage-icon {
        font-size: 2.5rem;
        color: hsl(38, 53%, 45%);
        margin-bottom: 20px;
        display: inline-block;
    }
    
    .advantage-title {
        font-size: 1.4rem;
        font-weight: 600;
        margin-bottom: 15px;
        color: hsl(38, 53%, 30%);
    }
    
    .advantage-text {
        color: #666;
        line-height: 1.6;
    }
    
    .advantage-right {
        flex-direction: row-reverse;
    }
    
    @media (max-width: 767.98px) {
        .advantage-row {
            margin-bottom: 0;
        }
        
        .advantage-card {
            margin-bottom: 25px;
        }
    }

.testimonials-section {
    padding: 5rem 0;
    background-color: #fff;
  }
  
  .testimonials-title {
    color: hsl(38, 53%, 30%);
    margin-bottom: 3rem;
    font-weight: 700;
    text-align: center;
    position: relative;
  }
  
  .testimonials-title:after {
    content: '';
    position: absolute;
    width: 80px;
    height: 4px;
    background-color: hsl(38, 53%, 45%);
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
  }
  
  .testimonial-card {
    height: 100%;
    padding: 2rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  }
  
  .testimonial-card.primary {
    background-color: hsl(38, 53%, 45%);
    color: white;
  }
  
  .testimonial-card.secondary {
    background-color: white;
    border: 2px solid hsl(38, 53%, 70%);
  }
  
  .testimonial-card.accent {
    background-color: hsl(38, 53%, 70%);
    color: hsl(38, 53%, 30%);
  }
  
  .testimonial-card .quote {
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.6;
  }
  
  .testimonial-card .author {
    font-weight: 700;
    margin-bottom: 0.2rem;
  }
  
  .testimonial-card .location {
    font-size: 0.9rem;
    opacity: 0.8;
  }
  
  .testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
  }
  
  .tall-card {
    grid-row: span 2;
  }
  
  .testimonial-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }
  
  @media (max-width: 992px) {
    .testimonial-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media (max-width: 576px) {
    .testimonial-grid {
      grid-template-columns: 1fr;
    }
  }

:root {
        --primary-color: hsl(38, 53%, 45%);
        --secondary-color: hsl(38, 53%, 30%);
        --accent-color: hsl(38, 53%, 70%);
    }

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

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

    footer p {
        line-height: 1.6;
    }

    footer a {
        color: var(--accent-color);
        text-decoration: none;
        transition: color 0.3s ease;
    }

    footer a:hover {
        color: white;
        text-decoration: underline;
    }

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

    footer .contact-info i {
        margin-right: 0.5rem;
        color: var(--accent-color);
    }

    footer hr {
        border-color: rgba(255, 255, 255, 0.1);
    }

    .cookie-notice {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background-color: var(--secondary-color);
        color: white;
        padding: 1rem 0;
        z-index: 1000;
        box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
        display: none;
    }

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

    .cookie-btn {
        background-color: var(--primary-color);
        color: white;
        border: none;
        padding: 0.5rem 1.2rem;
        border-radius: 4px;
        font-weight: 500;
        transition: all 0.3s ease;
    }

    .cookie-btn:hover {
        background-color: var(--accent-color);
        color: var(--secondary-color);
        transform: translateY(-2px);
    }

    .cookie-btn.outline {
        background-color: transparent;
        border: 1px solid var(--accent-color);
    }

    .cookie-btn.outline:hover {
        background-color: var(--accent-color);
        color: var(--secondary-color);
    }

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