:root {
--primary-color: hsl(51, 51%, 30%);
  --secondary-color: hsl(51, 51%, 15%);
--accent-color: hsl(51, 51%, 55%);
}

* {
margin: 0;
  padding: 0;
    box-sizing: border-box;
}

body {
font-family: 'Libre Baskerville', serif;
  color: #333;
background: white;
    line-height: 1.7;
}

h1, h2, h3, h4, h5, h6 {
font-family: 'Quicksand', sans-serif;
  font-weight: 600;
}

.navbar {
background-color: rgb(255, 255, 255);
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
padding: 1rem 0;
  transition: all 0.3s ease;
}

.navbar-brand {
display: flex;
align-items: center;
    gap: 12px;
  font-family: 'Quicksand', sans-serif;
font-weight: 700;
    font-size: 1.4em;
color: var(--primary-color);
  text-decoration: none;
}

.navbar-brand:hover {
color: var(--accent-color);
}

.navbar-brand img {
transition: transform 0.3s ease;
}

.navbar-brand:hover img {
  transform: rotate(15deg) scale(1.05);
}

.navbar-toggler {
border: 2px solid var(--primary-color);
  padding: 0.5rem 0.75rem;
}

.navbar-toggler:focus {
box-shadow: 0 0 0 0.2rem rgba(134, 134, 59, 0.25);
}

.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(134, 134, 59, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.nav-link {
color: #333 !important;
font-family: 'Quicksand', sans-serif;
  font-weight: 500;
    font-size: 1.05rem;
padding: 0.5rem 1.2rem !important;
  position: relative;
transition: color 0.3s ease;
}

.nav-link::after {
content: '';
    position: absolute;
bottom: 0;
left: 50%;
  width: 0;
height: 2px;
    background: var(--accent-color);
  transform: translateX(-50%);
transition: width 0.3s ease;
}

.nav-link:hover {
color: var(--primary-color) !important;
}

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

@media (max-width: 991px) {
.navbar-collapse {
background: #f8f9fa;
    margin-top: 1rem;
padding: 1.5rem;
  border-radius: 8px;
}

.nav-link {
  padding: 0.75rem 1rem !important;
}

.nav-link::after {
display: none;
}
}

@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@400;600;700&family=Libre+Baskerville:wght@400;700&display=swap');

.about-section {
    background: #f8f9fa;
    padding: 80px 0;
    font-family: 'Libre Baskerville', serif;
}

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

.about-header h2 {
    font-family: 'Quicksand', sans-serif;
    font-size: 2.8rem;
    color: hsl(51, 51%, 30%);
    font-weight: 700;
    margin-bottom: 20px;
}

.about-header p {
    font-size: 1.1rem;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

.about-content {
    display: flex;
    align-items: center;
    margin-bottom: 70px;
    gap: 40px;
}

.about-content.reverse {
    flex-direction: row-reverse;
}

.about-image {
    flex: 1;
    position: relative;
}

.about-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.about-text {
    flex: 1;
    padding: 0 20px;
}

.about-text h3 {
    font-family: 'Quicksand', sans-serif;
    font-size: 2rem;
    color: hsl(51, 51%, 30%);
    margin-bottom: 25px;
    font-weight: 600;
}

.about-text p {
    font-size: 1rem;
    color: #444;
    line-height: 1.9;
    margin-bottom: 18px;
}

.timeline-section {
    background: white;
    padding: 60px 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    margin-top: 50px;
}

.timeline-title {
    font-family: 'Quicksand', sans-serif;
    font-size: 2.3rem;
    color: hsl(51, 51%, 30%);
    text-align: center;
    margin-bottom: 50px;
    font-weight: 700;
}

.timeline {
    position: relative;
    padding-left: 50px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: hsl(51, 51%, 55%);
}

.timeline-item {
    position: relative;
    margin-bottom: 45px;
    padding-left: 30px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -42px;
    top: 5px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: hsl(51, 51%, 30%);
    border: 4px solid #fff;
    box-shadow: 0 0 0 3px hsl(51, 51%, 55%);
}

.timeline-year {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.4rem;
    color: hsl(51, 51%, 30%);
    font-weight: 700;
    margin-bottom: 10px;
}

.timeline-content {
    font-size: 1rem;
    color: #555;
    line-height: 1.8;
}

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

.value-card {
    background: white;
    padding: 35px 25px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.value-card h4 {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.5rem;
    color: hsl(51, 51%, 30%);
    margin-bottom: 15px;
    font-weight: 600;
}

.value-card p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .about-section {
        padding: 50px 0;
    }
    
    .about-header h2 {
        font-size: 2rem;
    }
    
    .about-content {
        flex-direction: column;
        margin-bottom: 50px;
    }
    
    .about-content.reverse {
        flex-direction: column;
    }
    
    .about-image img {
        height: 300px;
    }
    
    .about-text {
        padding: 0;
    }
    
    .timeline {
        padding-left: 30px;
    }
    
    .timeline-section {
        padding: 40px 20px;
    }
}

@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@400;500;600;700&family=Libre+Baskerville:wght@400;700&display=swap');

#portfolio {
  padding: 80px 0;
  background: #ffffff;
  font-family: 'Libre Baskerville', serif;
}

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

#portfolio .section-title h2 {
  font-family: 'Quicksand', sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: hsl(51, 51%, 30%);
  margin-bottom: 15px;
}

#portfolio .section-title p {
  font-size: 1.1rem;
  color: #555;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 35px;
  margin-top: 50px;
}

.portfolio-card {
  background: #f8f9fa;
  border-radius: 12px;
  padding: 35px;
  transition: all 0.4s ease;
  cursor: pointer;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.portfolio-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 4px;
  background: hsl(51, 51%, 55%);
  transition: left 0.5s ease;
}

.portfolio-card:hover::before {
  left: 0;
}

.portfolio-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.12);
  border-color: hsl(51, 51%, 55%);
}

.portfolio-card .project-category {
  display: inline-block;
  background: hsl(51, 51%, 55%);
  color: #222;
  padding: 6px 18px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 18px;
  font-family: 'Quicksand', sans-serif;
}

.portfolio-card h3 {
  font-family: 'Quicksand', sans-serif;
  font-size: 1.6rem;
  color: hsl(51, 51%, 15%);
  margin-bottom: 15px;
  font-weight: 600;
}

.portfolio-card .project-description {
  color: #444;
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

.portfolio-card .project-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid #ddd;
}

.portfolio-card .project-date {
  color: #666;
  font-size: 0.9rem;
}

.portfolio-card .project-link {
  color: hsl(51, 51%, 30%);
  font-weight: 600;
  text-decoration: none;
  font-family: 'Quicksand', sans-serif;
  transition: color 0.3s;
}

.portfolio-card .project-link:hover {
  color: hsl(51, 51%, 55%);
}

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

.modal-header {
  background: hsl(51, 51%, 30%);
  color: white;
  border-radius: 15px 15px 0 0;
  padding: 25px 30px;
}

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

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

.modal-body {
  padding: 35px;
  background: #fff;
  color: #333;
}

.modal-body h5 {
  font-family: 'Quicksand', sans-serif;
  color: hsl(51, 51%, 30%);
  margin-top: 25px;
  margin-bottom: 15px;
  font-size: 1.3rem;
}

.modal-body p {
  color: #444;
  line-height: 1.8;
  margin-bottom: 15px;
}

.modal-body .tech-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.modal-body .tech-tag {
  background: hsl(51, 51%, 55%);
  color: #222;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-family: 'Quicksand', sans-serif;
}

@media (max-width: 992px) {
  .portfolio-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  #portfolio .section-title h2 {
    font-size: 2.2rem;
  }
}

@media (max-width: 576px) {
  #portfolio {
    padding: 60px 0;
  }
  
  .portfolio-card {
    padding: 25px;
  }
  
  #portfolio .section-title h2 {
    font-size: 1.9rem;
  }
}

@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@400;600;700&family=Libre+Baskerville:wght@400;700&display=swap');

#advantages {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, white 100%);
  font-family: 'Libre Baskerville', serif;
}

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

#advantages .section-title {
  font-family: 'Quicksand', sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: hsl(51, 51%, 30%);
  margin-bottom: 15px;
}

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

.advantage-card {
  background: white;
  border-radius: 12px;
  padding: 35px 25px;
  margin-bottom: 30px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: all 0.4s ease;
  height: 100%;
  border: 2px solid transparent;
}

.advantage-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
  border-color: hsl(51, 51%, 55%);
}

.advantage-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, hsl(51, 51%, 55%) 0%, hsl(51, 51%, 30%) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  transition: transform 0.3s ease;
}

.advantage-card:hover .advantage-icon {
  transform: rotate(360deg);
}

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

.advantage-title {
  font-family: 'Quicksand', sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: #222;
  margin-bottom: 15px;
  text-align: center;
}

.advantage-description {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.8;
  text-align: center;
}

@media (max-width: 768px) {
  #advantages {
    padding: 60px 0;
  }
  
  #advantages .section-title {
    font-size: 2.2rem;
  }
  
  .advantage-card {
    padding: 30px 20px;
  }
}

@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@400;500;600;700&family=Libre+Baskerville:wght@400;700&display=swap');

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

#statistics::before {
content: '';
  position: absolute;
    top: 0;
  left: 0;
width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 50%, rgba(168, 153, 82, 0.05) 0%, transparent 50%),
              radial-gradient(circle at 80% 50%, rgba(168, 153, 82, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.statistics-header {
  text-align: center;
margin-bottom: 60px;
  position: relative;
    z-index: 1;
}

.statistics-header h2 {
font-family: 'Quicksand', sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
    color: hsl(51, 51%, 15%);
  margin-bottom: 15px;
  letter-spacing: -0.5px;
}

.statistics-header p {
  font-size: 1.1rem;
color: #555;
  max-width: 680px;
    margin: 0 auto;
line-height: 1.7;
}

.stats-grid {
  display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  position: relative;
z-index: 1;
}

.stat-item {
  background: white;
padding: 35px 25px;
  border-radius: 12px;
  text-align: center;
    transition: all 0.4s ease;
  box-shadow: 0 3px 15px rgba(0,0,0,0.08);
border: 1px solid rgba(168, 153, 82, 0.1);
}

.stat-item:hover {
  transform: translateY(-8px);
box-shadow: 0 8px 25px rgba(168, 153, 82, 0.2);
    border-color: hsl(51, 51%, 55%);
}

.stat-icon {
width: 70px;
  height: 70px;
  background: linear-gradient(135deg, hsl(51, 51%, 55%) 0%, hsl(51, 51%, 30%) 100%);
  border-radius: 50%;
  display: flex;
    align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: transform 0.3s ease;
}

.stat-item:hover .stat-icon {
transform: rotate(360deg);
}

.stat-icon i {
  font-size: 32px;
  color: white;
}

.stat-number {
font-family: 'Quicksand', sans-serif;
  font-size: 2.2rem;
font-weight: 700;
  color: hsl(51, 51%, 15%);
    margin-bottom: 8px;
  line-height: 1.2;
}

.stat-label {
  font-size: 0.95rem;
  color: #666;
  font-weight: 400;
  text-transform: uppercase;
    letter-spacing: 0.5px;
}

@media (max-width: 768px) {
  #statistics {
    padding: 60px 0;
  }
  
  .statistics-header h2 {
font-size: 2.2rem;
  }
  
.stats-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 20px;
  }
  
  .stat-item {
    padding: 28px 18px;
  }
  
  .stat-icon {
width: 60px;
    height: 60px;
  }
  
.stat-icon i {
    font-size: 28px;
  }
  
  .stat-number {
    font-size: 1.9rem;
  }
}

@media (max-width: 480px) {
.stats-grid {
    grid-template-columns: 1fr;
  }
}

@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@400;500;600;700&family=Libre+Baskerville:wght@400;700&display=swap');

footer {
  background: hsl(51, 51%, 15%);
  color: #f8f9fa;
  padding: 60px 0 20px;
  font-family: 'Libre Baskerville', serif;
  margin-top: 80px;
}

footer h4 {
  font-family: 'Quicksand', sans-serif;
  color: hsl(51, 51%, 55%);
  font-weight: 600;
  margin-bottom: 25px;
  font-size: 1.3rem;
}

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

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

footer a:hover {
  color: hsl(51, 51%, 55%);
}

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

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

.footer-description {
  margin-bottom: 20px;
  color: rgb(245, 245, 245);
}

.contact-info {
  margin-top: 15px;
}

.contact-info p {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.contact-info i {
  margin-right: 10px;
  color: hsl(51, 51%, 55%);
}

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

#cookieNotice {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: white;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
  z-index: 9999;
  padding: 25px 0;
  border-top: 3px solid hsl(51, 51%, 55%);
}

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

.cookie-content h5 {
  font-family: 'Quicksand', sans-serif;
  color: hsl(51, 51%, 30%);
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 1.4rem;
}

.cookie-content p {
  color: #333;
  font-family: 'Libre Baskerville', serif;
  margin-bottom: 20px;
  line-height: 1.6;
}

.cookie-categories {
  margin: 20px 0;
  padding: 15px;
  background: #f8f9fa;
  border-radius: 8px;
}

.cookie-category {
  margin-bottom: 12px;
  color: #222;
  font-size: 0.9rem;
}

.cookie-category strong {
  color: hsl(51, 51%, 30%);
  font-family: 'Quicksand', sans-serif;
}

.cookie-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 20px;
}

.btn-accept-all {
  background: hsl(51, 51%, 30%);
  color: white;
  border: none;
  padding: 12px 30px;
  border-radius: 5px;
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-accept-all:hover {
  background: hsl(51, 51%, 25%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.btn-reject {
  background: #6c757d;
  color: #fff;
  border: none;
  padding: 12px 30px;
  border-radius: 5px;
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-reject:hover {
  background: #5a6268;
  transform: translateY(-2px);
}

.btn-manage {
  color: hsl(51, 51%, 30%);
  text-decoration: underline;
  font-family: 'Quicksand', sans-serif;
  font-weight: 500;
  padding: 12px 20px;
  transition: color 0.3s ease;
}

.btn-manage:hover {
  color: hsl(51, 51%, 20%);
}

@media (max-width: 768px) {
  footer {
    padding: 40px 0 20px;
  }
  
  .cookie-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  
  .btn-accept-all, .btn-reject {
    width: 100%;
  }
}

.privacy-policy {
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        max-width: 1200px;
        margin: 0 auto;
        padding: 40px 20px;
        color: #2c3e50;
        line-height: 1.8;
        background: linear-gradient(to bottom, #f8f9fa 0%, #ffffff 100%);
    }
    
    .privacy-header {
        text-align: center;
        margin-bottom: 50px;
        padding-bottom: 30px;
        border-bottom: 3px solid #3498db;
    }
    
    .privacy-header h1 {
        font-size: 2.5em;
        color: #2c3e50;
        margin-bottom: 15px;
        font-weight: 700;
    }
    
    .last-updated {
        color: #7f8c8d;
        font-size: 0.95em;
        font-style: italic;
    }
    
    .privacy-section {
        background: white;
        padding: 35px;
        margin-bottom: 30px;
        border-radius: 12px;
        box-shadow: 0 4px 6px rgba(0,0,0,0.07);
        border-left: 5px solid #3498db;
    }
    
    .privacy-section h2 {
        color: #2c3e50;
        font-size: 1.8em;
        margin-bottom: 20px;
        padding-bottom: 12px;
        border-bottom: 2px solid #ecf0f1;
        font-weight: 600;
    }
    
    .privacy-section h3 {
        color: #34495e;
        font-size: 1.3em;
        margin-top: 25px;
        margin-bottom: 15px;
        font-weight: 600;
    }
    
    .privacy-section p {
        margin-bottom: 15px;
        text-align: justify;
    }
    
    .privacy-section ul, .privacy-section ol {
        margin-left: 25px;
        margin-bottom: 20px;
    }
    
    .privacy-section li {
        margin-bottom: 12px;
        line-height: 1.7;
    }
    
    .highlight-box {
        background: #e8f4f8;
        border-left: 4px solid #3498db;
        padding: 20px;
        margin: 25px 0;
        border-radius: 6px;
    }
    
    .important-notice {
        background: #fff3cd;
        border-left: 4px solid #ffc107;
        padding: 20px;
        margin: 25px 0;
        border-radius: 6px;
    }
    
    .data-category {
        background: #f8f9fa;
        padding: 15px;
        margin: 15px 0;
        border-radius: 8px;
        border: 1px solid #dee2e6;
    }
    
    .rights-list {
        list-style: none;
        padding-left: 0;
    }
    
    .rights-list li {
        padding: 12px;
        margin-bottom: 10px;
        background: #f8f9fa;
        border-radius: 6px;
        border-left: 4px solid #27ae60;
    }
    
    .rights-list li strong {
        color: #27ae60;
    }
    
    .company-info {
        background: #34495e;
        color: white;
        padding: 30px;
        border-radius: 12px;
        margin-top: 40px;
        text-align: center;
    }
    
    .company-info h2 {
        color: white;
        border-bottom: 2px solid #7f8c8d;
        padding-bottom: 15px;
        margin-bottom: 20px;
    }
    
    strong {
        color: #2c3e50;
        font-weight: 600;
    }
    
    @media (max-width: 768px) {
        .privacy-policy {
            padding: 20px 15px;
        }
        
        .privacy-header h1 {
            font-size: 1.8em;
        }
        
        .privacy-section {
            padding: 20px;
        }
        
        .privacy-section h2 {
            font-size: 1.5em;
        }
    }

.cookies-policy-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 40px 20px;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        line-height: 1.8;
        color: #2c3e50;
        background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    }

    .cookies-policy-header {
        text-align: center;
        margin-bottom: 50px;
        padding: 40px 20px;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        border-radius: 20px;
        box-shadow: 0 10px 40px rgba(102, 126, 234, 0.3);
    }

    .cookies-policy-header h1 {
        color: #ffffff;
        font-size: 2.8em;
        margin-bottom: 15px;
        font-weight: 700;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    }

    .cookies-policy-header .subtitle {
        color: #e0e7ff;
        font-size: 1.2em;
        font-weight: 300;
    }

    .last-updated {
        background: #fff;
        padding: 15px 25px;
        border-left: 5px solid #667eea;
        margin-bottom: 40px;
        border-radius: 8px;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    }

    .last-updated strong {
        color: #667eea;
        font-weight: 600;
    }

    .policy-section {
        background: #ffffff;
        padding: 35px;
        margin-bottom: 30px;
        border-radius: 15px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .policy-section:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    }

    .policy-section h2 {
        color: #667eea;
        font-size: 2em;
        margin-bottom: 20px;
        padding-bottom: 15px;
        border-bottom: 3px solid #e0e7ff;
        font-weight: 600;
    }

    .policy-section h3 {
        color: #764ba2;
        font-size: 1.5em;
        margin-top: 25px;
        margin-bottom: 15px;
        font-weight: 600;
    }

    .policy-section p {
        margin-bottom: 15px;
        text-align: justify;
        color: #4a5568;
    }

    .cookie-type-box {
        background: linear-gradient(135deg, #f6f8fb 0%, #e9ecef 100%);
        padding: 25px;
        margin: 20px 0;
        border-radius: 12px;
        border-left: 6px solid #667eea;
        box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
    }

    .cookie-type-box h4 {
        color: #667eea;
        margin-bottom: 12px;
        font-size: 1.3em;
        font-weight: 600;
    }

    .cookie-type-box ul {
        list-style: none;
        padding-left: 0;
    }

    .cookie-type-box ul li {
        padding: 10px 0;
        padding-left: 30px;
        position: relative;
        color: #4a5568;
    }

    .cookie-type-box ul li:before {
        content: "🍪";
        position: absolute;
        left: 0;
        font-size: 1.2em;
    }

    .consent-box {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        color: #ffffff;
        padding: 30px;
        border-radius: 15px;
        margin: 30px 0;
        box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
    }

    .consent-box h3 {
        color: #ffffff;
        margin-top: 0;
        font-size: 1.8em;
    }

    .consent-box p {
        color: #e0e7ff;
        margin-bottom: 12px;
    }

    .gdpr-compliance {
        background: #f0fdf4;
        border: 2px solid #86efac;
        padding: 25px;
        border-radius: 12px;
        margin: 25px 0;
    }

    .gdpr-compliance h3 {
        color: #16a34a;
        margin-top: 0;
    }

    .gdpr-compliance p {
        color: #166534;
    }

    .control-options {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 20px;
        margin: 25px 0;
    }

    .control-card {
        background: #ffffff;
        padding: 25px;
        border-radius: 12px;
        border: 2px solid #e0e7ff;
        transition: all 0.3s ease;
    }

    .control-card:hover {
        border-color: #667eea;
        box-shadow: 0 5px 20px rgba(102, 126, 234, 0.15);
    }

    .control-card h4 {
        color: #667eea;
        margin-bottom: 12px;
        font-size: 1.2em;
    }

    .highlight-box {
        background: #fef3c7;
        border-left: 5px solid #f59e0b;
        padding: 20px;
        margin: 20px 0;
        border-radius: 8px;
    }

    .highlight-box strong {
        color: #d97706;
    }

    .table-container {
        overflow-x: auto;
        margin: 25px 0;
    }

    .cookies-table {
        width: 100%;
        border-collapse: collapse;
        background: #ffffff;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    }

    .cookies-table th {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        color: #ffffff;
        padding: 18px;
        text-align: left;
        font-weight: 600;
        font-size: 1.1em;
    }

    .cookies-table td {
        padding: 15px 18px;
        border-bottom: 1px solid #e0e7ff;
        color: #4a5568;
    }

    .cookies-table tr:hover {
        background: #f6f8fb;
    }

    .icon-list {
        list-style: none;
        padding: 0;
    }

    .icon-list li {
        padding: 12px 0;
        padding-left: 35px;
        position: relative;
        color: #4a5568;
    }

    .icon-list li:before {
        content: "✓";
        position: absolute;
        left: 0;
        color: #667eea;
        font-weight: bold;
        font-size: 1.4em;
    }

    @media (max-width: 768px) {
        .cookies-policy-header h1 {
            font-size: 2em;
        }

        .policy-section {
            padding: 25px 20px;
        }

        .control-options {
            grid-template-columns: 1fr;
        }

        .cookies-table {
            font-size: 0.9em;
        }
    }

.blog-page {
            padding: 4rem 0;
        }
        .blog-page h1 {
            margin-bottom: 3rem;
            text-align: center;
            color: hsl(51, 51%, 30%);
        }
        .blog-card {
            margin-bottom: 2rem;
            transition: transform 0.3s;
            border: none;
            border-radius: 10px;
        }
        .blog-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.15) !important;
        }
        .blog-card .card-title {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: hsl(51, 51%, 30%);
        }
        .blog-card .card-text {
            color: #666;
            line-height: 1.6;
        }
        .blog-meta {
            font-size: 0.9rem;
            color: #888;
            margin-bottom: 1rem;
        }
        .blog-meta i {
            color: hsl(51, 51%, 55%);
        }
        .blog-read-more {
            background-color: hsl(51, 51%, 30%);
            border: none;
            color: white;
            padding: 0.5rem 1.5rem;
            border-radius: 5px;
            transition: all 0.3s;
            text-decoration: none;
            display: inline-block;
        }
        .blog-read-more:hover {
            background-color: hsl(51, 51%, 55%);
            color: white;
            transform: translateX(5px);
        }

@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@400;600;700&family=Libre+Baskerville:wght@400;700&display=swap');

.contact-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  padding: 80px 0;
  font-family: 'Libre Baskerville', serif;
  position: relative;
  overflow: hidden;
}

.contact-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(145, 145, 85, 0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.contact-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(145, 145, 85, 0.06) 0%, transparent 70%);
  border-radius: 50%;
}

.contact-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}

.contact-header h2 {
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  font-size: 2.8rem;
  color: hsl(51, 51%, 15%);
  margin-bottom: 15px;
  letter-spacing: -0.5px;
}

.contact-header p {
  font-size: 1.1rem;
  color: #555;
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.7;
}

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

.contact-form-wrapper {
  background: white;
  padding: 45px 40px;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
  border-top: 4px solid hsl(51, 51%, 55%);
}

.contact-form-wrapper h3 {
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  color: hsl(51, 51%, 30%);
  margin-bottom: 25px;
  font-size: 1.6rem;
}

.form-label {
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.form-control, .form-select {
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  font-family: 'Libre Baskerville', serif;
  color: #333;
  background: #fff;
}

.form-control:focus, .form-select:focus {
  border-color: hsl(51, 51%, 55%);
  box-shadow: 0 0 0 0.2rem rgba(145, 145, 85, 0.15);
  outline: none;
}

.form-control::placeholder {
  color: #999;
}

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

.form-check-input {
  width: 1.2em;
  height: 1.2em;
  margin-top: 0.15em;
  border: 2px solid #ccc;
}

.form-check-input:checked {
  background-color: hsl(51, 51%, 55%);
  border-color: hsl(51, 51%, 55%);
}

.form-check-label {
  color: #555;
  font-size: 0.9rem;
  margin-left: 8px;
}

.form-check-label a {
  color: hsl(51, 51%, 30%);
  text-decoration: underline;
  font-weight: 600;
}

.btn-submit {
  background: linear-gradient(135deg, hsl(51, 51%, 30%) 0%, hsl(51, 51%, 25%) 100%);
  color: #ffffff;
  border: none;
  padding: 14px 50px;
  font-size: 1.05rem;
  font-weight: 600;
  border-radius: 8px;
  font-family: 'Quicksand', sans-serif;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(145, 145, 85, 0.3);
  width: 100%;
  margin-top: 10px;
}

.btn-submit:hover {
  background: linear-gradient(135deg, hsl(51, 51%, 35%) 0%, hsl(51, 51%, 30%) 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(145, 145, 85, 0.4);
}

.btn-submit:active {
  transform: translateY(0);
}

.gdpr-notice {
  margin-top: 20px;
  padding: 18px;
  background: #f8f9fa;
  border-left: 4px solid hsl(51, 51%, 55%);
  font-size: 0.88rem;
  border-radius: 4px;
  line-height: 1.6;
}

.gdpr-notice strong {
  color: #333;
  font-family: 'Quicksand', sans-serif;
  font-size: 0.95rem;
}

.gdpr-notice p {
  margin: 8px 0 0 0;
  color: #555;
}

.gdpr-notice a {
  color: hsl(51, 51%, 30%);
  font-weight: 600;
  text-decoration: underline;
}

.contact-info-card {
  background: white;
  padding: 35px 30px;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.06);
  margin-bottom: 25px;
  border-left: 4px solid hsl(51, 51%, 55%);
  transition: transform 0.3s ease;
}

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

.contact-info-card h4 {
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  color: hsl(51, 51%, 30%);
  margin-bottom: 15px;
  font-size: 1.3rem;
}

.contact-info-card p {
  color: #555;
  margin-bottom: 10px;
  line-height: 1.7;
  font-size: 0.95rem;
}

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

.contact-info-card .info-icon {
  width: 24px;
  height: 24px;
  background: hsl(51, 51%, 55%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
  flex-shrink: 0;
  color: white;
  font-weight: bold;
  font-size: 0.85rem;
}

.contact-info-card .info-text {
  flex: 1;
  color: #333;
  font-size: 0.95rem;
}

.contact-info-card .info-text strong {
  color: #222;
  font-family: 'Quicksand', sans-serif;
}

.consultation-process {
  background: linear-gradient(135deg, hsl(51, 51%, 30%) 0%, hsl(51, 51%, 20%) 100%);
  padding: 35px 30px;
  border-radius: 12px;
  color: white;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.consultation-process h4 {
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  margin-bottom: 20px;
  font-size: 1.3rem;
  color: #fff;
}

.consultation-process .process-step {
  display: flex;
  align-items: flex-start;
  margin-bottom: 18px;
}

.consultation-process .step-number {
  width: 32px;
  height: 32px;
  background: hsl(51, 51%, 55%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  flex-shrink: 0;
  font-weight: bold;
  color: hsl(51, 51%, 15%);
  font-family: 'Quicksand', sans-serif;
}

.consultation-process .step-text {
  flex: 1;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #f5f5f5;
}

@media (max-width: 768px) {
  .contact-section {
    padding: 60px 0;
  }
  
  .contact-header h2 {
    font-size: 2.2rem;
  }
  
  .contact-form-wrapper {
    padding: 30px 25px;
  }
  
  .contact-info-card, .consultation-process {
    padding: 25px 20px;
  }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    min-height: 100vh;
    padding: 20px 0;
  }
  
  .header-section {
    background: linear-gradient(135deg, #ed1c24 0%, #dc143c 100%);
    color: white;
    padding: 60px 20px;
    text-align: center;
    margin-bottom: 40px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  }
  
  .header-section h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
  }
  
  .header-section .subtitle {
    font-size: 1.2rem;
    margin-bottom: 20px;
    opacity: 0.95;
  }
  
  .sg-badge {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255,255,255,0.3);
  }
  
  .entity-banner {
    background: linear-gradient(135deg, hsl(51, 51%, 30%) 0%, hsl(51, 51%, 15%) 100%);
    color: white;
    padding: 40px 20px;
    text-align: center;
    margin-bottom: 40px;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
  }
  
  .entity-banner h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 10px;
  }
  
  .entity-banner .company-type {
    font-size: 1.1rem;
    opacity: 0.9;
    font-weight: 300;
  }
  
  .info-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
  }
  
  .info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
  }
  
  .card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: hsl(51, 51%, 30%);
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 3px solid hsl(51, 51%, 55%);
  }
  
  .info-row {
    display: flex;
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
    align-items: flex-start;
  }
  
  .info-row:last-child {
    border-bottom: none;
  }
  
  .info-label {
    flex: 0 0 40%;
    font-weight: 600;
    color: #333;
    padding-right: 20px;
  }
  
  .info-value {
    flex: 0 0 60%;
    color: #555;
    word-break: break-word;
  }
  
  .status-active {
    color: #27ae60;
    font-weight: 700;
  }
  
  .status-active::before {
    content: '✓ ';
    font-weight: 900;
  }
  
  .excellence-footer {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 50px 30px;
    border-radius: 15px;
    margin-top: 40px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
  }
  
  .excellence-footer h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
  }
  
  .excellence-footer p {
    font-size: 1.05rem;
    line-height: 1.8;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    opacity: 0.95;
  }
  
  @media (max-width: 768px) {
    .header-section h1 {
      font-size: 1.8rem;
    }
    
    .entity-banner h2 {
      font-size: 1.5rem;
    }
    
    .info-row {
      flex-direction: column;
    }
    
    .info-label, .info-value {
      flex: 0 0 100%;
      padding-right: 0;
    }
    
    .info-label {
      margin-bottom: 5px;
    }
    
    .info-card {
      padding: 20px;
    }
  }

@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@400;600;700&family=Libre+Baskerville:wght@400;700&display=swap');
@import url('https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.0/font/bootstrap-icons.css');

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

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

.services-section .section-header h2 {
font-family: 'Quicksand', sans-serif;
  font-weight: 700;
    font-size: 2.8rem;
color: hsl(51, 51%, 15%);
  margin-bottom: 15px;
}

.services-section .section-header p {
font-size: 1.1rem;
    color: #555;
  max-width: 700px;
    margin: 0 auto;
line-height: 1.7;
}

.service-card {
background: white;
border-radius: 12px;
  padding: 30px;
margin-bottom: 25px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
transition: all 0.3s ease;
  border-left: 4px solid hsl(51, 51%, 55%);
display: flex;
align-items: flex-start;
gap: 20px;
}

.service-card:hover {
    transform: translateY(-5px);
box-shadow: 0 8px 25px rgba(0,0,0,0.15);
  border-left-color: hsl(51, 51%, 30%);
}

.service-card .icon-wrapper {
flex-shrink: 0;
    width: 65px;
height: 65px;
  background: linear-gradient(135deg, hsl(51, 51%, 55%) 0%, hsl(51, 51%, 45%) 100%);
border-radius: 50%;
display: flex;
    align-items: center;
justify-content: center;
  font-size: 28px;
color: white;
}

.service-card .content-wrapper {
flex: 1;
}

.service-card h3 {
  font-family: 'Quicksand', sans-serif;
font-weight: 600;
    font-size: 1.5rem;
  color: hsl(51, 51%, 20%);
margin-bottom: 12px;
}

.service-card p {
color: #666;
    font-size: 0.95rem;
line-height: 1.7;
  margin-bottom: 15px;
}

.service-card .price-tag {
display: inline-block;
  background: hsl(51, 51%, 30%);
color: #fff;
    padding: 8px 18px;
border-radius: 20px;
font-weight: 600;
  font-size: 1rem;
}

@media (max-width: 768px) {
.service-card {
flex-direction: column;
    text-align: center;
}
  
  .service-card .icon-wrapper {
margin: 0 auto;
  }
}

@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@400;500;600;700&family=Libre+Baskerville:wght@400;700&display=swap');

.newsletter-section {
  background: linear-gradient(135deg, hsl(51, 51%, 30%) 0%, hsl(51, 51%, 15%) 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.newsletter-section::before {
content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: hsl(51, 51%, 55%);
  opacity: 0.08;
  border-radius: 50%;
}

.newsletter-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: hsl(51, 51%, 55%);
  opacity: 0.06;
  border-radius: 50%;
}

.newsletter-card {
  background: white;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
  overflow: hidden;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.newsletter-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.newsletter-info {
  padding: 60px 50px;
  background: #f8f9fa;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.newsletter-info h2 {
  font-family: 'Quicksand', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 20px;
  line-height: 1.3;
}

.newsletter-info p {
  font-family: 'Libre Baskerville', serif;
  font-size: 1rem;
  color: #555;
  line-height: 1.8;
  margin-bottom: 25px;
}

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

.benefits-list li {
  font-family: 'Libre Baskerville', serif;
  font-size: 0.95rem;
  color: #333;
  padding: 12px 0;
  padding-left: 35px;
  position: relative;
  line-height: 1.6;
}

.benefits-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 12px;
  width: 24px;
  height: 24px;
  background: hsl(51, 51%, 55%);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 14px;
}

.newsletter-form-wrapper {
  padding: 60px 50px;
  background: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.form-title {
  font-family: 'Quicksand', sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: hsl(51, 51%, 30%);
  margin-bottom: 15px;
}

.form-subtitle {
  font-family: 'Libre Baskerville', serif;
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 30px;
  line-height: 1.6;
}

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

.form-group {
  position: relative;
}

.form-group input[type="email"] {
  width: 100%;
  padding: 16px 20px;
  font-family: 'Libre Baskerville', serif;
  font-size: 1rem;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  transition: all 0.3s ease;
  background: #fafafa;
}

.form-group input[type="email"]:focus {
  outline: none;
  border-color: hsl(51, 51%, 55%);
  background: white;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.subscribe-btn {
  padding: 16px 40px;
  font-family: 'Quicksand', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: white;
  background: hsl(51, 51%, 30%);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.subscribe-btn:hover {
  background: hsl(51, 51%, 15%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}

.subscribe-btn:active {
  transform: translateY(0);
}

.privacy-note {
  font-family: 'Libre Baskerville', serif;
  font-size: 0.8rem;
  color: #888;
  margin-top: 15px;
  line-height: 1.5;
}

@media (max-width: 992px) {
  .newsletter-content {
    grid-template-columns: 1fr;
  }
  
  .newsletter-info {
    padding: 50px 40px;
  }
  
  .newsletter-form-wrapper {
    padding: 50px 40px;
  }
}

@media (max-width: 768px) {
  .newsletter-section {
    padding: 60px 0;
  }
  
  .newsletter-info h2 {
    font-size: 1.8rem;
  }
  
  .newsletter-info {
    padding: 40px 30px;
  }
  
  .newsletter-form-wrapper {
    padding: 40px 30px;
  }
}

@media (max-width: 576px) {
  .newsletter-info {
    padding: 35px 25px;
  }
  
  .newsletter-form-wrapper {
    padding: 35px 25px;
  }
  
  .newsletter-info h2 {
    font-size: 1.6rem;
  }
}

@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@400;500;600;700&family=Libre+Baskerville:wght@400;700&display=swap');

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

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

#testimonials .section-header h2 {
  font-family: 'Quicksand', sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: hsl(51, 51%, 15%);
  margin-bottom: 15px;
}

#testimonials .section-header p {
  font-size: 1.1rem;
  color: #555;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

.testimonial-card {
  background: white;
  border-radius: 12px;
  padding: 30px 25px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  border-left: 4px solid hsl(51, 51%, 55%);
}

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

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

.testimonial-info h4 {
  font-family: 'Quicksand', sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: #222;
  margin-bottom: 4px;
}

.testimonial-info .location {
  font-size: 0.88rem;
  color: #777;
  display: flex;
  align-items: center;
  gap: 5px;
}

.testimonial-info .location i {
  font-size: 0.85rem;
}

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

.testimonial-rating i {
  color: hsl(51, 51%, 55%);
  font-size: 1rem;
}

.testimonial-rating i.bi-star {
  color: #ddd;
}

.testimonial-text {
  flex-grow: 1;
  margin-bottom: 20px;
}

.testimonial-text p {
  font-size: 0.95rem;
  line-height: 1.65;
  color: #444;
  margin: 0;
}

.testimonial-date {
  font-size: 0.82rem;
  color: #999;
  font-style: italic;
  padding-top: 15px;
  border-top: 1px solid #f0f0f0;
}

@media (max-width: 768px) {
  #testimonials {
    padding: 60px 0;
  }
  
  #testimonials .section-header h2 {
    font-size: 2.2rem;
  }
  
  .testimonial-card {
    margin-bottom: 25px;
  }
}

.terms-container {
        max-width: 1000px;
        margin: 0 auto;
        padding: 40px 20px;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        color: #2c3e50;
        line-height: 1.8;
        background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    }
    
    .terms-header {
        text-align: center;
        margin-bottom: 50px;
        padding: 30px;
        background: white;
        border-radius: 15px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }
    
    .terms-header h1 {
        color: #1e3a8a;
        font-size: 2.5em;
        margin-bottom: 10px;
        text-transform: uppercase;
        letter-spacing: 2px;
    }
    
    .terms-header .subtitle {
        color: #64748b;
        font-size: 1.1em;
        font-style: italic;
    }
    
    .terms-content {
        background: white;
        padding: 40px;
        border-radius: 15px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }
    
    .terms-section {
        margin-bottom: 35px;
        padding: 25px;
        background: #f8fafc;
        border-left: 5px solid #3b82f6;
        border-radius: 8px;
        transition: all 0.3s ease;
    }
    
    .terms-section:hover {
        transform: translateX(5px);
        box-shadow: 0 5px 15px rgba(59, 130, 246, 0.2);
    }
    
    .terms-section h2 {
        color: #1e40af;
        font-size: 1.6em;
        margin-bottom: 15px;
        display: flex;
        align-items: center;
        gap: 10px;
    }
    
    .terms-section h2::before {
        content: "§";
        font-size: 1.3em;
        color: #3b82f6;
        font-weight: bold;
    }
    
    .terms-section h3 {
        color: #475569;
        font-size: 1.2em;
        margin: 20px 0 10px 0;
        padding-left: 15px;
        border-left: 3px solid #94a3b8;
    }
    
    .terms-section p {
        margin-bottom: 15px;
        text-align: justify;
        color: #334155;
    }
    
    .terms-section ul {
        list-style: none;
        padding-left: 0;
    }
    
    .terms-section ul li {
        padding: 10px 0 10px 30px;
        position: relative;
        color: #475569;
    }
    
    .terms-section ul li::before {
        content: "✓";
        position: absolute;
        left: 0;
        color: #3b82f6;
        font-weight: bold;
        font-size: 1.2em;
    }
    
    .important-notice {
        background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
        border-left: 5px solid #f59e0b;
        padding: 20px;
        margin: 30px 0;
        border-radius: 8px;
        font-weight: 500;
    }
    
    .effective-date {
        text-align: center;
        margin-top: 40px;
        padding: 20px;
        background: #e0f2fe;
        border-radius: 8px;
        color: #0c4a6e;
        font-weight: 600;
    }
    
    @media (max-width: 768px) {
        .terms-container {
            padding: 20px 10px;
        }
        
        .terms-header h1 {
            font-size: 1.8em;
        }
        
        .terms-content {
            padding: 20px;
        }
        
        .terms-section {
            padding: 15px;
        }
    }

@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@400;600;700&family=Libre+Baskerville:wght@400;700&display=swap');

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

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

.faq-header h2 {
font-family: 'Quicksand', sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: hsl(51, 51%, 15%);
  margin-bottom: 20px;
}

.faq-header p {
  font-size: 1.1rem;
  color: #555;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

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

.faq-card {
  background: white;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  border-left: 4px solid hsl(51, 51%, 55%);
}

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

.faq-question {
  font-family: 'Quicksand', sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: hsl(51, 51%, 30%);
  margin-bottom: 15px;
  display: flex;
  align-items: start;
}

.faq-question::before {
  content: "Q";
  display: inline-block;
  width: 32px;
  height: 32px;
  background: hsl(51, 51%, 55%);
  color: white;
  border-radius: 50%;
  text-align: center;
  line-height: 32px;
  font-weight: 700;
  margin-right: 12px;
  flex-shrink: 0;
}

.faq-answer {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.8;
  padding-left: 44px;
}

.faq-answer strong {
  color: hsl(51, 51%, 20%);
}

@media (max-width: 768px) {
  .faq-section {
    padding: 50px 0;
  }
  
  .faq-header h2 {
    font-size: 2.2rem;
  }
  
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .faq-card {
    padding: 25px;
  }
}

@media (max-width: 480px) {
  .faq-header h2 {
    font-size: 1.8rem;
  }
  
  .faq-card {
    padding: 20px;
  }
  
  .faq-question {
    font-size: 1.1rem;
  }
}

@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@400;500;600;700&family=Libre+Baskerville:wght@400;700&display=swap');

.hero-section {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: hsl(51, 51%, 15%);
    padding: 80px 0;
}

.hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-image-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 2;
}

.hero-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-content {
    position: relative;
    z-index: 3;
    color: #ffffff;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.hero-content h1 {
    font-family: 'Quicksand', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
    line-height: 1.2;
}

.hero-content h2 {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 2rem;
    color: hsl(51, 51%, 55%);
    text-shadow: 1px 1px 3px rgba(0,0,0,0.6);
}

.hero-description {
    font-family: 'Libre Baskerville', serif;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    color: rgb(255,255,255);
    text-align: left;
    background: rgba(0,0,0,0.4);
    padding: 30px;
    border-radius: 8px;
    backdrop-filter: blur(5px);
}

.hero-features {
    list-style: none;
    padding: 0;
    margin: 2.5rem 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    text-align: left;
}

.hero-features li {
    font-family: 'Libre Baskerville', serif;
    font-size: 1rem;
    color: #f8f9fa;
    padding: 15px 20px;
    background: rgba(0,0,0,0.5);
    border-radius: 6px;
    border-left: 4px solid hsl(51, 51%, 55%);
    display: flex;
    align-items: center;
    gap: 12px;
}

.hero-features li i {
    color: hsl(51, 51%, 55%);
    font-size: 1.4rem;
    flex-shrink: 0;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.btn-primary-hero {
    font-family: 'Quicksand', sans-serif;
    background-color: hsl(51, 51%, 55%);
    color: #222;
    padding: 16px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.btn-primary-hero:hover {
    background-color: hsl(51, 51%, 30%);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}

.btn-secondary-hero {
    font-family: 'Quicksand', sans-serif;
    background-color: transparent;
    color: #fff;
    padding: 16px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border: 2px solid white;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-secondary-hero:hover {
    background-color: white;
    color: #222;
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content h2 {
        font-size: 1.4rem;
    }
    
    .hero-description {
        font-size: 1rem;
        padding: 20px;
    }
    
    .hero-features {
        grid-template-columns: 1fr;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary-hero,
    .btn-secondary-hero {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-section {
        min-height: 90vh;
    }
}

@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@400;500;600;700&family=Libre+Baskerville:wght@400;700&display=swap');

#blog {
  padding: 85px 0 90px;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  font-family: 'Libre Baskerville', serif;
}

#blog .section-header {
  text-align: center;
  margin-bottom: 65px;
}

#blog .section-header h2 {
  font-family: 'Quicksand', sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: hsl(51, 51%, 15%);
  margin-bottom: 18px;
  letter-spacing: -0.5px;
}

#blog .section-header .subtitle {
  font-size: 1.1rem;
  color: #555;
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.7;
}

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

.blog-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: all 0.35s ease;
  border: 1px solid rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
}

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

.blog-card-content {
  padding: 32px 28px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

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

.blog-category {
  background: hsl(51, 51%, 55%);
  color: hsl(51, 51%, 15%);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.82rem;
  font-weight: 600;
  font-family: 'Quicksand', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.blog-date {
  color: #666;
  font-size: 0.88rem;
  display: flex;
  align-items: center;
  gap: 6px;
}

.blog-read-time {
  color: #777;
  font-size: 0.88rem;
  margin-left: auto;
}

.blog-card h3 {
  font-family: 'Quicksand', sans-serif;
  font-size: 1.55rem;
  font-weight: 600;
  color: hsl(51, 51%, 30%);
  margin-bottom: 16px;
  line-height: 1.4;
  transition: color 0.3s ease;
}

.blog-card:hover h3 {
  color: hsl(51, 51%, 55%);
}

.blog-excerpt {
  color: #444;
  font-size: 0.96rem;
  line-height: 1.75;
  margin-bottom: 24px;
  flex-grow: 1;
}

.blog-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: hsl(51, 51%, 30%);
  text-decoration: none;
  font-weight: 600;
  font-family: 'Quicksand', sans-serif;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  align-self: flex-start;
}

.blog-link:hover {
  color: hsl(51, 51%, 55%);
  gap: 12px;
}

.blog-link::after {
  content: '→';
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.blog-link:hover::after {
  transform: translateX(4px);
}

.view-all-container {
  text-align: center;
  margin-top: 45px;
}

.btn-view-all {
  display: inline-block;
  padding: 16px 42px;
  background: hsl(51, 51%, 30%);
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  transition: all 0.35s ease;
  border: 2px solid hsl(51, 51%, 30%);
  letter-spacing: 0.3px;
}

.btn-view-all:hover {
  background: hsl(51, 51%, 55%);
  border-color: hsl(51, 51%, 55%);
  color: hsl(51, 51%, 15%);
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

@media (max-width: 768px) {
  #blog {
    padding: 60px 0 65px;
  }
  
  #blog .section-header h2 {
    font-size: 2.2rem;
  }
  
  .blog-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  
  .blog-card-content {
    padding: 26px 22px;
  }
  
  .blog-card h3 {
    font-size: 1.35rem;
  }
}

@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@400;600;700&family=Libre+Baskerville:wght@400;700&display=swap');

.promo-offer-section {
  font-family: 'Libre Baskerville', serif;
    background: linear-gradient(135deg, hsl(51, 51%, 30%) 0%, hsl(51, 51%, 15%) 100%);
  padding: 90px 0;
    position: relative;
  overflow: hidden;
}

.promo-offer-section::before {
    content: '';
  position: absolute;
    top: 0;
  left: 0;
    width: 100%;
    height: 100%;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
}

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

.promo-badge {
  display: inline-block;
    background: hsl(51, 51%, 55%);
  color: hsl(51, 51%, 15%);
    padding: 8px 24px;
  border-radius: 50px;
  font-family: 'Quicksand', sans-serif;
    font-weight: 700;
  font-size: 14px;
    letter-spacing: 1px;
  text-transform: uppercase;
    margin-bottom: 20px;
}

.promo-title {
  font-family: 'Quicksand', sans-serif;
    color: #ffffff;
  font-size: 3.2rem;
    font-weight: 700;
  margin-bottom: 25px;
    line-height: 1.2;
}

.promo-description {
  color: #f8f9fa;
    font-size: 1.1rem;
  line-height: 1.8;
    margin-bottom: 35px;
  max-width: 700px;
    margin-left: auto;
  margin-right: auto;
}

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

.date-block {
  background: linear-gradient(135deg, hsl(51, 51%, 55%) 0%, hsl(51, 51%, 40%) 100%);
    padding: 30px;
  border-radius: 15px;
    margin-bottom: 40px;
  text-align: center;
}

.date-label {
    font-family: 'Quicksand', sans-serif;
  color: hsl(51, 51%, 15%);
    font-size: 1rem;
  font-weight: 600;
    text-transform: uppercase;
  letter-spacing: 2px;
    margin-bottom: 12px;
}

.date-value {
  font-family: 'Quicksand', sans-serif;
    color: hsl(51, 51%, 15%);
  font-size: 2.8rem;
    font-weight: 700;
  display: flex;
    align-items: center;
  justify-content: center;
    gap: 15px;
}

.date-value i {
    font-size: 2.5rem;
}

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

.benefits-list li {
    display: flex;
  align-items: start;
    gap: 15px;
  margin-bottom: 20px;
    color: #333;
  font-size: 1.05rem;
}

.benefits-list i {
  color: hsl(51, 51%, 30%);
    font-size: 1.5rem;
  flex-shrink: 0;
    margin-top: 3px;
}

.discount-badge {
    background: hsl(51, 51%, 30%);
  color: #fff;
    padding: 15px 30px;
  border-radius: 10px;
    display: inline-block;
  font-family: 'Quicksand', sans-serif;
    font-size: 1.8rem;
  font-weight: 700;
    margin: 25px 0;
}

.promo-cta {
    background: hsl(51, 51%, 30%);
  color: #ffffff;
    padding: 18px 50px;
  border: none;
    border-radius: 50px;
  font-family: 'Quicksand', sans-serif;
    font-size: 1.2rem;
  font-weight: 700;
    text-transform: uppercase;
  letter-spacing: 1px;
    cursor: pointer;
  transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.promo-cta:hover {
    background: hsl(51, 51%, 15%);
  transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.promo-note {
  color: #666;
    font-size: 0.9rem;
  margin-top: 25px;
    font-style: italic;
}

@media(max-width: 768px) {
  .promo-title {
      font-size: 2.2rem;
  }
  
    .promo-card {
      padding: 35px 25px;
  }
  
    .date-value {
      font-size: 2rem;
  }
  
    .discount-badge {
      font-size: 1.4rem;
  }
}

@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@400;600;700&family=Libre+Baskerville:wght@400;700&display=swap');

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

.video-section::before {
content: '';
    position: absolute;
  top: 0;
left: 0;
  width: 100%;
    height: 100%;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="2" cy="2" r="1" fill="rgba(0,0,0,0.03)"/></svg>');
    pointer-events: none;
}

.video-header {
  text-align: center;
    margin-bottom: 50px;
}

.video-header h2 {
font-family: 'Quicksand', sans-serif;
  font-size: 2.8rem;
    font-weight: 700;
color: hsl(51, 51%, 15%);
  margin-bottom: 25px;
    position: relative;
  display: inline-block;
}

.video-header h2::after {
  content: '';
position: absolute;
    bottom: -12px;
left: 50%;
  transform: translateX(-50%);
    width: 80px;
  height: 4px;
    background: hsl(51, 51%, 55%);
border-radius: 2px;
}

.video-intro {
font-family: 'Libre Baskerville', serif;
    font-size: 1.05rem;
  line-height: 1.8;
color: #333;
    max-width: 850px;
  margin: 0 auto 45px;
    text-align: center;
padding: 0 15px;
}

.video-container-wrapper {
  max-width: 1000px;
margin: 0 auto;
    padding: 0 15px;
}

.video-container {
    position: relative;
padding-bottom: 56.25%;
  height: 0;
    overflow: hidden;
border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    transition: all 0.4s ease;
}

.video-container:hover {
box-shadow: 0 25px 70px rgba(0,0,0,0.2);
    transform: translateY(-5px);
}

.video-container iframe {
  position: absolute;
    top: 0;
left: 0;
    width: 100%;
  height: 100%;
border: none;
}

.video-overlay {
position: absolute;
    top: 0;
  left: 0;
width: 100%;
    height: 100%;
background: linear-gradient(135deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.4) 100%);
  display: flex;
    align-items: center;
justify-content: center;
    cursor: pointer;
  z-index: 10;
transition: background 0.3s ease;
    border-radius: 16px;
}

.video-overlay:hover {
  background: linear-gradient(135deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.3) 100%);
}

.video-overlay:hover .play-button {
    transform: scale(1.15);
}

.play-button {
  font-size: 90px;
color: white;
    transition: all 0.3s ease;
  text-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.video-cta {
    text-align: center;
margin-top: 45px;
  padding: 0 15px;
}

.video-cta p {
  font-family: 'Libre Baskerville', serif;
font-size: 1.1rem;
    color: #444;
  margin-bottom: 25px;
line-height: 1.7;
}

.cta-button {
    font-family: 'Quicksand', sans-serif;
font-weight: 600;
  padding: 14px 40px;
    background: hsl(51, 51%, 30%);
color: #fff;
    border: none;
  border-radius: 50px;
font-size: 1.05rem;
    transition: all 0.3s ease;
  text-decoration: none;
    display: inline-block;
box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.cta-button:hover {
  background: hsl(51, 51%, 55%);
    color: hsl(51, 51%, 15%);
transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

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

  .video-header h2 {
font-size: 2.2rem;
  }

.video-intro {
    font-size: 1rem;
  margin-bottom: 35px;
}

    .play-button {
font-size: 70px;
    }

.video-cta p {
    font-size: 1rem;
}
}

@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@400;600;700&family=Libre+Baskerville:wght@400;700&display=swap');

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

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

.disclaimer-header {
  text-align: center;
margin-bottom: 45px;
}

.disclaimer-icon {
    font-size: 48px;
  color: hsl(51, 51%, 30%);
margin-bottom: 20px;
    display: inline-block;
}

.disclaimer-title {
font-family: 'Quicksand', sans-serif;
    font-size: 2.5rem;
  font-weight: 700;
    color: #222;
  margin-bottom: 15px;
}

.disclaimer-content {
    background: white;
padding: 40px;
  border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  border-left: 5px solid hsl(51, 51%, 55%);
}

.disclaimer-text {
font-size: 15px;
    line-height: 1.8;
  color: #333;
    text-align: justify;
  margin-bottom: 0;
}

.disclaimer-text strong {
  color: hsl(51, 51%, 30%);
    font-weight: 700;
}

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

  .disclaimer-title {
font-size: 2rem;
  }
  
.disclaimer-content {
    padding: 30px 20px;
}

    .disclaimer-text {
  font-size: 14px;
    }
}

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

.disclaimer-icon {
font-size: 40px;
  }
}