:root {
            --primary-color: hsl(177, 41%, 46%);
            --secondary-color: hsl(177, 41%, 31%);
            --accent-color: hsl(177, 41%, 71%);
        }
        
        body {
            font-family: 'Crimson Text', serif;
            color: #333;
            line-height: 1.7;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Work Sans', sans-serif;
            font-weight: 600;
        }
        
        .navbar {
            background-color: #fff;
            box-shadow: 0 2px 10px rgba(0,0,0,0.08);
            padding: 1rem 0;
        }
        
        .navbar-brand {
            display: flex;
            align-items: center;
            gap: 12px;
            font-family: 'Work Sans', sans-serif;
            font-weight: 600;
            font-size: 1.4rem;
            color: var(--secondary-color);
        }
        
        .navbar-brand:hover {
            color: var(--primary-color);
        }
        
        .navbar-nav .nav-link {
            font-family: 'Work Sans', sans-serif;
            font-weight: 500;
            color: #333;
            padding: 0.5rem 1rem;
            transition: color 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--primary-color);
        }
        
        .navbar-toggler {
            border: none;
            padding: 0.5rem;
        }
        
        .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='rgba%2851, 51, 51, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }

@import url('https://fonts.googleapis.com/css2?family=Work+Sans:wght@400;600;700&family=Crimson+Text:wght@400;600;700&display=swap');

  #about {
    font-family: 'Crimson Text', serif;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 80px 0;
    color: #333;
  }

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

  #about .section-title {
    font-family: 'Work Sans', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: hsl(177, 41%, 31%);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
  }

  #about .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: hsl(177, 41%, 46%);
    border-radius: 2px;
  }

  #about .section-subtitle {
    font-size: 1.3rem;
    color: #666;
    max-width: 700px;
    margin: 30px auto 0;
    line-height: 1.7;
  }

  #about .about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 60px;
  }

  #about .about-text {
    font-size: 1.1rem;
    line-height: 1.9;
    color: #444;
  }

  #about .about-text p {
    margin-bottom: 20px;
  }

  #about .about-text p:last-child {
    margin-bottom: 0;
  }

  #about .about-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
  }

  #about .about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease;
  }

  #about .about-image:hover img {
    transform: scale(1.05);
  }

  #about .values-section {
    background: #ffffff;
    border-radius: 16px;
    padding: 50px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    margin-top: 60px;
  }

  #about .values-title {
    font-family: 'Work Sans', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: hsl(177, 41%, 31%);
    margin-bottom: 40px;
    text-align: center;
  }

  #about .values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
  }

  #about .value-card {
    text-align: center;
    padding: 30px 20px;
    background: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
  }

  #about .value-card:hover {
    background: #ffffff;
    border-color: hsl(177, 41%, 71%);
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  }

  #about .value-icon {
    font-size: 3rem;
    color: hsl(177, 41%, 46%);
    margin-bottom: 20px;
  }

  #about .value-name {
    font-family: 'Work Sans', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: hsl(177, 41%, 31%);
    margin-bottom: 12px;
  }

  #about .value-description {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
  }

  #about .mission-section {
    margin-top: 60px;
    text-align: center;
    padding: 50px 30px;
    background: linear-gradient(135deg, hsl(177, 41%, 46%) 0%, hsl(177, 41%, 31%) 100%);
    border-radius: 16px;
    color: #ffffff;
  }

  #about .mission-title {
    font-family: 'Work Sans', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 25px;
  }

  #about .mission-text {
    font-size: 1.2rem;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto;
  }

  @media (max-width: 992px) {
    #about {
      padding: 60px 0;
    }

    #about .section-title {
      font-size: 2.3rem;
    }

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

    #about .values-grid {
      grid-template-columns: 1fr;
      gap: 25px;
    }

    #about .values-section {
      padding: 40px 30px;
    }
  }

  @media (max-width: 768px) {
    #about .section-title {
      font-size: 2rem;
    }

    #about .section-subtitle {
      font-size: 1.1rem;
    }

    #about .values-section {
      padding: 30px 20px;
    }

    #about .mission-section {
      padding: 40px 20px;
    }

    #about .mission-title {
      font-size: 1.8rem;
    }

    #about .mission-text {
      font-size: 1.1rem;
    }
  }

.portfolio-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

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

.portfolio-section .section-title {
    font-family: 'Work Sans', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.portfolio-section .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: hsl(177, 41%, 46%);
    border-radius: 2px;
}

.portfolio-section .section-subtitle {
    font-family: 'Crimson Text', serif;
    font-size: 1.2rem;
    color: #666;
    margin-top: 25px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.filter-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 50px;
}

.filter-btn {
    font-family: 'Work Sans', sans-serif;
    padding: 10px 28px;
    border: 2px solid hsl(177, 41%, 46%);
    background: transparent;
    color: hsl(177, 41%, 31%);
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: hsl(177, 41%, 46%);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(72, 158, 151, 0.3);
}

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

.portfolio-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    background: #fff;
    cursor: pointer;
}

.portfolio-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(72, 158, 151, 0.25);
}

.portfolio-image {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.portfolio-item:hover .portfolio-image {
    transform: scale(1.08);
}

.portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(34, 34, 34, 0.95) 0%, rgba(34, 34, 34, 0.7) 70%, transparent 100%);
    padding: 25px;
    transform: translateY(0);
    transition: all 0.4s ease;
}

.portfolio-item:hover .portfolio-overlay {
    background: linear-gradient(to top, rgba(34, 34, 34, 0.98) 0%, rgba(34, 34, 34, 0.85) 100%);
}

.portfolio-category {
    font-family: 'Work Sans', sans-serif;
    font-size: 0.85rem;
    color: hsl(177, 41%, 71%);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
    margin-bottom: 8px;
}

.portfolio-title {
    font-family: 'Work Sans', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.portfolio-description {
    font-family: 'Crimson Text', serif;
    font-size: 1rem;
    color: #e0e0e0;
    line-height: 1.6;
    margin-bottom: 15px;
}

.view-details-btn {
    font-family: 'Work Sans', sans-serif;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: hsl(177, 41%, 71%);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.view-details-btn:hover {
    color: #fff;
    gap: 12px;
}

.modal-content {
    border: none;
    border-radius: 15px;
    overflow: hidden;
}

.modal-header {
    background: hsl(177, 41%, 46%);
    color: #fff;
    border: none;
    padding: 25px 30px;
}

.modal-title {
    font-family: 'Work Sans', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
}

.btn-close {
    filter: brightness(0) invert(1);
}

.modal-body {
    padding: 35px;
}

.modal-portfolio-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 25px;
}

.modal-category {
    font-family: 'Work Sans', sans-serif;
    display: inline-block;
    background: hsl(177, 41%, 71%);
    color: hsl(177, 41%, 31%);
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.modal-description {
    font-family: 'Crimson Text', serif;
    font-size: 1.1rem;
    color: #444;
    line-height: 1.8;
    margin-bottom: 25px;
}

.modal-details {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    margin-top: 20px;
}

.modal-details h5 {
    font-family: 'Work Sans', sans-serif;
    font-size: 1.2rem;
    color: #222;
    margin-bottom: 15px;
    font-weight: 700;
}

.modal-details ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.modal-details li {
    font-family: 'Crimson Text', serif;
    font-size: 1rem;
    color: #555;
    padding: 8px 0;
    border-bottom: 1px solid #e0e0e0;
}

.modal-details li:last-child {
    border-bottom: none;
}

.modal-details li strong {
    color: hsl(177, 41%, 31%);
    font-weight: 700;
}

@media (max-width: 768px) {
    .portfolio-section {
        padding: 60px 0;
    }

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

    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .portfolio-image {
        height: 280px;
    }

    .filter-buttons {
        gap: 10px;
    }

    .filter-btn {
        padding: 8px 20px;
        font-size: 0.85rem;
    }

    .modal-body {
        padding: 25px;
    }

    .modal-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .portfolio-section .section-title {
        font-size: 1.75rem;
    }

    .portfolio-title {
        font-size: 1.2rem;
    }

    .portfolio-description {
        font-size: 0.95rem;
    }
}

@import url('https://fonts.googleapis.com/css2?family=Work+Sans:wght@400;600;700&family=Crimson+Text:wght@400;600;700&display=swap');
@import url('https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css');

#advantages {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

#advantages::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: hsl(177, 41%, 71%);
    opacity: 0.05;
    border-radius: 50%;
    z-index: 0;
}

#advantages::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: hsl(177, 41%, 46%);
    opacity: 0.03;
    border-radius: 50%;
    z-index: 0;
}

.advantages-container {
    position: relative;
    z-index: 1;
}

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

.advantages-header h2 {
    font-family: 'Work Sans', sans-serif;
    font-weight: 700;
    font-size: 2.8rem;
    color: #222;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.advantages-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, hsl(177, 41%, 46%), hsl(177, 41%, 71%));
    border-radius: 2px;
}

.advantages-header p {
    font-family: 'Crimson Text', serif;
    font-size: 1.2rem;
    color: #555;
    max-width: 700px;
    margin: 30px auto 0;
    line-height: 1.8;
}

.advantage-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 35px 25px;
    height: 100%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.advantage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, hsl(177, 41%, 46%), hsl(177, 41%, 71%));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.advantage-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 35px rgba(69, 143, 138, 0.2);
    border-color: hsl(177, 41%, 71%);
}

.advantage-card:hover::before {
    transform: scaleX(1);
}

.advantage-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, hsl(177, 41%, 46%), hsl(177, 41%, 31%));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.4s ease;
    position: relative;
}

.advantage-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: hsl(177, 41%, 71%);
    border-radius: 50%;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.4s ease;
    z-index: -1;
}

.advantage-card:hover .advantage-icon {
    transform: scale(1.1) rotate(5deg);
}

.advantage-card:hover .advantage-icon::after {
    opacity: 0.3;
    transform: scale(1.3);
}

.advantage-icon i {
    font-size: 32px;
    color: #ffffff;
}

.advantage-card h3 {
    font-family: 'Work Sans', sans-serif;
    font-weight: 600;
    font-size: 1.35rem;
    color: #222;
    margin-bottom: 18px;
    text-align: center;
    transition: color 0.3s ease;
}

.advantage-card:hover h3 {
    color: hsl(177, 41%, 31%);
}

.advantage-card p {
    font-family: 'Crimson Text', serif;
    font-size: 1.05rem;
    color: #666;
    line-height: 1.75;
    text-align: center;
    margin: 0;
}

@media (max-width: 991px) {
    #advantages {
        padding: 60px 0;
    }
    
    .advantages-header h2 {
        font-size: 2.3rem;
    }
    
    .advantages-header p {
        font-size: 1.1rem;
    }
    
    .advantage-card {
        margin-bottom: 25px;
    }
}

@media (max-width: 767px) {
    #advantages {
        padding: 50px 0;
    }
    
    .advantages-header {
        margin-bottom: 40px;
    }
    
    .advantages-header h2 {
        font-size: 2rem;
    }
    
    .advantages-header p {
        font-size: 1rem;
    }
    
    .advantage-card {
        padding: 30px 20px;
    }
    
    .advantage-icon {
        width: 60px;
        height: 60px;
    }
    
    .advantage-icon i {
        font-size: 28px;
    }
    
    .advantage-card h3 {
        font-size: 1.2rem;
    }
}

@import url('https://fonts.googleapis.com/css2?family=Work+Sans:wght@400;600;700&family=Crimson+Text:wght@400;600;700&display=swap');

  #statistics {
    font-family: 'Crimson Text', serif;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
  }

  #statistics::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, hsl(177, 41%, 46%), hsl(177, 41%, 71%), hsl(177, 41%, 46%));
  }

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

  #statistics .section-title {
    font-family: 'Work Sans', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
  }

  #statistics .section-subtitle {
    font-size: 1.2rem;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
  }

  #statistics .stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
  }

  #statistics .stat-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
  }

  #statistics .stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, hsl(177, 41%, 46%), hsl(177, 41%, 71%));
    transform: scaleX(0);
    transition: transform 0.4s ease;
  }

  #statistics .stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
    border-color: hsl(177, 41%, 71%);
  }

  #statistics .stat-card:hover::before {
    transform: scaleX(1);
  }

  #statistics .stat-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, hsl(177, 41%, 46%), hsl(177, 41%, 71%));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #ffffff;
    transition: all 0.4s ease;
  }

  #statistics .stat-card:hover .stat-icon {
    transform: rotate(360deg) scale(1.1);
  }

  #statistics .stat-number {
    font-family: 'Work Sans', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: hsl(177, 41%, 31%);
    margin-bottom: 10px;
    line-height: 1;
  }

  #statistics .stat-label {
    font-size: 1.1rem;
    color: #666;
    font-weight: 600;
    margin-bottom: 8px;
  }

  #statistics .stat-context {
    font-size: 0.95rem;
    color: #888;
    font-style: italic;
  }

  #statistics .highlight-box {
    background: linear-gradient(135deg, hsl(177, 41%, 46%), hsl(177, 41%, 31%));
    border-radius: 15px;
    padding: 50px 40px;
    margin-top: 60px;
    text-align: center;
    color: #ffffff;
    position: relative;
    overflow: hidden;
  }

  #statistics .highlight-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: pulse 8s infinite;
  }

  @keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.2); opacity: 0.8; }
  }

  #statistics .highlight-content {
    position: relative;
    z-index: 1;
  }

  #statistics .highlight-title {
    font-family: 'Work Sans', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
  }

  #statistics .highlight-text {
    font-size: 1.15rem;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
  }

  @media (max-width: 768px) {
    #statistics {
      padding: 60px 0;
    }

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

    #statistics .section-subtitle {
      font-size: 1.05rem;
    }

    #statistics .stats-grid {
      grid-template-columns: 1fr;
      gap: 25px;
    }

    #statistics .stat-card {
      padding: 35px 25px;
    }

    #statistics .stat-number {
      font-size: 2.3rem;
    }

    #statistics .stat-icon {
      width: 70px;
      height: 70px;
      font-size: 1.7rem;
    }

    #statistics .highlight-box {
      padding: 40px 25px;
      margin-top: 40px;
    }

    #statistics .highlight-title {
      font-size: 1.6rem;
    }

    #statistics .highlight-text {
      font-size: 1.05rem;
    }
  }

  @media (max-width: 576px) {
    #statistics .section-title {
      font-size: 1.75rem;
    }

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

    #statistics .stat-label {
      font-size: 1rem;
    }
  }

footer {
  background: linear-gradient(135deg, hsl(177, 41%, 31%) 0%, hsl(177, 41%, 26%) 100%);
  color: #f8f9fa;
  padding: 60px 0 20px;
  font-family: 'Crimson Text', serif;
  margin-top: 80px;
}

footer h5 {
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 20px;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

footer p, footer li, footer a {
  color: #e9ecef;
  line-height: 1.8;
  font-size: 1rem;
}

footer a {
  text-decoration: none;
  transition: all 0.3s ease;
}

footer a:hover {
  color: hsl(177, 41%, 71%);
  padding-left: 5px;
}

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

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

.footer-brand {
  font-family: 'Work Sans', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 15px;
}

.footer-description {
  margin-bottom: 25px;
  font-size: 1.05rem;
  line-height: 1.7;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 12px;
}

.contact-item i {
  color: hsl(177, 41%, 71%);
  margin-right: 10px;
  margin-top: 3px;
  font-size: 1.1rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 40px;
  padding-top: 25px;
  text-align: center;
  color: #dee2e6;
  font-size: 0.95rem;
}

.policy-links {
  margin-top: 15px;
}

.policy-links a {
  color: #dee2e6;
  margin: 0 10px;
  font-size: 0.9rem;
}

.policy-links a:hover {
  color: hsl(177, 41%, 71%);
  padding-left: 0;
}

#cookieNotice {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #ffffff;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
  z-index: 9999;
  padding: 30px 0;
  border-top: 3px solid hsl(177, 41%, 46%);
  font-family: 'Crimson Text', serif;
}

#cookieNotice h4 {
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  color: #222;
  margin-bottom: 15px;
  font-size: 1.4rem;
}

#cookieNotice p {
  color: #555;
  margin-bottom: 20px;
  font-size: 1rem;
  line-height: 1.6;
}

.cookie-categories {
  margin: 20px 0;
  padding: 0;
  list-style: none;
}

.cookie-categories li {
  padding: 10px 0;
  color: #333;
  font-size: 0.95rem;
  border-bottom: 1px solid #e9ecef;
}

.cookie-categories li:last-child {
  border-bottom: none;
}

.cookie-categories strong {
  color: #222;
  font-weight: 600;
}

.cookie-required {
  color: hsl(177, 41%, 31%);
  font-size: 0.85rem;
  font-weight: 600;
  margin-left: 8px;
}

.cookie-optional {
  color: #6c757d;
  font-size: 0.85rem;
  font-style: italic;
  margin-left: 8px;
}

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

.cookie-btn {
  font-family: 'Work Sans', sans-serif;
  padding: 12px 28px;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}

.cookie-btn-accept {
  background: hsl(177, 41%, 46%);
  color: #ffffff;
}

.cookie-btn-accept:hover {
  background: hsl(177, 41%, 36%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.cookie-btn-reject {
  background: #6c757d;
  color: #ffffff;
}

.cookie-btn-reject:hover {
  background: #5a6268;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.cookie-btn-manage {
  background: transparent;
  color: hsl(177, 41%, 31%);
  border: 2px solid hsl(177, 41%, 46%);
}

.cookie-btn-manage:hover {
  background: hsl(177, 41%, 46%);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
  footer {
    padding: 40px 0 20px;
    text-align: center;
  }

  footer .row > div {
    margin-bottom: 30px;
  }

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

  .cookie-btn {
    width: 100%;
  }

  #cookieNotice {
    padding: 20px 0;
  }
}

.blog-page { padding: 4rem 0; }
.blog-page h1 { margin-bottom: 3rem; text-align: center; }
.blog-card { margin-bottom: 2rem; transition: transform 0.3s; overflow: hidden; }
.blog-card:hover { transform: translateY(-5px); }
.blog-card .card-img-top { height: 200px; object-fit: cover; }
.blog-meta { font-size: 0.9rem; color: #888; margin-bottom: 1rem; }

.article-content { max-width: 900px; margin: 0 auto; padding: 4rem 2rem; font-family: Crimson Text, sans-serif; }
.article-header { margin-bottom: 3rem; border-bottom: 2px solid hsl(177, 41%, 46%)20; padding-bottom: 2rem; }
.article-header h1 { font-size: 2.5rem; margin-bottom: 1rem; font-family: Work Sans, sans-serif; color: hsl(177, 41%, 31%); }
.article-meta { color: #666; font-size: 0.95rem; margin-bottom: 1.5rem; }
.article-meta i { color: hsl(177, 41%, 46%); }
.article-hero-img { width: 100%; height: auto; border-radius: 12px; margin-bottom: 2rem; box-shadow: 0 4px 15px rgba(0,0,0,0.1); }
.blog-article h2 { color: hsl(177, 41%, 31%); font-family: Work Sans, sans-serif; margin-top: 2rem; }
.blog-article h3 { color: hsl(177, 41%, 31%); font-family: Work Sans, sans-serif; }
.blog-article a { color: hsl(177, 41%, 46%); }
.blog-article a:hover { color: hsl(177, 41%, 71%); }
.blog-article ul, .blog-article ol { margin: 1rem 0; padding-left: 1.5rem; }
.blog-article blockquote { border-left: 4px solid hsl(177, 41%, 46%); padding-left: 1rem; margin: 1.5rem 0; font-style: italic; color: #555; }

.contact-section {
    font-family: 'Crimson Text', serif;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 80px 0;
}

.contact-section h2 {
    font-family: 'Work Sans', sans-serif;
    color: hsl(177, 41%, 31%);
    font-weight: 700;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact-section h3 {
    font-family: 'Work Sans', sans-serif;
    color: hsl(177, 41%, 31%);
    font-weight: 600;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.contact-intro {
    color: #555;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.contact-form-wrapper {
    background: #ffffff;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    margin-bottom: 40px;
}

.contact-form .form-label {
    font-family: 'Work Sans', sans-serif;
    color: #333;
    font-weight: 500;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.contact-form .form-control,
.contact-form .form-control:focus {
    font-family: 'Crimson Text', serif;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 1rem;
    transition: all 0.3s ease;
    color: #333;
    background: #ffffff;
}

.contact-form .form-control:focus {
    border-color: hsl(177, 41%, 46%);
    box-shadow: 0 0 0 0.2rem rgba(79, 159, 153, 0.15);
    outline: none;
}

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

.contact-form .required-mark {
    color: hsl(177, 41%, 46%);
    margin-left: 2px;
}

.contact-form .btn-submit {
    font-family: 'Work Sans', sans-serif;
    background: hsl(177, 41%, 46%);
    color: #ffffff;
    border: none;
    padding: 14px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.contact-form .btn-submit:hover {
    background: hsl(177, 41%, 31%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(79, 159, 153, 0.3);
}

.contact-info-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 35px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    height: 100%;
    transition: transform 0.3s ease;
}

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

.contact-info-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, hsl(177, 41%, 46%), hsl(177, 41%, 61%));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    color: #ffffff;
}

.contact-info-card h4 {
    font-family: 'Work Sans', sans-serif;
    color: hsl(177, 41%, 31%);
    font-weight: 600;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.contact-info-card p {
    color: #555;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.contact-info-card a {
    color: hsl(177, 41%, 46%);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.contact-info-card a:hover {
    color: hsl(177, 41%, 31%);
    text-decoration: underline;
}

.contact-info-card .address-text {
    color: #555;
    line-height: 1.8;
}

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

.hours-list li {
    padding: 0.4rem 0;
    color: #555;
    font-size: 1.05rem;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #f0f0f0;
}

.hours-list li:last-child {
    border-bottom: none;
}

.hours-list .day {
    font-weight: 500;
    color: #333;
}

.hours-list .time {
    color: hsl(177, 41%, 46%);
    font-weight: 500;
}

@media (max-width: 768px) {
    .contact-section {
        padding: 50px 0;
    }
    
    .contact-section h2 {
        font-size: 2rem;
    }
    
    .contact-section h3 {
        font-size: 1.5rem;
    }
    
    .contact-form-wrapper {
        padding: 25px;
    }
    
    .contact-info-card {
        margin-bottom: 20px;
        padding: 25px;
    }
}

@import url('https://fonts.googleapis.com/css2?family=Work+Sans:wght@400;500;600;700&family=Crimson+Text:wght@400;600;700&display=swap');

  :root {
    --primary-color: hsl(177, 41%, 46%);
    --secondary-color: hsl(177, 41%, 31%);
    --accent-color: hsl(177, 41%, 71%);
  }

  body {
    font-family: 'Crimson Text', serif;
    font-size: 1.125rem;
    line-height: 1.8;
    color: #333;
  }

  .policy-content h1,
  .policy-content h2,
  .policy-content h3,
  .policy-content h4,
  .policy-content h5,
  .policy-content h6 {
    font-family: 'Work Sans', sans-serif;
    font-weight: 600;
    color: var(--secondary-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
  }

  .policy-content h1 {
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid var(--accent-color);
  }

  .policy-content h2 {
    font-size: 2rem;
    margin-top: 2.5rem;
    color: var(--primary-color);
  }

  .policy-content h3 {
    font-size: 1.5rem;
    color: var(--secondary-color);
  }

  .policy-content a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
  }

  .policy-content a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
  }

  .policy-content ul,
  .policy-content ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
  }

  .policy-content li {
    margin-bottom: 0.75rem;
  }

  .policy-content strong {
    color: var(--secondary-color);
    font-weight: 700;
  }

  .intro-box {
    background: linear-gradient(135deg, var(--accent-color) 0%, hsl(177, 41%, 85%) 100%);
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    border-left: 5px solid var(--primary-color);
  }

  .contact-box {
    background-color: hsl(177, 41%, 95%);
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 2rem;
    border: 2px solid var(--accent-color);
  }

  .effective-date {
    font-style: italic;
    color: #666;
    margin-bottom: 2rem;
    font-size: 1rem;
  }

  .cookie-table {
    margin: 1.5rem 0;
  }

  .cookie-table th {
    background-color: var(--primary-color);
    color: white;
    font-family: 'Work Sans', sans-serif;
  }

  .cookie-table td {
    background-color: hsl(177, 41%, 97%);
  }

.faq-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    font-family: 'Crimson Text', serif;
}

.faq-section h2 {
    font-family: 'Work Sans', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 1rem;
    text-align: center;
}

.faq-section .lead-text {
    font-size: 1.2rem;
    color: #555;
    text-align: center;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.faq-accordion {
    max-width: 900px;
    margin: 0 auto;
}

.faq-accordion .accordion-item {
    border: none;
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    background: #ffffff;
}

.faq-accordion .accordion-button {
    font-family: 'Work Sans', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #222;
    background: #ffffff;
    padding: 1.5rem;
    border: none;
    box-shadow: none;
}

.faq-accordion .accordion-button:not(.collapsed) {
    background: hsl(177, 41%, 46%);
    color: #ffffff;
}

.faq-accordion .accordion-button:focus {
    box-shadow: none;
    border: none;
}

.faq-accordion .accordion-button::after {
    filter: brightness(0);
}

.faq-accordion .accordion-button:not(.collapsed)::after {
    filter: brightness(0) invert(1);
}

.faq-accordion .accordion-body {
    padding: 1.5rem;
    font-size: 1.05rem;
    line-height: 1.8;
    color: #333;
    background: #ffffff;
}

.faq-accordion .accordion-body p {
    margin-bottom: 0.8rem;
}

.faq-accordion .accordion-body p:last-child {
    margin-bottom: 0;
}

.faq-accordion .accordion-body ul {
    margin: 0.8rem 0;
    padding-left: 1.5rem;
}

.faq-accordion .accordion-body li {
    margin-bottom: 0.5rem;
    color: #333;
}

@media (max-width: 768px) {
    .faq-section {
        padding: 60px 0;
    }
    
    .faq-section h2 {
        font-size: 2rem;
    }
    
    .faq-section .lead-text {
        font-size: 1.1rem;
    }
    
    .faq-accordion .accordion-button {
        font-size: 1rem;
        padding: 1.2rem;
    }
    
    .faq-accordion .accordion-body {
        padding: 1.2rem;
        font-size: 1rem;
    }
}

.newsletter-section {
    background: linear-gradient(135deg, hsl(177, 41%, 46%) 0%, hsl(177, 41%, 31%) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.newsletter-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.newsletter-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
}

.newsletter-content {
    position: relative;
    z-index: 2;
}

.newsletter-heading {
    font-family: 'Work Sans', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
    text-align: center;
}

.newsletter-description {
    font-family: 'Crimson Text', serif;
    font-size: 1.2rem;
    color: #f8f9fa;
    text-align: center;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.newsletter-form {
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-form-group {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.newsletter-input {
    flex: 1;
    min-width: 250px;
    padding: 16px 24px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    font-family: 'Crimson Text', serif;
    font-size: 1.1rem;
    background: rgba(255, 255, 255, 0.95);
    color: #333;
    transition: all 0.3s ease;
}

.newsletter-input:focus {
    outline: none;
    border-color: #ffffff;
    background: #ffffff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.newsletter-input::placeholder {
    color: #666;
    opacity: 0.8;
}

.newsletter-submit {
    padding: 16px 40px;
    background: #ffffff;
    color: hsl(177, 41%, 31%);
    border: 2px solid #ffffff;
    border-radius: 50px;
    font-family: 'Work Sans', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.newsletter-submit:hover {
    background: hsl(177, 41%, 71%);
    border-color: hsl(177, 41%, 71%);
    color: #222;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.newsletter-benefits {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #f8f9fa;
    font-family: 'Crimson Text', serif;
    font-size: 1rem;
}

.benefit-icon {
    width: 24px;
    height: 24px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .newsletter-section {
        padding: 60px 0;
    }
    
    .newsletter-heading {
        font-size: 2rem;
    }
    
    .newsletter-description {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .newsletter-form-group {
        flex-direction: column;
        gap: 15px;
    }
    
    .newsletter-input {
        min-width: 100%;
    }
    
    .newsletter-submit {
        width: 100%;
    }
    
    .newsletter-benefits {
        gap: 20px;
        margin-top: 30px;
    }
    
    .benefit-item {
        font-size: 0.95rem;
    }
}

@media (max-width: 576px) {
    .newsletter-heading {
        font-size: 1.75rem;
    }
    
    .newsletter-description {
        font-size: 1rem;
    }
    
    .newsletter-input,
    .newsletter-submit {
        padding: 14px 20px;
        font-size: 1rem;
    }
}

@import url('https://fonts.googleapis.com/css2?family=Work+Sans:wght@400;600;700&family=Crimson+Text:wght@400;600;700&display=swap');

  .hero-section {
    font-family: 'Crimson Text', serif;
    background-color: #ffffff;
    padding: 80px 0;
    color: #333333;
  }

  .hero-section h1 {
    font-family: 'Work Sans', sans-serif;
    font-weight: 700;
    font-size: 2.8rem;
    color: #222222;
    margin-bottom: 1.5rem;
    line-height: 1.2;
  }

  .hero-section h2 {
    font-family: 'Work Sans', sans-serif;
    font-weight: 600;
    font-size: 1.6rem;
    color: hsl(177, 41%, 31%);
    margin-bottom: 2rem;
    line-height: 1.4;
  }

  .hero-section p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #444444;
    margin-bottom: 1.5rem;
  }

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

  .hero-image-wrapper {
    margin: 2.5rem 0;
  }

  .hero-image-wrapper img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }

  .advantages-list {
    list-style: none;
    padding: 0;
    margin: 2.5rem 0;
    text-align: left;
  }

  .advantages-list li {
    font-size: 1.125rem;
    color: #333333;
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
    line-height: 1.6;
  }

  .advantages-list li i {
    position: absolute;
    left: 0;
    top: 3px;
    color: hsl(177, 41%, 46%);
    font-size: 1.3rem;
  }

  .cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2.5rem;
  }

  .btn-primary-custom {
    background-color: hsl(177, 41%, 46%);
    color: #ffffff;
    padding: 14px 36px;
    border: none;
    border-radius: 6px;
    font-family: 'Work Sans', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
  }

  .btn-primary-custom:hover {
    background-color: hsl(177, 41%, 31%);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
  }

  .btn-secondary-custom {
    background-color: transparent;
    color: hsl(177, 41%, 31%);
    padding: 14px 36px;
    border: 2px solid hsl(177, 41%, 46%);
    border-radius: 6px;
    font-family: 'Work Sans', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
  }

  .btn-secondary-custom:hover {
    background-color: hsl(177, 41%, 71%);
    color: #ffffff;
    border-color: hsl(177, 41%, 71%);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
  }

  @media (max-width: 768px) {
    .hero-section {
      padding: 50px 0;
    }

    .hero-section h1 {
      font-size: 2rem;
    }

    .hero-section h2 {
      font-size: 1.3rem;
    }

    .hero-section p {
      font-size: 1rem;
    }

    .advantages-list li {
      font-size: 1rem;
    }

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

    .btn-primary-custom,
    .btn-secondary-custom {
      width: 100%;
      max-width: 300px;
    }
  }

.offer-section {
    padding: 80px 0;
    background: linear-gradient(135deg, hsl(177, 41%, 46%) 0%, hsl(177, 41%, 31%) 100%);
    position: relative;
    overflow: hidden;
}

.offer-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.offer-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
}

.offer-container {
    position: relative;
    z-index: 2;
}

.offer-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    padding: 8px 24px;
    border-radius: 50px;
    font-family: 'Work Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.offer-heading {
    font-family: 'Work Sans', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 24px;
    line-height: 1.2;
}

.offer-description {
    font-family: 'Crimson Text', serif;
    font-size: 20px;
    color: #ffffff;
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.offer-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 50px 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    margin-top: 40px;
}

.deadline-block {
    text-align: center;
    margin-bottom: 40px;
    padding: 30px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 15px;
    border: 3px dashed hsl(177, 41%, 46%);
}

.deadline-label {
    font-family: 'Work Sans', sans-serif;
    font-size: 16px;
    color: #333333;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.deadline-date {
    font-family: 'Work Sans', sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: hsl(177, 41%, 31%);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.calendar-icon {
    width: 50px;
    height: 50px;
    background: hsl(177, 41%, 46%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 24px;
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 40px 0;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    margin-bottom: 15px;
    background: #f8f9fa;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: hsl(177, 41%, 71%);
    transform: translateX(10px);
}

.benefit-icon {
    width: 50px;
    height: 50px;
    background: hsl(177, 41%, 46%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 24px;
    flex-shrink: 0;
}

.benefit-text {
    font-family: 'Crimson Text', serif;
    font-size: 18px;
    color: #333333;
    line-height: 1.6;
    margin: 0;
    padding-top: 8px;
}

.discount-badge {
    display: inline-block;
    background: hsl(177, 41%, 46%);
    color: #ffffff;
    padding: 15px 30px;
    border-radius: 50px;
    font-family: 'Work Sans', sans-serif;
    font-size: 28px;
    font-weight: 700;
    margin: 30px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.offer-cta {
    text-align: center;
    margin-top: 40px;
}

.offer-btn {
    display: inline-block;
    background: hsl(177, 41%, 31%);
    color: #ffffff;
    font-family: 'Work Sans', sans-serif;
    font-size: 18px;
    font-weight: 600;
    padding: 18px 50px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.offer-btn:hover {
    background: hsl(177, 41%, 46%);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .offer-section {
        padding: 60px 0;
    }

    .offer-heading {
        font-size: 36px;
    }

    .offer-description {
        font-size: 18px;
    }

    .offer-card {
        padding: 30px 20px;
    }

    .deadline-date {
        font-size: 32px;
        flex-direction: column;
        gap: 10px;
    }

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

    .benefit-item:hover {
        transform: translateX(0);
    }

    .discount-badge {
        font-size: 24px;
        padding: 12px 25px;
    }

    .offer-btn {
        padding: 15px 35px;
        font-size: 16px;
    }
}

.testimonials-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  font-family: 'Crimson Text', serif;
}

.testimonials-section h2 {
  font-family: 'Work Sans', sans-serif;
  color: #222;
  font-weight: 700;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.testimonials-section .section-subtitle {
  color: #666;
  font-size: 1.1rem;
  margin-bottom: 3rem;
}

.testimonial-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

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

.testimonial-card.featured {
  background: linear-gradient(135deg, hsl(177, 41%, 46%) 0%, hsl(177, 41%, 31%) 100%);
  color: #ffffff;
}

.testimonial-card.featured .testimonial-text,
.testimonial-card.featured .customer-name,
.testimonial-card.featured .customer-location {
  color: #ffffff;
}

.testimonial-card.featured .star-rating i {
  color: #ffd700;
}

.testimonial-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.customer-info h5 {
  font-family: 'Work Sans', sans-serif;
  color: #222;
  font-weight: 600;
  font-size: 1.2rem;
  margin-bottom: 0.3rem;
}

.customer-location {
  color: #666;
  font-size: 0.95rem;
}

.star-rating {
  display: flex;
  gap: 3px;
}

.star-rating i {
  color: #ffd700;
  font-size: 1.1rem;
}

.star-rating i.text-muted {
  color: #ddd !important;
}

.testimonial-text {
  color: #444;
  font-size: 1.05rem;
  line-height: 1.8;
  flex-grow: 1;
  margin-bottom: 1rem;
}

.testimonial-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid #eee;
  font-size: 0.9rem;
  color: #888;
}

.testimonial-card.featured .testimonial-meta {
  border-top-color: rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.9);
}

.course-type {
  background: hsl(177, 41%, 71%);
  color: #222;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
}

.testimonial-card.featured .course-type {
  background: rgba(255,255,255,0.25);
  color: #ffffff;
}

.testimonial-date {
  font-style: italic;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

@media (max-width: 768px) {
  .testimonials-section {
    padding: 60px 0;
  }

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

  .testimonial-card {
    padding: 1.5rem;
  }

  .testimonial-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .testimonial-header {
    flex-direction: column;
    gap: 1rem;
  }
}

.rating-summary {
  background: #ffffff;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  margin-bottom: 3rem;
  text-align: center;
}

.rating-summary h3 {
  font-family: 'Work Sans', sans-serif;
  color: #222;
  font-size: 3rem;
  margin-bottom: 0.5rem;
}

.rating-summary .total-reviews {
  color: #666;
  font-size: 1.1rem;
}

#blog {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    font-family: 'Crimson Text', serif;
  }

  #blog .section-title {
    font-family: 'Work Sans', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 1rem;
    text-align: center;
  }

  #blog .section-subtitle {
    font-size: 1.2rem;
    color: #555;
    text-align: center;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
  }

  #blog .blog-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
  }

  #blog .blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
  }

  #blog .blog-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
  }

  #blog .blog-content {
    padding: 1.8rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
  }

  #blog .blog-meta {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: #666;
  }

  #blog .blog-meta span {
    display: flex;
    align-items: center;
    gap: 0.4rem;
  }

  #blog .blog-title {
    font-family: 'Work Sans', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #222;
    margin-bottom: 1rem;
    line-height: 1.4;
  }

  #blog .blog-title a {
    color: #222;
    text-decoration: none;
    transition: color 0.3s ease;
  }

  #blog .blog-title a:hover {
    color: hsl(177, 41%, 46%);
  }

  #blog .blog-excerpt {
    color: #555;
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex-grow: 1;
  }

  #blog .read-more {
    font-family: 'Work Sans', sans-serif;
    color: hsl(177, 41%, 46%);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s ease;
  }

  #blog .read-more:hover {
    gap: 0.8rem;
    color: hsl(177, 41%, 31%);
  }

  #blog .view-all-btn {
    display: inline-block;
    margin-top: 3rem;
    padding: 14px 40px;
    background: hsl(177, 41%, 46%);
    color: #ffffff;
    font-family: 'Work Sans', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.3s ease;
  }

  #blog .view-all-btn:hover {
    background: hsl(177, 41%, 31%);
    transform: translateY(-2px);
    color: #ffffff;
  }

  #blog .text-center {
    text-align: center;
  }

  @media (max-width: 768px) {
    #blog {
      padding: 60px 0;
    }

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

    #blog .section-subtitle {
      font-size: 1.1rem;
    }

    #blog .blog-image {
      height: 220px;
    }

    #blog .blog-title {
      font-size: 1.3rem;
    }
  }

.credentials-section {
  padding: 60px 0;
  background-color: #f8f9fa;
}

.credentials-section .section-title {
  font-family: 'Work Sans', sans-serif;
  font-size: 2rem;
  font-weight: 600;
  color: #222;
  text-align: center;
  margin-bottom: 40px;
}

.credential-card {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 25px 15px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.credential-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.credential-icon {
  font-size: 2.5rem;
  color: #28a745;
  margin-bottom: 12px;
}

.credential-text {
  font-family: 'Crimson Text', serif;
  font-size: 1rem;
  color: #333;
  margin: 0;
  font-weight: 600;
}

@media (max-width: 768px) {
  .credentials-section {
    padding: 40px 0;
  }
  
  .credentials-section .section-title {
    font-size: 1.75rem;
    margin-bottom: 30px;
  }
  
  .credential-card {
    margin-bottom: 15px;
  }
}

@media (max-width: 576px) {
  .credentials-section .section-title {
    font-size: 1.5rem;
  }
  
  .credential-icon {
    font-size: 2rem;
  }
}

.services-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    font-family: 'Crimson Text', serif;
  }

  .services-section h2 {
    font-family: 'Work Sans', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 1rem;
    text-align: center;
  }

  .services-intro {
    font-size: 1.15rem;
    color: #555;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3.5rem;
    line-height: 1.8;
  }

  .service-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 2rem;
    height: 100%;
    transition: all 0.4s ease;
    border: 2px solid transparent;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
  }

  .service-card:hover {
    transform: translateY(-8px);
    border-color: hsl(177, 41%, 46%);
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
  }

  .service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, hsl(177, 41%, 46%) 0%, hsl(177, 41%, 31%) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
  }

  .service-card:hover .service-icon {
    transform: rotate(360deg) scale(1.1);
  }

  .service-icon i {
    font-size: 2rem;
    color: #ffffff;
  }

  .service-card h3 {
    font-family: 'Work Sans', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #222;
    margin-bottom: 1rem;
  }

  .service-description {
    font-size: 1.05rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex-grow: 1;
  }

  .service-details {
    border-top: 1px solid #e9ecef;
    padding-top: 1.25rem;
    margin-top: auto;
  }

  .service-price {
    font-family: 'Work Sans', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: hsl(177, 41%, 31%);
    margin-bottom: 0.5rem;
  }

  .service-duration {
    font-size: 0.95rem;
    color: #777;
    margin-bottom: 1rem;
  }

  .service-features {
    list-style: none;
    padding: 0;
    margin: 1rem 0 1.5rem;
  }

  .service-features li {
    font-size: 0.95rem;
    color: #666;
    padding: 0.4rem 0;
    padding-left: 1.5rem;
    position: relative;
  }

  .service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: hsl(177, 41%, 46%);
    font-weight: bold;
  }

  .service-btn {
    background: hsl(177, 41%, 46%);
    color: #ffffff;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-family: 'Work Sans', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  .service-btn:hover {
    background: hsl(177, 41%, 31%);
    transform: scale(1.02);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  }

  @media (max-width: 768px) {
    .services-section {
      padding: 60px 0;
    }

    .services-section h2 {
      font-size: 2.2rem;
    }

    .service-card {
      margin-bottom: 2rem;
    }
  }

.disclaimer-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 80px 0;
  font-family: 'Crimson Text', serif;
}

.disclaimer-container {
  max-width: 900px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 12px;
  padding: 50px 40px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.disclaimer-icon {
  width: 70px;
  height: 70px;
  background: hsl(177, 41%, 46%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
}

.disclaimer-icon i {
  font-size: 36px;
  color: #ffffff;
}

.disclaimer-title {
  font-family: 'Work Sans', sans-serif;
  font-size: 2.5rem;
  font-weight: 600;
  color: #222;
  text-align: center;
  margin-bottom: 35px;
}

.disclaimer-text {
  font-size: 1.1rem;
  line-height: 1.9;
  color: #444;
  text-align: left;
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .disclaimer-section {
    padding: 60px 0;
  }
  
  .disclaimer-container {
    padding: 40px 25px;
  }
  
  .disclaimer-title {
    font-size: 2rem;
  }
  
  .disclaimer-text {
    font-size: 1rem;
  }
  
  .disclaimer-icon {
    width: 60px;
    height: 60px;
  }
  
  .disclaimer-icon i {
    font-size: 30px;
  }
}

@import url('https://fonts.googleapis.com/css2?family=Work+Sans:wght@400;600;700&family=Crimson+Text:wght@400;600;700&display=swap');
  
  :root {
    --primary-color: hsl(177, 41%, 46%);
    --secondary-color: hsl(177, 41%, 31%);
    --accent-color: hsl(177, 41%, 71%);
  }
  
  .policy-content {
    font-family: 'Crimson Text', serif;
    font-size: 1.125rem;
    line-height: 1.8;
    color: #333;
  }
  
  .policy-content h1,
  .policy-content h2,
  .policy-content h3,
  .policy-content h4 {
    font-family: 'Work Sans', sans-serif;
    font-weight: 700;
    color: var(--secondary-color);
  }
  
  .policy-content h1 {
    font-size: 2.75rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 4px solid var(--primary-color);
  }
  
  .policy-content h2 {
    font-size: 2rem;
    margin-top: 2.5rem;
    margin-bottom: 1.25rem;
    color: var(--primary-color);
    position: relative;
    padding-left: 1rem;
  }
  
  .policy-content h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 70%;
    background-color: var(--accent-color);
  }
  
  .policy-content h3 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
  }
  
  .policy-content a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
  }
  
  .policy-content a:hover {
    color: var(--secondary-color);
    border-bottom: 2px solid var(--accent-color);
  }
  
  .policy-content ul,
  .policy-content ol {
    margin: 1.25rem 0;
    padding-left: 2rem;
  }
  
  .policy-content li {
    margin-bottom: 0.75rem;
  }
  
  .policy-content p {
    margin-bottom: 1.25rem;
  }
  
  .policy-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 3rem 0;
    margin-bottom: 3rem;
    border-radius: 0.5rem;
  }
  
  .policy-header h1 {
    color: white;
    border-bottom: none;
    margin-bottom: 0.5rem;
  }
  
  .last-updated {
    font-style: italic;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
  }
  
  .contact-box {
    background-color: var(--accent-color);
    padding: 2rem;
    border-radius: 0.5rem;
    margin: 2rem 0;
    border-left: 5px solid var(--primary-color);
  }
  
  .contact-box h3 {
    color: var(--secondary-color);
    margin-top: 0;
  }
  
  .highlight-box {
    background-color: #f8f9fa;
    border-left: 4px solid var(--primary-color);
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-radius: 0.25rem;
  }

@import url('https://fonts.googleapis.com/css2?family=Work+Sans:wght@400;600;700&family=Crimson+Text:wght@400;600;700&display=swap');

  :root {
    --primary-color: hsl(177, 41%, 46%);
    --secondary-color: hsl(177, 41%, 31%);
    --accent-color: hsl(177, 41%, 71%);
  }

  .policy-content {
    font-family: 'Crimson Text', serif;
    font-size: 1.125rem;
    line-height: 1.8;
    color: #2c3e50;
  }

  .policy-content h1,
  .policy-content h2,
  .policy-content h3,
  .policy-content h4 {
    font-family: 'Work Sans', sans-serif;
    font-weight: 700;
    color: var(--secondary-color);
  }

  .policy-content h1 {
    font-size: 2.75rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 4px solid var(--primary-color);
  }

  .policy-content h2 {
    font-size: 2rem;
    margin-top: 2.5rem;
    margin-bottom: 1.25rem;
    color: var(--primary-color);
    position: relative;
    padding-left: 1rem;
  }

  .policy-content h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 70%;
    background-color: var(--accent-color);
  }

  .policy-content h3 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
  }

  .policy-content a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
  }

  .policy-content a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
  }

  .policy-content ul,
  .policy-content ol {
    margin: 1.25rem 0;
    padding-left: 2rem;
  }

  .policy-content li {
    margin-bottom: 0.75rem;
  }

  .policy-content strong {
    color: var(--secondary-color);
    font-weight: 700;
  }

  .contact-box {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--primary-color) 100%);
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
    color: white;
  }

  .contact-box h3 {
    color: white !important;
    margin-bottom: 1rem;
  }

  .contact-box p {
    margin-bottom: 0.5rem;
  }

  .highlight-box {
    background-color: rgba(77, 166, 158, 0.1);
    border-left: 4px solid var(--primary-color);
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-radius: 0 8px 8px 0;
  }

  .effective-date {
    font-style: italic;
    color: #7f8c8d;
    margin-bottom: 2rem;
  }