:root {
--primary-color: hsl(350, 64%, 37%);
  --secondary-color: hsl(350, 64%, 22%);
--accent-color: hsl(350, 64%, 62%);
}

* {
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: #ffffff;
box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  padding: 1rem 0;
    transition: all 0.3s ease;
}

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

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

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

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

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

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

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

.navbar-toggler {
border: none;
  padding: 0.5rem;
}

.navbar-toggler:focus {
box-shadow: none;
outline: 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%28169, 35, 53, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

@media (max-width: 991px) {
.navbar-collapse {
background: white;
  padding: 1.5rem;
    margin-top: 1rem;
      border-radius: 8px;
box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

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

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

@media (min-width: 992px) {
.navbar-expand-lg .navbar-nav {
gap: 0.3rem;
}
}

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

    .cookies-policy-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);
    }

    .cookies-policy-header h1 {
        font-size: 2.8em;
        color: #1a237e;
        margin-bottom: 15px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 2px;
    }

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

    .last-updated {
        text-align: center;
        font-style: italic;
        color: #607d8b;
        margin-bottom: 40px;
        font-size: 0.95em;
    }

    .policy-section {
        background: white;
        margin-bottom: 30px;
        padding: 35px;
        border-radius: 12px;
        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: #283593;
        font-size: 1.9em;
        margin-bottom: 20px;
        padding-bottom: 12px;
        border-bottom: 3px solid #5c6bc0;
        font-weight: 600;
    }

    .policy-section h3 {
        color: #3949ab;
        font-size: 1.4em;
        margin-top: 25px;
        margin-bottom: 15px;
        font-weight: 600;
    }

    .policy-section p {
        margin-bottom: 18px;
        text-align: justify;
        color: #37474f;
        font-size: 1.05em;
    }

    .cookie-type-card {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        color: white;
        padding: 25px;
        margin: 20px 0;
        border-radius: 10px;
        border-left: 5px solid #ffd54f;
    }

    .cookie-type-card h4 {
        font-size: 1.3em;
        margin-bottom: 12px;
        font-weight: 600;
    }

    .cookie-type-card p {
        color: #f5f5f5;
        margin-bottom: 10px;
    }

    .cookie-list {
        background: #f8f9fa;
        padding: 25px;
        border-radius: 8px;
        margin: 20px 0;
        border-left: 4px solid #42a5f5;
    }

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

    .cookie-list li {
        padding: 12px 0;
        border-bottom: 1px solid #e0e0e0;
        color: #455a64;
        font-size: 1.05em;
    }

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

    .cookie-list li:before {
        content: "🍪";
        margin-right: 12px;
        font-size: 1.2em;
    }

    .consent-box {
        background: linear-gradient(135deg, #4caf50 0%, #81c784 100%);
        color: white;
        padding: 30px;
        border-radius: 12px;
        margin: 30px 0;
        box-shadow: 0 6px 20px rgba(76, 175, 80, 0.3);
    }

    .consent-box h3 {
        color: white;
        margin-top: 0;
        font-size: 1.6em;
    }

    .consent-box p {
        color: #f1f8e9;
    }

    .gdpr-compliance {
        background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
        color: white;
        padding: 30px;
        border-radius: 12px;
        margin: 30px 0;
        box-shadow: 0 6px 20px rgba(255, 107, 107, 0.3);
    }

    .gdpr-compliance h3 {
        color: white;
        margin-top: 0;
        font-size: 1.6em;
    }

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

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

    .control-card {
        background: #e3f2fd;
        padding: 25px;
        border-radius: 10px;
        border-top: 4px solid #2196f3;
        transition: all 0.3s ease;
    }

    .control-card:hover {
        background: #bbdefb;
        transform: scale(1.03);
    }

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

    .control-card p {
        color: #37474f;
        font-size: 0.98em;
    }

    .highlight-box {
        background: #fff3e0;
        border-left: 5px solid #ff9800;
        padding: 20px;
        margin: 25px 0;
        border-radius: 5px;
    }

    .highlight-box strong {
        color: #e65100;
        font-size: 1.1em;
    }

    .data-table {
        width: 100%;
        border-collapse: collapse;
        margin: 25px 0;
        background: white;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    }

    .data-table th {
        background: #3f51b5;
        color: white;
        padding: 15px;
        text-align: left;
        font-weight: 600;
        font-size: 1.05em;
    }

    .data-table td {
        padding: 15px;
        border-bottom: 1px solid #e0e0e0;
        color: #546e7a;
    }

    .data-table tr:hover {
        background: #f5f5f5;
    }

    @media (max-width: 768px) {
        .cookies-policy-container {
            padding: 20px 10px;
        }

        .cookies-policy-header h1 {
            font-size: 2em;
        }

        .policy-section {
            padding: 20px;
        }

        .control-options {
            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: linear-gradient(135deg, hsl(350, 64%, 22%) 0%, hsl(350, 64%, 37%) 100%);
  color: #f8f9fa;
  padding: 60px 0 20px;
  font-family: 'Libre Baskerville', serif;
  margin-top: 80px;
}

footer h4 {
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  color: white;
  margin-bottom: 25px;
  font-size: 1.4rem;
}

footer p, footer li, footer a {
  color: rgba(255,255,255,0.85);
  line-height: 1.8;
  font-size: 0.95rem;
}

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

footer a:hover {
  color: hsl(350, 64%, 62%);
  padding-left: 5px;
}

.footer-description {
  margin-bottom: 30px;
  color: rgba(255,255,255,0.9);
}

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

.footer-links li {
  margin-bottom: 12px;
}

.contact-info {
  list-style: none;
  padding: 0;
}

.contact-info li {
  margin-bottom: 15px;
  display: flex;
  align-items: start;
}

.contact-info i {
  margin-right: 10px;
  color: hsl(350, 64%, 62%);
  margin-top: 3px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.2);
  margin-top: 50px;
  padding-top: 25px;
  text-align: center;
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
}

#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: 30px 0;
  border-top: 3px solid hsl(350, 64%, 37%);
}

.cookie-content h5 {
  font-family: 'Quicksand', sans-serif;
  color: #222;
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 1.3rem;
}

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

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

.cookie-category {
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #dee2e6;
}

.cookie-category:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.cookie-category h6 {
  font-family: 'Quicksand', sans-serif;
  color: #333;
  font-size: 1rem;
  margin-bottom: 5px;
  font-weight: 600;
}

.cookie-category p {
  color: #666;
  font-size: 0.85rem;
  margin: 0;
  line-height: 1.5;
}

.cookie-category .badge {
  font-size: 0.7rem;
  padding: 4px 8px;
  margin-left: 8px;
}

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

.btn-accept-all {
  background: #28a745;
  color: white;
  border: none;
  padding: 12px 30px;
  border-radius: 6px;
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
  font-size: 1rem;
}

.btn-accept-all:hover {
  background: #218838;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(40,167,69,0.3);
}

.btn-reject {
  background: rgb(108, 117, 125);
  color: #fff;
  border: none;
  padding: 12px 30px;
  border-radius: 6px;
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
}

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

.btn-manage {
  color: hsl(350, 64%, 37%);
  text-decoration: none;
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  padding: 12px 20px;
  border: 2px solid hsl(350, 64%, 37%);
  border-radius: 6px;
  transition: all 0.3s ease;
  display: inline-block;
  font-size: 1rem;
}

.btn-manage:hover {
  background: hsl(350, 64%, 37%);
  color: white;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  footer {
    padding: 40px 0 20px;
  }
  
  footer h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
  }
  
  #cookieNotice {
    padding: 20px 0;
  }
  
  .cookie-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  
  .btn-accept-all, .btn-reject, .btn-manage {
    width: 100%;
    text-align: center;
  }
}

.blog-page {
            padding: 4rem 0;
        }
        .blog-page h1 {
            margin-bottom: 3rem;
            text-align: center;
            color: hsl(350, 64%, 37%);
        }
        .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(350, 64%, 37%);
        }
        .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(350, 64%, 62%);
        }
        .blog-read-more {
            background-color: hsl(350, 64%, 37%);
            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(350, 64%, 62%);
            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');

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

.hero-section {
  background: #ffffff;
  padding: 80px 20px 60px;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.hero-image-wrapper {
  margin-bottom: 35px;
  animation: fadeInDown 1s ease-out;
}

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

.hero-content h1 {
  font-family: 'Quicksand', sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: hsl(350, 64%, 37%);
  margin-bottom: 18px;
  line-height: 1.2;
  animation: fadeInUp 1.2s ease-out;
}

.hero-content h2 {
  font-family: 'Quicksand', sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: hsl(350, 64%, 22%);
  margin-bottom: 25px;
  animation: fadeInUp 1.4s ease-out;
}

.hero-description {
  font-family: 'Libre Baskerville', serif;
  font-size: 1.05rem;
  color: #333333;
  line-height: 1.8;
  margin-bottom: 32px;
  text-align: left;
  animation: fadeInUp 1.6s ease-out;
}

.hero-features {
  list-style: none;
  margin-bottom: 40px;
  text-align: left;
  animation: fadeInUp 1.8s ease-out;
}

.hero-features li {
  font-family: 'Libre Baskerville', serif;
  font-size: 1rem;
  color: #222;
  margin-bottom: 14px;
  padding-left: 32px;
  position: relative;
}

.hero-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: hsl(350, 64%, 62%);
  font-weight: bold;
  font-size: 1.3rem;
}

.hero-cta {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 2s ease-out;
}

.btn-primary-hero {
  background: hsl(350, 64%, 37%);
  color: white;
  padding: 14px 36px;
  border: none;
  border-radius: 8px;
  font-family: 'Quicksand', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.btn-primary-hero:hover {
  background: hsl(350, 64%, 22%);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.2);
  color: #fff;
}

.btn-secondary-hero {
  background: transparent;
  color: hsl(350, 64%, 37%);
  padding: 14px 36px;
  border: 2px solid hsl(350, 64%, 37%);
  border-radius: 8px;
  font-family: 'Quicksand', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

.btn-secondary-hero:hover {
  background: hsl(350, 64%, 37%);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.2);
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 60px 15px 40px;
  }
  
  .hero-content h1 {
    font-size: 2.2rem;
  }
  
  .hero-content h2 {
    font-size: 1.3rem;
  }
  
  .hero-description {
    font-size: 1rem;
  }
  
  .hero-cta {
    flex-direction: column;
    gap: 12px;
  }
  
  .btn-primary-hero,
  .btn-secondary-hero {
    width: 100%;
    padding: 12px 24px;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 1.8rem;
  }
  
  .hero-content h2 {
    font-size: 1.1rem;
  }
}

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

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

.about-section .section-title {
font-family: 'Quicksand', sans-serif;
    color: hsl(350, 64%, 37%);
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 25px;
    text-align: center;
}

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

.about-image-left {
    flex: 0 0 35%;
    max-width: 35%;
}

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

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

.about-text-center h3 {
    font-family: 'Quicksand', sans-serif;
    color: hsl(350, 64%, 22%);
    font-size: 1.9rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.about-text-center p {
    color: #333;
    line-height: 1.8;
    font-size: 1.05rem;
    margin-bottom: 18px;
}

.about-image-right {
    flex: 0 0 35%;
max-width: 35%;
}

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

.mission-block {
    background: white;
    padding: 40px;
    border-radius: 10px;
    margin-top: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.mission-block h4 {
    font-family: 'Quicksand', sans-serif;
    color: hsl(350, 64%, 37%);
font-size: 1.6rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.mission-block p {
    color: #444;
    line-height: 1.7;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.value-card {
    background: rgb(255,255,255);
    padding: 30px 25px;
    border-radius: 8px;
    text-align: center;
    border: 2px solid hsl(350, 64%, 62%);
transition: transform 0.3s ease;
}

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

.value-card h5 {
    font-family: 'Quicksand', sans-serif;
    color: hsl(350, 64%, 22%);
    font-size: 1.3rem;
    margin-bottom: 12px;
}

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

@media (max-width: 992px) {
    .about-content-wrapper {
        flex-direction: column;
    }
    
    .about-image-left,
    .about-image-right {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 50px 0;
    }
    
    .about-section .section-title {
        font-size: 2.2rem;
    }
    
    .about-text-center h3 {
        font-size: 1.6rem;
    }
}

@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%);
  position: relative;
  overflow: hidden;
}

#advantages::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, 
    hsl(350, 64%, 37%) 0%,
    hsl(350, 64%, 62%) 50%,
    hsl(350, 64%, 37%) 100%);
  z-index: 1;
}

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

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

.advantages-header p {
  font-family: 'Libre Baskerville', serif;
  font-size: 1.1rem;
  color: #555;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

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

.advantage-item {
  display: flex;
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}

.advantage-item:nth-child(odd) {
  flex-direction: row;
}

.advantage-item:nth-child(even) {
  flex-direction: row-reverse;
}

.advantage-content {
  width: calc(50% - 50px);
  padding: 30px;
  background: white;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  transition: all 0.4s ease;
  border: 2px solid transparent;
}

.advantage-item:nth-child(odd) .advantage-content {
  margin-right: auto;
  text-align: right;
}

.advantage-item:nth-child(even) .advantage-content {
  margin-left: auto;
  text-align: left;
}

.advantage-content:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(173, 35, 55, 0.15);
  border-color: hsl(350, 64%, 62%);
}

.advantage-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, hsl(350, 64%, 37%), hsl(350, 64%, 62%));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  box-shadow: 0 4px 15px rgba(173, 35, 55, 0.3);
  transition: transform 0.3s ease;
}

.advantage-item:hover .advantage-icon {
  transform: translateX(-50%) scale(1.15) rotate(360deg);
}

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

.advantage-content h3 {
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  font-size: 1.6rem;
  color: hsl(350, 64%, 22%);
  margin-bottom: 12px;
  margin-top: 0;
}

.advantage-content p {
  font-family: 'Libre Baskerville', serif;
  font-size: 0.95rem;
  color: #444;
  line-height: 1.8;
  margin: 0;
}

@media (max-width: 992px) {
  #advantages::before {
    left: 30px;
  }
  
  .advantage-item,
  .advantage-item:nth-child(odd),
  .advantage-item:nth-child(even) {
    flex-direction: row !important;
  }
  
  .advantage-content,
  .advantage-item:nth-child(odd) .advantage-content,
  .advantage-item:nth-child(even) .advantage-content {
    width: calc(100% - 100px);
    margin-left: 100px !important;
    text-align: left !important;
  }
  
  .advantage-icon {
    left: 30px;
    transform: translateX(0);
  }
  
  .advantage-item:hover .advantage-icon {
    transform: translateX(0) scale(1.15) rotate(360deg);
  }
}

@media (max-width: 576px) {
  .advantages-header h2 {
    font-size: 2rem;
  }
  
  .advantage-content {
    padding: 20px;
  }
  
  .advantage-content h3 {
    font-size: 1.3rem;
  }
  
  .advantage-icon {
    width: 55px;
    height: 55px;
  }
  
  .advantage-icon i {
    font-size: 24px;
  }
}

@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;
  color: hsl(350, 64%, 37%);
  font-weight: 700;
  margin-bottom: 15px;
}

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

.faq-tabs {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 45px;
  flex-wrap: wrap;
}

.faq-tab-btn {
  padding: 12px 28px;
  background: white;
  border: 2px solid hsl(350, 64%, 37%);
  color: hsl(350, 64%, 37%);
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  border-radius: 30px;
  transition: all 0.3s ease;
}

.faq-tab-btn:hover {
  background: hsl(350, 64%, 62%);
  border-color: hsl(350, 64%, 62%);
  color: white;
  transform: translateY(-2px);
}

.faq-tab-btn.active {
  background: hsl(350, 64%, 37%);
  color: #fff;
}

.faq-content {
  display: none;
}

.faq-content.active {
  display: block;
}

.faq-item {
  background: #ffffff;
  border-radius: 12px;
  margin-bottom: 20px;
  box-shadow: 0 3px 15px rgba(0,0,0,0.08);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 5px 25px rgba(0,0,0,0.12);
}

.faq-question {
  padding: 22px 30px;
  background: #fff;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: none;
  width: 100%;
  text-align: left;
  font-family: 'Quicksand', sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: #222;
  transition: background 0.3s ease;
}

.faq-question:hover {
  background: #f8f9fa;
}

.faq-question.active {
  background: hsl(350, 64%, 37%);
  color: white;
}

.faq-icon {
  font-size: 1.4em;
  font-weight: bold;
  color: hsl(350, 64%, 37%);
  transition: transform 0.3s ease;
  min-width: 25px;
  text-align: center;
}

.faq-question.active .faq-icon {
  transform: rotate(45deg);
  color: white;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 30px;
  background: #fafafa;
}

.faq-answer.active {
  max-height: 500px;
  padding: 25px 30px;
}

.faq-answer p {
  margin: 0;
  color: #444;
  line-height: 1.8;
  font-size: 1rem;
}

@media (max-width: 768px) {
  .faq-section {
    padding: 50px 0;
  }
  
  .faq-header h2 {
    font-size: 2.2rem;
  }
  
  .faq-tab-btn {
    padding: 10px 20px;
    font-size: 0.95rem;
  }
  
  .faq-question {
    padding: 18px 20px;
    font-size: 1.05rem;
  }
  
  .faq-answer.active {
    padding: 20px;
  }
}

@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, #f8f9fa 0%, #ffffff 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

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

.promo-offer-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(186, 39, 61, 0.05) 0%, transparent 70%);
  border-radius: 50%;
}

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

.promo-badge {
  display: inline-block;
  background: hsl(350, 64%, 37%);
  color: white;
  padding: 8px 24px;
  border-radius: 50px;
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(186, 39, 61, 0.3);
}

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

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

.promo-card {
  background: white;
  border-radius: 20px;
  padding: 50px 40px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
  margin-top: 40px;
  border: 3px solid hsl(350, 64%, 62%);
  position: relative;
}

.promo-card::before {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  background: linear-gradient(135deg, hsl(350, 64%, 37%), hsl(350, 64%, 62%));
  border-radius: 20px;
  z-index: -1;
  opacity: 0.1;
}

.offer-details {
  margin: 40px 0;
}

.offer-item {
  display: flex;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid #eee;
}

.offer-item:last-child {
  border-bottom: none;
}

.offer-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, hsl(350, 64%, 37%), hsl(350, 64%, 62%));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.3rem;
  margin-right: 20px;
  flex-shrink: 0;
}

.offer-text {
  font-size: 1rem;
  color: #333;
  line-height: 1.6;
}

.date-block {
  background: linear-gradient(135deg, hsl(350, 64%, 37%) 0%, hsl(350, 64%, 22%) 100%);
  padding: 35px;
  border-radius: 15px;
  margin: 45px 0;
  text-align: center;
  box-shadow: 0 8px 25px rgba(186, 39, 61, 0.25);
}

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

.date-value {
  font-family: 'Quicksand', sans-serif;
  color: white;
  font-size: 2.5rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.calendar-icon {
  font-size: 2.2rem;
}

.promo-cta {
  text-align: center;
  margin-top: 45px;
}

.cta-button {
  display: inline-block;
  background: linear-gradient(135deg, hsl(350, 64%, 37%), hsl(350, 64%, 62%));
  color: white;
  padding: 18px 50px;
  border-radius: 50px;
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(186, 39, 61, 0.3);
  border: none;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(186, 39, 61, 0.4);
  color: #fff;
  text-decoration: none;
}

.discount-badge {
  position: absolute;
  top: -20px;
  right: 40px;
  background: hsl(350, 64%, 62%);
  color: white;
  padding: 15px 25px;
  border-radius: 10px;
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  box-shadow: 0 5px 20px rgba(186, 39, 61, 0.4);
  transform: rotate(5deg);
}

@media (max-width: 768px) {
  .promo-title {
    font-size: 2rem;
  }
  
  .promo-card {
    padding: 35px 25px;
  }
  
  .date-value {
    font-size: 1.8rem;
    flex-direction: column;
    gap: 10px;
  }
  
  .discount-badge {
    position: static;
    display: inline-block;
    margin-bottom: 20px;
    transform: rotate(0deg);
  }
  
  .offer-item {
    flex-direction: column;
    text-align: center;
  }
  
  .offer-icon {
    margin-right: 0;
    margin-bottom: 12px;
  }
}

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

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

.contact-section .section-title {
font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  color: hsl(350, 64%, 22%);
  margin-bottom: 15px;
  font-size: 2.8rem;
}

.contact-section .section-subtitle {
  color: #555;
  font-size: 1.1rem;
  margin-bottom: 50px;
  line-height: 1.6;
}

.contact-form-wrapper {
background: white;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 5px 25px rgba(0,0,0,0.08);
}

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

.contact-form .form-label {
  color: #333;
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.contact-form .form-control,
.contact-form .form-select {
  border: 2px solid #e0e0e0;
  padding: 12px 15px;
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: #fafafa;
  color: #222;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
  border-color: hsl(350, 64%, 62%);
  box-shadow: 0 0 0 0.2rem rgba(186, 45, 68, 0.15);
  background: white;
  outline: none;
}

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

.contact-form .form-check-input {
  border: 2px solid #ccc;
  width: 1.3em;
  height: 1.3em;
}

.contact-form .form-check-input:checked {
  background-color: hsl(350, 64%, 37%);
  border-color: hsl(350, 64%, 37%);
}

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

.contact-form .form-check-label a {
  color: hsl(350, 64%, 37%);
  text-decoration: none;
  font-weight: 600;
}

.contact-form .form-check-label a:hover {
  color: hsl(350, 64%, 22%);
  text-decoration: underline;
}

.submit-btn {
  background: linear-gradient(135deg, hsl(350, 64%, 37%) 0%, hsl(350, 64%, 22%) 100%);
  color: #ffffff;
  padding: 14px 45px;
  border: none;
  border-radius: 8px;
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.4s ease;
  box-shadow: 0 4px 15px rgba(186, 45, 68, 0.3);
  width: 100%;
}

.submit-btn:hover {
  background: linear-gradient(135deg, hsl(350, 64%, 22%) 0%, hsl(350, 64%, 37%) 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(186, 45, 68, 0.4);
}

.gdpr-notice {
  margin-top: 20px;
padding: 18px;
  background: #f8f9fa;
  border-left: 4px solid hsl(350, 64%, 37%);
  font-size: 0.88rem;
  border-radius: 6px;
}

.gdpr-notice strong {
  color: hsl(350, 64%, 22%);
  font-family: 'Quicksand', sans-serif;
  display: block;
  margin-bottom: 8px;
}

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

.gdpr-notice a {
  color: hsl(350, 64%, 37%);
  text-decoration: none;
  font-weight: 600;
}

.gdpr-notice a:hover {
  color: hsl(350, 64%, 22%);
  text-decoration: underline;
}

.contact-info-wrapper {
  padding: 35px;
}

.contact-info-wrapper h3 {
  font-family: 'Quicksand', sans-serif;
  color: hsl(350, 64%, 37%);
  margin-bottom: 25px;
  font-weight: 600;
  font-size: 1.8rem;
}

.info-box {
background: white;
  padding: 25px;
  border-radius: 10px;
  margin-bottom: 20px;
  box-shadow: 0 3px 15px rgba(0,0,0,0.06);
  border-left: 4px solid hsl(350, 64%, 62%);
  transition: all 0.3s ease;
}

.info-box:hover {
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  transform: translateX(5px);
}

.info-box h4 {
  font-family: 'Quicksand', sans-serif;
  color: hsl(350, 64%, 22%);
  font-size: 1.2rem;
  margin-bottom: 12px;
  font-weight: 600;
}

.info-box p {
  color: #444;
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.7;
}

.info-box a {
  color: hsl(350, 64%, 37%);
  text-decoration: none;
  font-weight: 600;
}

.info-box a:hover {
  color: hsl(350, 64%, 22%);
}

.consultation-process {
  background: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 3px 15px rgba(0,0,0,0.06);
  margin-top: 25px;
}

.consultation-process h4 {
  font-family: 'Quicksand', sans-serif;
  color: hsl(350, 64%, 37%);
  margin-bottom: 18px;
  font-weight: 600;
  font-size: 1.4rem;
}

.consultation-process ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.consultation-process ul li {
  padding: 12px 0 12px 35px;
  position: relative;
  color: #444;
  font-size: 0.95rem;
  line-height: 1.6;
  border-bottom: 1px solid #f0f0f0;
}

.consultation-process ul li:last-child {
  border-bottom: none;
}

.consultation-process ul li:before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 12px;
  color: white;
  background: hsl(350, 64%, 62%);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .contact-section {
    padding: 60px 0;
  }
  
  .contact-section .section-title {
    font-size: 2.2rem;
  }
  
  .contact-form-wrapper,
  .contact-info-wrapper {
    padding: 25px;
  }
  
  .submit-btn {
    padding: 12px 30px;
  }
}

@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-title {
font-family: 'Quicksand', sans-serif;
  font-weight: 700;
    font-size: 2.8rem;
color: hsl(350, 64%, 22%);
  margin-bottom: 15px;
      text-align: center;
}

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

.nav-tabs {
border-bottom: 2px solid hsl(350,64%,62%);
  justify-content: center;
    margin-bottom: 50px;
}

.nav-tabs .nav-link {
font-family: 'Quicksand',sans-serif;
font-weight: 600;
  color: #666;
      border: none;
padding: 12px 28px;
  margin: 0 8px;
    transition: all 0.3s ease;
}

.nav-tabs .nav-link:hover {
color: hsl(350, 64%, 37%);
  background: rgba(182, 33, 56, 0.05);
}

.nav-tabs .nav-link.active {
  color: white;
background-color: hsl(350,64%,37%);
    border-radius: 6px 6px 0 0;
}

.service-card {
background: white;
  border-radius: 12px;
    padding: 30px;
  margin-bottom: 30px;
box-shadow: 0 3px 15px rgba(0,0,0,0.08);
      transition: all 0.4s ease;
  border-left: 4px solid hsl(350, 64%, 62%);
height: 100%;
}

.service-card:hover {
transform: translateY(-8px);
box-shadow: 0 8px 25px rgba(182,33,56,0.15);
  border-left-color: hsl(350,64%,37%);
}

.service-icon {
  font-size: 2.8rem;
color: hsl(350, 64%, 37%);
    margin-bottom: 20px;
display: inline-block;
}

.service-card h3 {
font-family: 'Quicksand', sans-serif;
  font-weight: 700;
font-size: 1.5rem;
    color: hsl(350, 64%, 22%);
  margin-bottom: 15px;
}

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

.service-price {
font-family: 'Quicksand',sans-serif;
font-weight: 700;
  font-size: 1.4rem;
    color: hsl(350,64%,37%);
margin-top: auto;
  display: block;
}

.service-conditions {
background: rgb(248, 249, 250);
  padding: 15px 20px;
border-radius: 8px;
    margin-top: 15px;
  font-size: 0.9rem;
      color: #444;
}

.service-conditions ul {
  margin: 0;
padding-left: 20px;
}

.service-conditions li {
margin-bottom: 6px;
}

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

  .services-section .section-title {
font-size: 2rem;
  }
  
.nav-tabs .nav-link {
      padding: 10px 18px;
  margin: 0 4px;
    font-size: 0.9rem;
}
}

@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;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  font-family: 'Libre Baskerville', serif;
}

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

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

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

.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  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.4s ease;
  border: 1px solid rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
}

.blog-card:first-child {
  grid-column: 1 / -1;
}

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

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

.blog-card:first-child .blog-card-content {
  padding: 45px;
}

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

.blog-category {
  display: inline-block;
  padding: 6px 16px;
  background: hsl(350, 64%, 62%);
  color: white;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-family: 'Quicksand', sans-serif;
}

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

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

.blog-card h3 {
  font-family: 'Quicksand', sans-serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: #222;
  margin-bottom: 16px;
  line-height: 1.4;
  transition: color 0.3s;
}

.blog-card:first-child h3 {
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.blog-card:hover h3 {
  color: hsl(350, 64%, 37%);
}

.blog-excerpt {
  color: #555;
  line-height: 1.8;
  margin-bottom: 25px;
  font-size: 0.98rem;
  flex-grow: 1;
}

.blog-card:first-child .blog-excerpt {
  font-size: 1.05rem;
  line-height: 1.9;
}

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

.blog-link:hover {
  color: hsl(350, 64%, 22%);
  gap: 12px;
}

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

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

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

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

.btn-view-all:hover {
  background: hsl(350, 64%, 22%);
  border-color: hsl(350, 64%, 22%);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(165, 29, 42, 0.25);
  color: white;
}

@media (max-width: 992px) {
  .blog-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .blog-card:first-child {
    grid-column: 1;
  }
  
  #blog .section-header h2 {
    font-size: 2.3rem;
  }
  
  .blog-card h3 {
    font-size: 1.4rem;
  }
  
  .blog-card:first-child h3 {
    font-size: 1.8rem;
  }
}

@media (max-width: 768px) {
  #blog {
    padding: 60px 0;
  }
  
  .blog-card-content {
    padding: 25px;
  }
  
  .blog-card:first-child .blog-card-content {
    padding: 30px;
  }
  
  #blog .section-header h2 {
    font-size: 2rem;
  }
  
  .blog-meta {
    gap: 12px;
  }
  
  .blog-read-time {
    margin-left: 0;
    width: 100%;
  }
}

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

.newsletter-section {
    background: linear-gradient(135deg, hsl(350, 64%, 37%) 0%, hsl(350, 64%, 22%) 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-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 20px;
}

.newsletter-icon {
    width: 70px;
    height: 70px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 32px;
    color: #fff;
}

.newsletter-title {
    font-family: 'Quicksand', sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 18px;
    letter-spacing: -0.5px;
}

.newsletter-subtitle {
    font-family: 'Libre Baskerville', serif;
    font-size: 18px;
    color: rgba(255,255,255,0.9);
    margin-bottom: 35px;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.form-group-newsletter {
    display: flex;
    gap: 12px;
    margin-bottom: 0;
}

.newsletter-input {
    flex: 1;
    padding: 16px 24px;
    border: 2px solid rgba(255,255,255,0.2);
    border-radius: 50px;
    font-family: 'Libre Baskerville', serif;
    font-size: 15px;
    background: rgba(255,255,255,0.95);
    color: #333;
    transition: all 0.3s ease;
}

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

.newsletter-input::placeholder {
    color: #999;
}

.newsletter-btn {
    padding: 16px 40px;
    background: #ffffff;
    color: hsl(350, 64%, 37%);
    border: none;
    border-radius: 50px;
    font-family: 'Quicksand', sans-serif;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.newsletter-btn:hover {
    background: hsl(350, 64%, 62%);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

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

.benefit-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.95);
    font-family: 'Libre Baskerville', serif;
    font-size: 14px;
}

.benefit-icon {
    width: 22px;
    height: 22px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .newsletter-section {
        padding: 60px 0;
    }
    
    .newsletter-title {
        font-size: 32px;
    }
    
    .newsletter-subtitle {
        font-size: 16px;
    }
    
    .form-group-newsletter {
        flex-direction: column;
    }
    
    .newsletter-btn {
        width: 100%;
    }
    
    .newsletter-benefits {
        gap: 20px;
    }
}

@media (max-width: 576px) {
    .newsletter-title {
        font-size: 28px;
    }
    
    .newsletter-icon {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }
}

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

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

.statistics-section .section-title {
font-family: 'Quicksand', sans-serif;
  font-size: 2.8rem;
    font-weight: 700;
  color: hsl(350, 64%, 22%);
  margin-bottom: 15px;
    text-align: center;
}

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

.stat-circle {
    position: relative;
  width: 180px;
height: 180px;
  margin: 0 auto 25px;
    display: flex;
align-items: center;
  justify-content: center;
    border-radius: 50%;
  background: white;
box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  transition: all 0.4s ease;
}

.stat-circle:hover {
transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.stat-circle::before {
  content: '';
    position: absolute;
  top: -5px;
    left: -5px;
right: -5px;
  bottom: -5px;
    border-radius: 50%;
  background: linear-gradient(135deg, hsl(350, 64%, 37%) 0%, hsl(350, 64%, 62%) 100%);
    opacity: 0.15;
z-index: -1;
}

.stat-content {
text-align: center;
  z-index: 2;
}

.stat-icon {
    font-size: 2.5rem;
  color: hsl(350, 64%, 37%);
margin-bottom: 12px;
    display: block;
}

.stat-number {
  font-family: 'Quicksand', sans-serif;
    font-size: 2rem;
font-weight: 700;
    color: hsl(350, 64%, 22%);
  display: block;
    margin-bottom: 5px;
}

.stat-label {
font-size: 0.95rem;
    color: #666;
  font-weight: 400;
}

.stat-item {
  margin-bottom: 40px;
}

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

  .statistics-section .section-title {
font-size: 2.2rem;
  }
  
.stat-circle {
    width: 150px;
  height: 150px;
}

  .stat-number {
    font-size: 1.7rem;
}
}

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

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

.portfolio-section .section-title {
font-family: 'Quicksand', sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: hsl(350, 64%, 22%);
  margin-bottom: 15px;
  text-align: center;
}

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

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  padding: 0 15px;
}

.portfolio-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: all 0.4s ease;
  cursor: pointer;
  position: relative;
  padding: 35px 30px;
}

.portfolio-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(180, 39, 52, 0.2);
}

.portfolio-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, hsl(350, 64%, 37%), hsl(350, 64%, 62%));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

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

.portfolio-card .card-category {
  display: inline-block;
  padding: 6px 16px;
  background: hsl(350, 64%, 62%);
  color: white;
  border-radius: 20px;
  font-size: 0.85rem;
  font-family: 'Quicksand', sans-serif;
  margin-bottom: 18px;
  font-weight: 600;
}

.portfolio-card .card-title {
  font-family: 'Quicksand', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: hsl(350, 64%, 22%);
  margin-bottom: 12px;
}

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

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

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

.portfolio-card .card-tech {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.portfolio-card .tech-tag {
  background: #f1f3f5;
  padding: 4px 12px;
  border-radius: 15px;
  font-size: 0.8rem;
  color: #495057;
}

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

.modal-header {
  background: linear-gradient(135deg, hsl(350, 64%, 37%), hsl(350, 64%, 62%));
  color: white;
  border-radius: 15px 15px 0 0;
  padding: 25px 30px;
}

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

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

.modal-body {
  padding: 35px;
  font-family: 'Libre Baskerville', serif;
  color: #333;
}

.modal-body h5 {
  font-family: 'Quicksand', sans-serif;
  color: hsl(350, 64%, 37%);
  margin-top: 25px;
  margin-bottom: 15px;
  font-weight: 600;
}

.modal-body p {
  line-height: 1.8;
  color: #555;
}

.modal-body .results-list {
  list-style: none;
  padding-left: 0;
}

.modal-body .results-list li {
  padding: 10px 0;
  padding-left: 30px;
  position: relative;
  color: #555;
}

.modal-body .results-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: hsl(350, 64%, 37%);
  font-weight: bold;
  font-size: 1.2rem;
}

@media (max-width: 768px) {
  .portfolio-section {
    padding: 60px 0;
  }
  
  .portfolio-section .section-title {
    font-size: 2.2rem;
  }
  
  .portfolio-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .portfolio-card {
    padding: 28px 25px;
  }
}

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

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

.video-section h2 {
font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  color: hsl(350, 64%, 22%);
  margin-bottom: 25px;
  font-size: 2.5rem;
}

.video-intro-text {
  color: #333;
  line-height: 1.8;
  margin-bottom: 45px;
  font-size: 1.05rem;
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
}

.video-wrapper {
position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
  background-color: #000;
  transition: all 0.4s ease;
}

.video-wrapper:hover {
  box-shadow: 0 20px 45px rgba(0,0,0,0.25);
  transform: translateY(-5px);
}

.video-wrapper 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(rgba(0,0,0,0.3), rgba(0,0,0,0.5));
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: background 0.3s ease;
}

.video-overlay:hover {
background: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.4));
}

.video-overlay .play-button {
  font-size: 5rem;
  color: white;
  transition: all 0.3s ease;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
}

.video-overlay:hover .play-button {
  transform: scale(1.15);
  color: hsl(350, 64%, 62%);
}

.video-cta {
  margin-top: 40px;
  padding: 30px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.video-cta h4 {
  font-family: 'Quicksand', sans-serif;
  color: hsl(350, 64%, 37%);
  margin-bottom: 15px;
  font-weight: 600;
}

.video-cta p {
color: #555;
  line-height: 1.7;
  margin-bottom: 20px;
}

.cta-button {
  display: inline-block;
  padding: 12px 35px;
  background-color: hsl(350, 64%, 37%);
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.cta-button:hover {
  background-color: hsl(350, 64%, 22%);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.2);
  text-decoration: none;
}

@media (max-width: 768px) {
  .video-section h2 {
    font-size: 2rem;
  }
  
  .video-overlay .play-button {
    font-size: 3.5rem;
  }
  
  .video-section {
    padding: 60px 0;
  }
}

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

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

.testimonials-section .section-title {
font-family: 'Quicksand', sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
    color: hsl(350, 64%, 37%);
  margin-bottom: 15px;
    text-align: center;
}

.testimonials-section .section-subtitle {
  font-size: 1.1rem;
color: #555;
  text-align: center;
  margin-bottom: 55px;
  max-width: 680px;
margin-left: auto;
  margin-right: auto;
}

.testimonial-card {
    background: white;
  border-radius: 12px;
    padding: 32px 28px;
  box-shadow: 0 3px 15px rgba(0,0,0,0.08);
transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: 30px;
    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-rating {
  margin-bottom: 18px;
    color: hsl(350, 64%, 62%);
font-size: 1.2rem;
}

.testimonial-text {
  font-size: 15px;
    line-height: 1.7;
  color: #444;
  margin-bottom: 22px;
    flex-grow: 1;
  font-style: italic;
}

.testimonial-author {
  border-top: 1px solid #e9ecef;
padding-top: 18px;
  display: flex;
    justify-content: space-between;
align-items: center;
}

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

.author-info p {
  font-size: 0.88rem;
  color: rgb(120, 120, 120);
margin-bottom: 0;
}

.testimonial-date {
font-size: 0.85rem;
    color: #888;
  font-style: normal;
}

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

  .testimonials-section .section-title {
font-size: 2.2rem;
  }
  
.testimonial-card {
    padding: 25px 20px;
  }
}

@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: 65px 0 70px;
  font-family: 'Libre Baskerville', serif;
}

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

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

.disclaimer-icon {
  font-size: 48px;
  color: hsl(350, 64%, 37%);
    margin-bottom: 18px;
  display: inline-block;
}

.disclaimer-title {
  font-family: 'Quicksand', sans-serif;
    font-size: 2.2rem;
  font-weight: 700;
  color: #222;
    margin-bottom: 0;
  letter-spacing: 0.5px;
}

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

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

.disclaimer-text strong {
  color: hsl(350, 64%, 22%);
    font-weight: 700;
}

@media (max-width: 768px) {
  .disclaimer-section {
    padding: 50px 0 55px;
  }
  
  .disclaimer-title {
      font-size: 1.8rem;
  }
  
  .disclaimer-content {
      padding: 32px 25px;
  }
  
  .disclaimer-text {
    font-size: 14px;
      text-align: left;
  }
  
  .disclaimer-icon {
      font-size: 40px;
  }
}

@media (max-width: 480px) {
  .disclaimer-section {
    padding: 40px 0;
  }
  
  .disclaimer-content {
    padding: 28px 20px;
      border-left-width: 3px;
  }
  
  .disclaimer-title {
    font-size: 1.6rem;
  }
}

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

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

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

  .last-updated {
    color: #f0f0f0;
    font-size: 1.1em;
    font-style: italic;
  }

  .content-wrapper {
    background: #ffffff;
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.1);
  }

  .intro-text {
    font-size: 1.15em;
    color: #555;
    margin-bottom: 40px;
    padding: 25px;
    background: #f8f9fa;
    border-left: 5px solid #667eea;
    border-radius: 8px;
  }

  .company-info {
    background: #e8f4f8;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 30px;
    border: 2px solid #667eea;
  }

  .section-title {
    color: #667eea;
    font-size: 2em;
    margin: 50px 0 25px 0;
    padding-bottom: 15px;
    border-bottom: 3px solid #667eea;
    font-weight: 700;
  }

  .subsection-title {
    color: #764ba2;
    font-size: 1.5em;
    margin: 30px 0 15px 0;
    font-weight: 600;
  }

  .info-box {
    background: #f0f7ff;
    padding: 25px;
    border-radius: 10px;
    margin: 25px 0;
    border-left: 5px solid #4a90e2;
  }

  .warning-box {
    background: #fff3cd;
    padding: 25px;
    border-radius: 10px;
    margin: 25px 0;
    border-left: 5px solid #ffc107;
  }

  .rights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin: 30px 0;
  }

  .right-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 25px;
    border-radius: 12px;
    color: #ffffff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
  }

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

  .right-card h4 {
    margin-top: 0;
    font-size: 1.3em;
    margin-bottom: 10px;
  }

  .platform-section {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    margin: 20px 0;
  }

  .platform-name {
    color: #667eea;
    font-weight: 700;
    font-size: 1.2em;
    margin-bottom: 10px;
  }

  ul {
    padding-left: 25px;
    margin: 15px 0;
  }

  li {
    margin: 10px 0;
    color: #555;
  }

  strong {
    color: #2c3e50;
    font-weight: 600;
  }

  .highlight {
    background: #fff3cd;
    padding: 2px 6px;
    border-radius: 3px;
  }

  .contact-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    padding: 40px;
    border-radius: 15px;
    margin-top: 50px;
    text-align: center;
  }

  @media (max-width: 768px) {
    .privacy-header h1 {
      font-size: 2em;
    }
    
    .content-wrapper {
      padding: 30px 20px;
    }
    
    .section-title {
      font-size: 1.6em;
    }
    
    .rights-grid {
      grid-template-columns: 1fr;
    }
  }

* {
    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 6px rgba(0,0,0,0.1);
  }
  
  .header-section h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
  }
  
  .header-section .subtitle {
    font-size: 1.2rem;
    opacity: 0.95;
    margin-bottom: 20px;
  }
  
  .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(350, 64%, 37%) 0%, hsl(350, 64%, 22%) 100%);
    color: white;
    padding: 40px 20px;
    text-align: center;
    margin-bottom: 40px;
    border-radius: 15px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
  }
  
  .entity-banner h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    word-wrap: break-word;
  }
  
  .entity-banner .subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
  }
  
  .info-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.15);
  }
  
  .card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: hsl(350, 64%, 37%);
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 3px solid hsl(350, 64%, 62%);
  }
  
  .info-row {
    display: flex;
    padding: 15px 0;
    border-bottom: 1px solid #e0e0e0;
    align-items: center;
  }
  
  .info-row:last-child {
    border-bottom: none;
  }
  
  .info-label {
    flex: 0 0 40%;
    font-weight: 600;
    color: #2c3e50;
    font-size: 0.95rem;
  }
  
  .info-value {
    flex: 0 0 60%;
    color: #34495e;
    font-size: 0.95rem;
  }
  
  .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 20px;
    text-align: center;
    border-radius: 15px;
    margin-top: 40px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
  }
  
  .excellence-footer h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
  }
  
  .excellence-footer p {
    font-size: 1.05rem;
    line-height: 1.8;
    opacity: 0.95;
    max-width: 900px;
    margin: 0 auto;
  }
  
  @media (max-width: 768px) {
    .header-section h1 {
      font-size: 1.8rem;
    }
    
    .entity-banner h2 {
      font-size: 1.6rem;
    }
    
    .info-row {
      flex-direction: column;
      align-items: flex-start;
    }
    
    .info-label, .info-value {
      flex: 0 0 100%;
    }
    
    .info-label {
      margin-bottom: 5px;
    }
    
    .card-title {
      font-size: 1.3rem;
    }
  }

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

  .terms-header {
    text-align: center;
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: 3px solid #3498db;
  }

  .terms-header h1 {
    font-size: 2.8em;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
  }

  .last-updated {
    font-size: 0.95em;
    color: #7f8c8d;
    font-style: italic;
  }

  .terms-section {
    background: white;
    padding: 40px;
    margin-bottom: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .terms-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  }

  .terms-section h2 {
    font-size: 1.9em;
    color: #3498db;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #ecf0f1;
    font-weight: 600;
  }

  .terms-section h3 {
    font-size: 1.4em;
    color: #34495e;
    margin-top: 25px;
    margin-bottom: 15px;
    font-weight: 600;
  }

  .terms-section p {
    margin-bottom: 20px;
    text-align: justify;
    font-size: 1.05em;
  }

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

  .terms-section li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 10px;
  }

  .terms-section li:before {
    content: "▸";
    color: #3498db;
    font-weight: bold;
    position: absolute;
    left: -15px;
  }

  .important-notice {
    background: #fff3cd;
    border-left: 5px solid #ffc107;
    padding: 20px;
    margin: 25px 0;
    border-radius: 5px;
  }

  .important-notice strong {
    color: #856404;
    display: block;
    margin-bottom: 10px;
    font-size: 1.1em;
  }

  .highlight {
    background: linear-gradient(120deg, #84fab0 0%, #8fd3f4 100%);
    padding: 2px 6px;
    border-radius: 3px;
    font-weight: 600;
  }

  @media (max-width: 768px) {
    .terms-container {
      padding: 30px 15px;
    }

    .terms-header h1 {
      font-size: 2em;
    }

    .terms-section {
      padding: 25px;
    }

    .terms-section h2 {
      font-size: 1.5em;
    }
  }