@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&family=Raleway:wght@300;400;500;600&display=swap');
        
        :root {
            --primary-color: hsl(342, 59%, 34%);
            --secondary-color: hsl(342, 59%, 19%);
            --accent-color: hsl(342, 59%, 59%);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Raleway', sans-serif;
            color: #333;
            background: white;
            line-height: 1.6;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Inter', sans-serif;
            font-weight: 700;
        }


        .navbar {
            background-color: #fff;
            box-shadow: 0 2px 15px 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: 'Inter', sans-serif;
            font-weight: 700;
            font-size: 1.4rem;
            color: var(--primary-color);
            transition: color 0.3s;
        }
        
        .navbar-brand:hover {
            color: var(--accent-color);
        }
        
        .navbar-brand img {
            transition: transform 0.3s ease;
        }
        
        .navbar-brand:hover img {
            transform: scale(1.05);
        }
        
        .navbar-nav .nav-link {
            color: #333;
            font-weight: 500;
            padding: 0.5rem 1rem;
            margin: 0 0.2rem;
            transition: all 0.3s;
            position: relative;
            font-size: 15px;
        }
        
        .navbar-nav .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 2px;
            background: var(--accent-color);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--primary-color);
        }
        
        .navbar-nav .nav-link:hover::after {
            width: 80%;
        }
        
        .navbar-toggler {
            border: none;
            padding: 0.5rem;
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
            outline: 2px solid var(--accent-color);
        }
        
        .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%28167, 42, 73, 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 12px rgba(0,0,0,0.1);
            }
            
            .navbar-nav .nav-link {
                padding: 0.75rem 1rem;
                border-bottom: 1px solid #f0f0f0;
            }
            
            .navbar-nav .nav-link:last-child {
                border-bottom: none;
            }
            
            .navbar-nav .nav-link::after {
                display: none;
            }
        }
        
        @media (min-width: 992px) {
            .navbar-expand-lg .navbar-nav {
                gap: 0.3rem;
            }
        }

.cookies-policy {
        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;
    }
    
    .cookies-policy h1 {
        font-size: 2.8em;
        color: #1a252f;
        text-align: center;
        margin-bottom: 20px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 2px;
        text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
    }
    
    .cookies-policy .last-updated {
        text-align: center;
        color: #7f8c8d;
        font-style: italic;
        margin-bottom: 40px;
        font-size: 1.1em;
    }
    
    .cookies-policy h2 {
        font-size: 2em;
        color: #34495e;
        margin-top: 40px;
        margin-bottom: 20px;
        padding-bottom: 10px;
        border-bottom: 3px solid #3498db;
        font-weight: 600;
    }
    
    .cookies-policy h3 {
        font-size: 1.5em;
        color: #2c3e50;
        margin-top: 30px;
        margin-bottom: 15px;
        font-weight: 600;
    }
    
    .cookies-policy p {
        margin-bottom: 20px;
        text-align: justify;
        font-size: 1.1em;
        background: rgba(255, 255, 255, 0.7);
        padding: 15px;
        border-radius: 8px;
        box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    }
    
    .cookies-policy ul {
        list-style: none;
        padding-left: 0;
        margin: 25px 0;
    }
    
    .cookies-policy ul li {
        background: white;
        margin: 12px 0;
        padding: 18px 20px 18px 50px;
        border-left: 5px solid #3498db;
        border-radius: 8px;
        position: relative;
        box-shadow: 0 3px 10px rgba(0,0,0,0.08);
        transition: all 0.3s ease;
        font-size: 1.05em;
    }
    
    .cookies-policy ul li:hover {
        transform: translateX(5px);
        box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
    }
    
    .cookies-policy ul li:before {
        content: "🍪";
        position: absolute;
        left: 18px;
        font-size: 1.3em;
    }
    
    .cookie-table {
        width: 100%;
        border-collapse: collapse;
        margin: 30px 0;
        background: white;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    }
    
    .cookie-table th {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        color: white;
        padding: 18px;
        text-align: left;
        font-weight: 600;
        font-size: 1.1em;
        text-transform: uppercase;
        letter-spacing: 1px;
    }
    
    .cookie-table td {
        padding: 18px;
        border-bottom: 1px solid #ecf0f1;
        font-size: 1.05em;
    }
    
    .cookie-table tr:hover {
        background-color: #f8f9fa;
    }
    
    .info-box {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        color: white;
        padding: 25px;
        border-radius: 12px;
        margin: 30px 0;
        box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
    }
    
    .info-box h3 {
        color: white;
        margin-top: 0;
        font-size: 1.6em;
    }
    
    .warning-box {
        background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
        color: white;
        padding: 25px;
        border-radius: 12px;
        margin: 30px 0;
        box-shadow: 0 8px 20px rgba(245, 87, 108, 0.4);
    }
    
    .warning-box h3 {
        color: white;
        margin-top: 0;
    }
    
    .consent-section {
        background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
        color: white;
        padding: 30px;
        border-radius: 12px;
        margin: 30px 0;
        box-shadow: 0 8px 25px rgba(79, 172, 254, 0.4);
    }
    
    .consent-section h2 {
        color: white;
        border-bottom: 3px solid white;
        margin-top: 0;
    }
    
    strong {
        color: #2c3e50;
        font-weight: 700;
    }

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&family=Raleway:wght@300;400;500;600&display=swap');

footer {
  background: hsl(342, 59%, 19%);
  color: #f8f9fa;
  padding: 60px 0 20px;
  font-family: 'Raleway', sans-serif;
  margin-top: 80px;
}

footer h4 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 25px;
  font-size: 1.3rem;
}

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

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

footer a:hover {
  color: hsl(342, 59%, 59%);
}

.footer-description {
  margin-bottom: 1.5rem;
  color: #d0d0d0;
}

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

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

.contact-info strong {
  min-width: 120px;
  color: #fff;
  font-weight: 600;
}

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

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

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

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

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

.cookie-content p {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

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

.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 strong {
  color: #333;
  font-size: 1rem;
  display: block;
  margin-bottom: 5px;
}

.cookie-category span {
  color: #666;
  font-size: 0.88rem;
}

.cookie-required {
  color: hsl(342, 59%, 34%);
  font-weight: 600;
  font-size: 0.85rem;
}

.cookie-optional {
  color: #6c757d;
  font-weight: 500;
  font-size: 0.85rem;
}

.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-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Raleway', sans-serif;
}

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

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

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

.btn-manage {
  color: hsl(342, 59%, 34%);
  text-decoration: none;
  font-weight: 600;
  padding: 12px 20px;
  border: 2px solid hsl(342, 59%, 34%);
  border-radius: 6px;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-manage:hover {
  background: hsl(342, 59%, 34%);
  color: white;
}

@media (max-width: 768px) {
  footer {
    padding: 40px 0 20px;
  }
  
  footer h4 {
    font-size: 1.15rem;
    margin-bottom: 20px;
  }
  
  .contact-info strong {
    min-width: 100px;
    font-size: 0.9rem;
  }
  
  #cookieNotice {
    padding: 20px 0;
  }
  
  .cookie-buttons {
    flex-direction: column;
    gap: 10px;
  }
  
  .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(342, 59%, 34%);
        }
        .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(342, 59%, 34%);
        }
        .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(342, 59%, 59%);
        }
        .blog-read-more {
            background-color: hsl(342, 59%, 34%);
            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(342, 59%, 59%);
            color: white;
            transform: translateX(5px);
        }

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700;800&family=Raleway:wght@300;400;500;600&display=swap');
@import url('https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.1/font/bootstrap-icons.css');

.hero-section {
background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  padding: 80px 0 100px;
    min-height: 90vh;
  display: flex;
align-items: center;
  position: relative;
overflow: hidden;
}

.hero-section::before {
content: '';
  position: absolute;
top: 0;
right: 0;
    width: 50%;
  height: 100%;
background: linear-gradient(to left, rgba(142,36,66,0.03), transparent);
    pointer-events: none;
}

.hero-grid {
display: grid;
  grid-template-columns: 1fr 1fr;
grid-template-rows: auto auto auto;
    gap: 40px 60px;
  grid-template-areas:
"title image"
    "image image"
"description cta";
align-items: center;
}

.hero-title-area {
  grid-area: title;
z-index: 2;
}

.hero-title-area h1 {
font-family: 'Inter', sans-serif;
  font-size: 3.5rem;
font-weight: 800;
    color: hsl(342, 59%, 19%);
line-height: 1.1;
  margin-bottom: 20px;
letter-spacing: -1px;
}

.hero-title-area h2 {
  font-family: 'Raleway', sans-serif;
font-size: 1.4rem;
    font-weight: 400;
color: #555;
  line-height: 1.6;
margin: 0;
}

.hero-image-area {
grid-area: image;
    position: relative;
  z-index: 1;
}

.hero-image-area img {
width: 100%;
    height: auto;
border-radius: 20px;
  box-shadow: 0 20px 60px rgba(142,36,66,0.15);
transition: transform 0.4s ease;
}

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

.hero-description-area {
  grid-area: description;
z-index: 2;
}

.hero-description-area p {
font-family: 'Raleway', sans-serif;
    font-size: 1.05rem;
  line-height: 1.8;
color: #333;
margin-bottom: 30px;
}

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

.hero-features li {
font-family: 'Raleway', sans-serif;
  font-size: 1rem;
color: #444;
    padding: 12px 0;
  border-bottom: 1px solid #e9ecef;
display: flex;
    align-items: center;
}

.hero-features li:last-child {
border-bottom: none;
}

.hero-features li i {
  color: hsl(342, 59%, 59%);
font-size: 1.3rem;
    margin-right: 15px;
  flex-shrink: 0;
}

.hero-cta-area {
grid-area: cta;
    display: flex;
gap: 20px;
  align-items: center;
justify-content: flex-end;
    z-index: 2;
}

.btn-primary-hero {
  background: hsl(342, 59%, 34%);
color: white;
    padding: 16px 40px;
font-family: 'Inter', sans-serif;
  font-weight: 600;
font-size: 1.1rem;
    border: none;
border-radius: 50px;
  text-decoration: none;
display: inline-flex;
    align-items: center;
  gap: 10px;
transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(142,36,66,0.2);
}

.btn-primary-hero:hover {
background: hsl(342, 59%, 19%);
  transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(142,36,66,0.3);
color: #fff;
}

.btn-secondary-hero {
  background: transparent;
color: hsl(342, 59%, 34%);
    padding: 16px 35px;
  font-family: 'Inter', sans-serif;
font-weight: 600;
    font-size: 1.1rem;
border: 2px solid hsl(342, 59%, 34%);
  border-radius: 50px;
text-decoration: none;
    display: inline-flex;
align-items: center;
  gap: 10px;
    transition: all 0.3s ease;
}

.btn-secondary-hero:hover {
  background: hsl(342, 59%, 34%);
color: white;
    transform: translateY(-2px);
}

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

.hero-title-area h1 {
    font-size: 2.8rem;
}

  .hero-cta-area {
justify-content: flex-start;
    flex-wrap: wrap;
}
}

@media (max-width: 768px) {
  .hero-section {
padding: 60px 0;
    min-height: auto;
}

  .hero-title-area h1 {
font-size: 2.2rem;
  }

.hero-title-area h2 {
    font-size: 1.2rem;
}

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

.btn-primary-hero,
  .btn-secondary-hero {
    padding: 14px 30px;
font-size: 1rem;
  }
}

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&family=Raleway:wght@300;400;500;600&display=swap');

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

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

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

.faq-title {
  font-family: 'Inter', sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: hsl(342, 59%, 34%);
  margin-bottom: 15px;
  letter-spacing: -0.5px;
}

.faq-subtitle {
  font-size: 1.15rem;
  color: #555;
  font-weight: 400;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

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

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

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

.faq-question {
  font-family: 'Inter', sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #222;
  margin-bottom: 18px;
  line-height: 1.4;
  display: flex;
  align-items: flex-start;
}

.faq-icon {
  color: hsl(342, 59%, 59%);
  margin-right: 12px;
  font-size: 1.4rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.faq-answer {
  color: #555;
  font-size: 1rem;
  line-height: 1.7;
  font-weight: 400;
}

.faq-answer strong {
  color: hsl(342, 59%, 34%);
  font-weight: 600;
}

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

@media (max-width: 480px) {
  .faq-title {
    font-size: 1.9rem;
  }
  
  .faq-subtitle {
    font-size: 1rem;
  }
  
  .faq-card {
    padding: 24px 20px;
  }
}

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

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

#advantages::before {
content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(149, 36, 70, 0.03) 0%, transparent 50%),
              radial-gradient(circle at 80% 80%, rgba(149, 36, 70, 0.02) 0%, transparent 50%);
  pointer-events: none;
}

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

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

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

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

.timeline-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, 
    hsl(342, 59%, 59%) 0%,
    hsl(342, 59%, 34%) 50%,
    hsl(342, 59%, 59%) 100%);
  transform: translateX(-50%);
}

.advantage-item {
  position: relative;
  margin-bottom: 60px;
  display: flex;
  align-items: center;
}

.advantage-item:nth-child(odd) {
  justify-content: flex-start;
}

.advantage-item:nth-child(even) {
justify-content: flex-end;
}

.advantage-card {
  width: 45%;
  background: white;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 5px 25px rgba(0,0,0,0.08);
  transition: all 0.4s ease;
  position: relative;
  border: 1px solid rgba(149, 36, 70, 0.1);
}

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

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

.advantage-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(149, 36, 70, 0.15);
  border-color: hsl(342, 59%, 59%);
}

.advantage-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, hsl(342, 59%, 34%) 0%, hsl(342, 59%, 19%) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

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

.advantage-card h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: hsl(342, 59%, 19%);
  margin-bottom: 12px;
}

.advantage-card p {
  font-size: 1rem;
  color: #666;
  line-height: 1.7;
  margin: 0;
}

.timeline-dot {
  position: absolute;
  left: 50%;
  top: 35px;
  width: 18px;
  height: 18px;
  background: hsl(342, 59%, 59%);
  border: 4px solid white;
  border-radius: 50%;
  transform: translateX(-50%);
  z-index: 2;
  box-shadow: 0 0 0 4px rgba(149, 36, 70, 0.1);
}

@media (max-width: 992px) {
  .timeline-line {
    left: 30px;
  }
  
  .advantage-item {
    justify-content: flex-start !important;
  }
  
  .advantage-card {
    width: calc(100% - 80px);
    margin-left: 80px !important;
    margin-right: 0 !important;
  }
  
  .timeline-dot {
    left: 30px;
  }
  
  .advantages-header h2 {
    font-size: 2.2rem;
  }
}

@media (max-width: 576px) {
  #advantages {
    padding: 60px 0;
  }
  
  .advantages-header h2 {
    font-size: 1.9rem;
  }
  
  .advantages-header p {
    font-size: 1rem;
  }
  
  .advantage-card {
    padding: 25px;
    width: calc(100% - 60px);
    margin-left: 60px !important;
  }
  
  .advantage-icon {
    width: 60px;
    height: 60px;
  }
  
  .advantage-icon i {
    font-size: 28px;
  }
  
  .advantage-card h3 {
    font-size: 1.3rem;
  }
}

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

.video-section {
  padding: 85px 0 90px;
background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  font-family: 'Raleway', sans-serif;
    position: relative;
}

.video-section::before {
content: '';
  position: absolute;
top: 0;
  left: 0;
    width: 100%;
  height: 4px;
background: linear-gradient(90deg, hsl(342, 59%, 34%) 0%, hsl(342, 59%, 59%) 100%);
}

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

.video-header h2 {
font-family: 'Inter', sans-serif;
  font-size: 2.8rem;
font-weight: 700;
    color: #222;
  margin-bottom: 25px;
      letter-spacing: -0.5px;
}

.video-header .subtitle {
font-size: 1.15rem;
    color: #555;
  max-width: 780px;
margin: 0 auto 20px;
  line-height: 1.7;
font-weight: 400;
}

.video-description {
  max-width: 850px;
margin: 0 auto 50px;
    padding: 0 20px;
}

.video-description p {
font-size: 1.05rem;
  line-height: 1.8;
color: #444;
    margin-bottom: 18px;
  text-align: justify;
}

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

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

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

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

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

.video-overlay:hover {
background: linear-gradient(135deg, rgba(142, 36, 59, 0.75) 0%, rgba(142, 36, 59, 0.55) 100%);
}

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

.play-button {
font-size: 120px;
    color: #fff;
  transition: transform 0.3s ease, opacity 0.3s ease;
    opacity: 0.95;
}

.video-overlay.hidden {
  opacity: 0;
pointer-events: none;
    transition: opacity 0.4s ease;
}

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

.video-cta h3 {
  font-family: 'Inter', sans-serif;
font-size: 1.8rem;
    font-weight: 600;
  color: #222;
margin-bottom: 20px;
}

.video-cta p {
font-size: 1.08rem;
    color: #555;
max-width: 720px;
  margin: 0 auto 30px;
  line-height: 1.7;
}

.cta-button {
display: inline-block;
  padding: 14px 40px;
    background: hsl(342, 59%, 34%);
color: #fff;
  text-decoration: none;
    font-size: 1.1rem;
font-weight: 600;
  border-radius: 8px;
      transition: all 0.3s ease;
  font-family: 'Inter', sans-serif;
box-shadow: 0 4px 15px rgba(142, 36, 59, 0.3);
}

.cta-button:hover {
background: hsl(342, 59%, 19%);
    transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(142, 36, 59, 0.4);
color: #fff;
}

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

  .video-header h2 {
font-size: 2.2rem;
      margin-bottom: 20px;
}

.video-header .subtitle {
  font-size: 1.05rem;
}

  .video-description p {
font-size: 1rem;
    text-align: left;
}

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

.video-cta h3 {
    font-size: 1.5rem;
}

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

.cta-button {
    padding: 12px 32px;
  font-size: 1rem;
}
}

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&family=Raleway:wght@300;400;500;600&display=swap');

.about-section {
  background: #ffffff;
  padding: 80px 0;
  font-family: 'Raleway', sans-serif;
}

.about-hero-image {
  width: 100%;
  height: 520px;
  object-fit: cover;
  margin-bottom: 60px;
  border-radius: 8px;
}

.about-content-wrapper {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

.about-main-title {
  font-family: 'Inter', sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: hsl(342, 59%, 34%);
  margin-bottom: 35px;
  line-height: 1.3;
}

.about-intro-text {
  font-size: 1.15rem;
  color: #333333;
  line-height: 1.8;
  margin-bottom: 50px;
}

.about-story-block {
  background: #f8f9fa;
  padding: 45px 40px;
  border-radius: 6px;
  margin-bottom: 45px;
}

.about-story-title {
  font-family: 'Inter', sans-serif;
  font-size: 2rem;
  font-weight: 600;
  color: hsl(342, 59%, 19%);
  margin-bottom: 25px;
}

.about-story-text {
  font-size: 1.05rem;
  color: #444;
  line-height: 1.75;
  margin-bottom: 20px;
}

.about-values-section {
  margin-top: 55px;
  margin-bottom: 50px;
}

.about-values-title {
  font-family: 'Inter', sans-serif;
  font-size: 2.2rem;
  font-weight: 600;
  color: hsl(342, 59%, 34%);
  margin-bottom: 40px;
  text-align: center;
}

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

.about-value-card {
  background: white;
  padding: 35px 30px;
  border: 2px solid #e9ecef;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.about-value-card:hover {
  border-color: hsl(342, 59%, 59%);
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.about-value-heading {
  font-family: 'Inter', sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: hsl(342, 59%, 19%);
  margin-bottom: 18px;
}

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

.about-mission-block {
  background: hsl(342, 59%, 34%);
  padding: 50px 45px;
  border-radius: 8px;
  margin-bottom: 55px;
}

.about-mission-title {
  font-family: 'Inter', sans-serif;
  font-size: 2rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 25px;
}

.about-mission-text {
  font-size: 1.1rem;
  color: #f8f9fa;
  line-height: 1.8;
  margin-bottom: 0;
}

.about-secondary-image {
  width: 100%;
  height: 450px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 50px;
}

.about-company-description {
  margin-top: 45px;
}

.about-description-title {
  font-family: 'Inter', sans-serif;
  font-size: 2rem;
  font-weight: 600;
  color: hsl(342, 59%, 19%);
  margin-bottom: 30px;
}

.about-description-text {
  font-size: 1.05rem;
  color: #333;
  line-height: 1.75;
  margin-bottom: 25px;
}

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

.about-feature-item {
  background: #f5f5f5;
  padding: 25px 20px;
  border-radius: 6px;
  border-left: 4px solid hsl(342, 59%, 59%);
}

.about-feature-title {
  font-family: 'Inter', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: hsl(342, 59%, 19%);
  margin-bottom: 12px;
}

.about-feature-text {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 768px) {
  .about-section {
    padding: 50px 0;
  }
  
  .about-hero-image {
    height: 320px;
    margin-bottom: 40px;
  }
  
  .about-main-title {
    font-size: 2rem;
    margin-bottom: 25px;
  }
  
  .about-intro-text {
    font-size: 1rem;
    margin-bottom: 35px;
  }
  
  .about-story-block {
    padding: 30px 25px;
    margin-bottom: 35px;
  }
  
  .about-story-title {
    font-size: 1.6rem;
  }
  
  .about-values-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }
  
  .about-values-grid {
    gap: 25px;
  }
  
  .about-value-card {
    padding: 25px 20px;
  }
  
  .about-mission-block {
    padding: 35px 25px;
  }
  
  .about-secondary-image {
    height: 300px;
  }
}

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&family=Raleway:wght@300;400;500;600&display=swap');

.newsletter-section {
    background: linear-gradient(135deg, hsl(342, 59%, 34%) 0%, hsl(342, 59%, 19%) 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: 900px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

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

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

.newsletter-subtitle {
    font-family: 'Raleway', sans-serif;
    font-size: 1.15rem;
    color: rgba(255,255,255,0.9);
    line-height: 1.7;
    max-width: 650px;
    margin: 0 auto;
    font-weight: 400;
}

.newsletter-form-wrapper {
    background: rgba(255,255,255,0.98);
    padding: 45px 40px;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.25);
    margin-bottom: 35px;
}

.newsletter-form {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.newsletter-input {
    flex: 1;
    min-width: 280px;
    padding: 16px 24px;
    font-family: 'Raleway', sans-serif;
    font-size: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    transition: all 0.3s ease;
    background: white;
    color: #333;
}

.newsletter-input:focus {
    outline: none;
    border-color: hsl(342, 59%, 59%);
    box-shadow: 0 0 0 4px rgba(191, 49, 82, 0.1);
}

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

.newsletter-button {
    padding: 16px 45px;
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    background: hsl(342, 59%, 34%);
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.newsletter-button:hover {
    background: hsl(342, 59%, 59%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(191, 49, 82, 0.3);
}

.newsletter-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    text-align: center;
}

.benefit-item {
    font-family: 'Raleway', sans-serif;
    color: #555;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.benefit-icon {
    width: 20px;
    height: 20px;
    background: hsl(342, 59%, 59%);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 12px;
    flex-shrink: 0;
}

.newsletter-footer-text {
    text-align: center;
    margin-top: 30px;
}

.newsletter-footer-text p {
    font-family: 'Raleway', sans-serif;
    color: rgba(255,255,255,0.85);
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .newsletter-section {
        padding: 60px 0;
    }
    
    .newsletter-title {
        font-size: 2.2rem;
    }
    
    .newsletter-subtitle {
        font-size: 1.05rem;
    }
    
    .newsletter-form-wrapper {
        padding: 35px 25px;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-input {
        min-width: 100%;
    }
    
    .newsletter-button {
        width: 100%;
    }
    
    .newsletter-benefits {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .newsletter-title {
        font-size: 1.9rem;
    }
    
    .newsletter-form-wrapper {
        padding: 28px 20px;
    }
}

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700;800&family=Raleway:wght@300;400;500;600&display=swap');

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

.statistics-section::before {
    content: '';
  position: absolute;
    top: 0;
  left: 0;
    width: 100%;
  height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(174, 37, 71, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(174, 37, 71, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

.statistics-section .section-title {
    font-family: 'Inter', sans-serif;
  font-size: 2.8rem;
    font-weight: 800;
  color: hsl(342, 59%, 19%);
    text-align: center;
  margin-bottom: 15px;
    position: relative;
  z-index: 1;
}

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

.stat-card {
    background: white;
  border-radius: 15px;
    padding: 40px 25px;
  text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  transition: all 0.4s ease;
    position: relative;
  margin-bottom: 30px;
    border: 2px solid transparent;
  z-index: 1;
}

.stat-card:hover {
    transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(174, 37, 71, 0.15);
    border-color: hsl(342, 59%, 59%);
}

.stat-icon {
  font-size: 3.2rem;
    color: hsl(342, 59%, 34%);
  margin-bottom: 20px;
    display: inline-block;
  transition: transform 0.3s ease;
}

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

.stat-number {
    font-family: 'Inter', sans-serif;
  font-size: 3rem;
    font-weight: 700;
  color: hsl(342, 59%, 19%);
    margin-bottom: 10px;
  line-height: 1;
}

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

@media (max-width: 768px) {
    .statistics-section {
      padding: 60px 0;
  }
  
    .statistics-section .section-title {
      font-size: 2.2rem;
  }
  
    .stat-card {
      padding: 35px 20px;
  }
  
    .stat-number {
      font-size: 2.5rem;
  }
}

@media (max-width: 576px) {
    .statistics-section .section-title {
      font-size: 1.9rem;
  }
  
    .stat-icon {
      font-size: 2.8rem;
  }
}

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700;800&family=Raleway:wght@300;400;500;600&display=swap');

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

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

.promo-offer-section::after {
  content: '';
position: absolute;
  bottom: -40%;
  left: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(162,36,66,0.05) 0%, transparent 70%);
  border-radius: 50%;
}

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

.promo-badge {
  display: inline-block;
  background: linear-gradient(135deg, hsl(342, 59%, 34%) 0%, hsl(342, 59%, 19%) 100%);
  color: white;
  padding: 8px 24px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(162,36,66,0.3);
}

.promo-main-title {
  font-family: 'Inter', sans-serif;
  font-size: 3.2rem;
  font-weight: 800;
  color: #222;
  margin-bottom: 25px;
  line-height: 1.2;
}

.promo-main-title .highlight {
  color: hsl(342, 59%, 34%);
  position: relative;
  display: inline-block;
}

.promo-description {
  font-size: 1.15rem;
  color: #555;
  line-height: 1.8;
  margin-bottom: 35px;
  max-width: 700px;
  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.08);
  margin-top: 40px;
  position: relative;
  border: 2px solid #f0f0f0;
}

.promo-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, hsl(342, 59%, 34%) 0%, hsl(342, 59%, 59%) 100%);
  border-radius: 20px 20px 0 0;
}

.date-block {
  background: linear-gradient(135deg, #fff5f7 0%, #ffffff 100%);
  padding: 30px;
  border-radius: 15px;
  margin-bottom: 35px;
  border: 2px dashed hsl(342, 59%, 59%);
  text-align: center;
}

.date-label {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: #666;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.date-value {
  font-family: 'Inter', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: hsl(342, 59%, 34%);
  letter-spacing: -0.5px;
}

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

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 20px;
  background: rgb(248,249,250);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.benefit-item:hover {
  background: #fff;
  box-shadow: 0 5px 20px rgba(0,0,0,0.06);
  transform: translateY(-3px);
}

.benefit-icon {
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, hsl(342, 59%, 34%) 0%, hsl(342, 59%, 59%) 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: white;
  font-size: 1.3rem;
}

.benefit-content h4 {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 5px;
}

.benefit-content p {
  font-size: 0.95rem;
  color: #666;
  margin: 0;
  line-height: 1.6;
}

.promo-cta-wrapper {
  text-align: center;
  margin-top: 45px;
  padding-top: 35px;
  border-top: 1px solid #e9ecef;
}

.promo-cta-btn {
  display: inline-block;
  background: linear-gradient(135deg, hsl(342, 59%, 34%) 0%, hsl(342, 59%, 19%) 100%);
  color: #ffffff;
  padding: 18px 50px;
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(162,36,66,0.3);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.promo-cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(162,36,66,0.4);
  color: #ffffff;
  background: linear-gradient(135deg, hsl(342, 59%, 39%) 0%, hsl(342, 59%, 24%) 100%);
}

.discount-badge {
  position: absolute;
  top: -20px;
  right: 40px;
  background: hsl(342, 59%, 59%);
  color: white;
  padding: 15px 25px;
  border-radius: 10px;
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 1.8rem;
  box-shadow: 0 6px 20px rgba(162,36,66,0.35);
  transform: rotate(3deg);
}

@media (max-width: 768px) {
  .promo-main-title {
    font-size: 2.2rem;
  }
  
  .promo-card {
    padding: 35px 25px;
  }
  
  .date-value {
    font-size: 2rem;
  }
  
  .benefits-grid {
    grid-template-columns: 1fr;
  }
  
  .discount-badge {
    position: static;
    display: inline-block;
    margin-bottom: 20px;
    transform: rotate(0deg);
  }
}

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&family=Raleway:wght@300;400;500;600&display=swap');

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

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

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

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

.blog-featured {
  margin-bottom: 45px;
}

.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;
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(0,0,0,0.05);
}

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

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

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

.blog-category {
  display: inline-block;
  padding: 6px 14px;
  background: hsl(342, 59%, 59%);
  color: #fff;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

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

.blog-card h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1.65rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 16px;
  line-height: 1.4;
}

.blog-card p {
  color: #555;
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 24px;
  flex-grow: 1;
}

.blog-link {
  display: inline-flex;
  align-items: center;
  color: hsl(342, 59%, 34%);
  font-weight: 600;
  text-decoration: none;
  font-size: 1rem;
  transition: all 0.3s ease;
  gap: 8px;
}

.blog-link:hover {
  color: hsl(342, 59%, 19%);
  gap: 12px;
}

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

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

.blog-small-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

.blog-card.small h3 {
  font-size: 1.35rem;
}

.blog-card.small .blog-card-body {
  padding: 26px 22px;
}

.view-all-btn {
  text-align: center;
  margin-top: 55px;
}

.view-all-btn a {
  display: inline-block;
  padding: 15px 42px;
  background: hsl(342, 59%, 34%);
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1.05rem;
  transition: all 0.3s ease;
  font-family: 'Inter', sans-serif;
  box-shadow: 0 4px 12px rgba(162, 43, 74, 0.2);
}

.view-all-btn a:hover {
  background: hsl(342, 59%, 19%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(162, 43, 74, 0.3);
}

@media (max-width: 768px) {
  #blog {
    padding: 60px 0;
  }
  
  #blog .section-header h2 {
    font-size: 2.2rem;
  }
  
  .blog-card h3 {
    font-size: 1.4rem;
  }
  
  .blog-small-cards {
    grid-template-columns: 1fr;
  }
}

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

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

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

.services-section .section-title {
font-family: 'Inter', sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: hsl(342, 59%, 34%);
  margin-bottom: 15px;
}

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

.service-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;
  border: 2px solid transparent;
  height: 100%;
  display: flex;
  flex-direction: column;
}

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

.service-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, hsl(342, 59%, 34%) 0%, hsl(342, 59%, 19%) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}

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

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

.service-title {
  font-family: 'Inter', sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #222;
  margin-bottom: 15px;
}

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

.service-price {
  font-family: 'Inter', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: hsl(342, 59%, 34%);
  margin-bottom: 8px;
}

.service-terms {
  font-size: 0.85rem;
  color: #888;
  font-style: italic;
  padding-top: 15px;
  border-top: 1px solid #eee;
}

@media (max-width: 768px) {
  .services-section {
    padding: 50px 0;
  }
  
  .services-section .section-title {
    font-size: 2rem;
  }
  
  .service-card {
    padding: 25px 20px;
  }
}

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

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

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

#testimonials .section-header h2 {
  font-family: 'Inter', sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: hsl(342, 59%, 34%);
  margin-bottom: 18px;
  letter-spacing: -0.5px;
}

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

.testimonial-card {
  background: white;
  border-radius: 12px;
  padding: 28px 24px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(0,0,0,0.05);
}

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

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

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

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

.client-info .location i {
  color: hsl(342, 59%, 59%);
  font-size: 0.85rem;
}

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

.rating i {
  color: #ffc107;
  font-size: 1rem;
}

.testimonial-text {
  color: #444;
  font-size: 0.98rem;
  line-height: 1.65;
  margin-bottom: 18px;
  flex-grow: 1;
}

.testimonial-date {
  font-size: 0.82rem;
  color: #888;
  font-style: italic;
  padding-top: 12px;
  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: 20px;
  }
}

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700;800&family=Raleway:wght@300;400;500;600&display=swap');

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

.portfolio-header {
font-family: 'Inter', sans-serif;
  text-align: center;
  margin-bottom: 60px;
}

.portfolio-header h2 {
  font-size: 2.8rem;
    font-weight: 800;
  color: hsl(342, 59%, 34%);
  margin-bottom: 15px;
  letter-spacing: -0.5px;
}

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

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

.portfolio-card {
  background: white;
  border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  padding: 35px 30px;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(142, 37, 63, 0.1);
  position: relative;
    overflow: hidden;
}

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

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

.portfolio-card:hover {
    transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(142, 37, 63, 0.15);
  border-color: hsl(342, 59%, 59%);
}

.portfolio-card:nth-child(2),
.portfolio-card:nth-child(5) {
  padding-top: 45px;
  padding-bottom: 45px;
}

.card-category {
  display: inline-block;
  background: hsl(342, 59%, 95%);
    color: hsl(342, 59%, 34%);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 18px;
    text-transform: uppercase;
  letter-spacing: 0.5px;
}

.card-title {
  font-family: 'Inter', sans-serif;
    font-size: 1.65rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 16px;
  line-height: 1.3;
}

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

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

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

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

.tech-tag {
    background: rgb(245, 245, 245);
  color: #555;
  padding: 4px 12px;
  border-radius: 15px;
  font-size: 0.8rem;
}

.modal-content {
    border-radius: 16px;
  border: none;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

.modal-header {
  background: linear-gradient(135deg, hsl(342, 59%, 34%), hsl(342, 59%, 19%));
    color: white;
  border-radius: 16px 16px 0 0;
  padding: 25px 30px;
  border-bottom: none;
}

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

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

.modal-body {
  padding: 35px 30px;
}

.modal-category {
  display: inline-block;
    background: hsl(342, 59%, 95%);
  color: hsl(342, 59%, 34%);
  padding: 8px 18px;
  border-radius: 20px;
  font-size: 0.9rem;
    font-weight: 600;
  margin-bottom: 20px;
}

.modal-description {
  color: #444;
    font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 25px;
}

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

.modal-details h5 {
  font-family: 'Inter', sans-serif;
    color: hsl(342, 59%, 34%);
  font-size: 1.2rem;
  margin-bottom: 15px;
  font-weight: 700;
}

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

.modal-details li {
  padding: 10px 0;
    color: #555;
  border-bottom: 1px solid #e0e0e0;
  font-size: 0.98rem;
}

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

.modal-details strong {
    color: #222;
  font-weight: 600;
}

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

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&family=Raleway:wght@300;400;500;600&display=swap');

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

.contact-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: hsl(342, 59%, 59%);
  opacity: 0.05;
  border-radius: 50%;
}

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

.contact-header h2 {
  font-family: 'Inter', sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: hsl(342, 59%, 19%);
  margin-bottom: 15px;
}

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

.contact-wrapper {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-form-container {
  flex: 1;
  background: white;
  padding: 45px 40px;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.contact-form-container h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1.8rem;
  color: hsl(342, 59%, 34%);
  margin-bottom: 25px;
  font-weight: 600;
}

.form-group {
  margin-bottom: 22px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  color: #333;
  font-weight: 500;
  font-size: 0.95rem;
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 1rem;
  font-family: 'Raleway', sans-serif;
  transition: all 0.3s ease;
  background: #fafafa;
}

.form-control:focus {
  outline: none;
  border-color: hsl(342, 59%, 59%);
  background: white;
  box-shadow: 0 0 0 3px rgba(179, 47, 85, 0.1);
}

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

.form-check {
  margin-bottom: 20px;
  padding-left: 0;
}

.form-check-input {
  width: 18px;
  height: 18px;
  margin-right: 10px;
  cursor: pointer;
  vertical-align: middle;
}

.form-check-label {
  font-size: 0.9rem;
  color: #444;
  line-height: 1.6;
  display: inline;
}

.form-check-label a {
  color: hsl(342, 59%, 34%);
  text-decoration: underline;
}

.btn-submit {
  width: 100%;
  padding: 14px;
  background: hsl(342, 59%, 34%);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(179, 47, 85, 0.3);
}

.btn-submit:hover {
  background: hsl(342, 59%, 19%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(179, 47, 85, 0.4);
}

.gdpr-notice {
  margin-top: 20px;
  padding: 18px;
  background: #f0f4f8;
  border-left: 4px solid hsl(342, 59%, 34%);
  font-size: 0.88rem;
  border-radius: 4px;
}

.gdpr-notice strong {
  color: hsl(342, 59%, 19%);
  display: block;
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.gdpr-notice p {
  margin: 0;
  color: #444;
  line-height: 1.7;
}

.gdpr-notice a {
  color: hsl(342, 59%, 34%);
  text-decoration: underline;
}

.contact-info-sidebar {
  flex: 0 0 350px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.info-card {
  background: white;
  padding: 30px 25px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.06);
  border-top: 3px solid hsl(342, 59%, 59%);
}

.info-card h4 {
  font-family: 'Inter', sans-serif;
  font-size: 1.3rem;
  color: hsl(342, 59%, 34%);
  margin-bottom: 18px;
  font-weight: 600;
}

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

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

.info-icon {
  width: 40px;
  height: 40px;
  background: hsl(342, 59%, 59%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  flex-shrink: 0;
}

.info-icon svg {
  width: 20px;
  height: 20px;
  fill: white;
}

.info-content strong {
  display: block;
  color: #333;
  margin-bottom: 4px;
  font-weight: 600;
}

.info-content span {
  color: #666;
  font-size: 0.92rem;
}

.consultation-process {
  background: linear-gradient(to right, hsl(342, 59%, 34%), hsl(342, 59%, 19%));
  padding: 35px 25px;
  border-radius: 10px;
  color: white;
}

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

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

.step-number {
  width: 32px;
  height: 32px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin-right: 15px;
  flex-shrink: 0;
  font-family: 'Inter', sans-serif;
}

.step-content p {
  margin: 0;
  font-size: 0.93rem;
  line-height: 1.6;
}

@media (max-width: 992px) {
  .contact-wrapper {
    flex-direction: column;
  }
  
  .contact-info-sidebar {
    flex: 1;
    width: 100%;
  }
  
  .contact-header h2 {
    font-size: 2.2rem;
  }
}

@media (max-width: 576px) {
  .contact-section {
    padding: 50px 0;
  }
  
  .contact-form-container {
    padding: 30px 20px;
  }
  
  .contact-header h2 {
    font-size: 1.9rem;
  }
  
  .info-card, .consultation-process {
    padding: 25px 20px;
  }
}

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&family=Raleway:wght@300;400;500;600&display=swap');

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

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

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

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

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

.disclaimer-content {
  background: white;
  padding: 40px 45px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  border-left: 5px solid hsl(342, 59%, 34%);
}

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

.disclaimer-text strong {
  color: hsl(342, 59%, 19%);
  font-weight: 600;
}

@media (max-width: 768px) {
  .disclaimer-section {
    padding: 45px 0;
  }
  
  .disclaimer-title {
    font-size: 1.75rem;
  }
  
  .disclaimer-content {
    padding: 30px 25px;
  }
  
  .disclaimer-text {
    font-size: 0.98rem;
    text-align: left;
  }
  
  .disclaimer-icon {
    font-size: 40px;
  }
}

@media (max-width: 480px) {
  .disclaimer-content {
    padding: 25px 20px;
  }
  
  .disclaimer-title {
    font-size: 1.5rem;
  }
}

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

  .privacy-header {
    text-align: center;
    padding: 60px 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: 3em;
    margin: 0 0 15px 0;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
  }

  .privacy-header .subtitle {
    color: #f0f0f0;
    font-size: 1.2em;
    margin: 10px 0 0 0;
  }

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

  .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;
    line-height: 1.9;
    color: #444;
    margin-bottom: 40px;
    padding: 25px;
    background: #f8f9fa;
    border-left: 5px solid #667eea;
    border-radius: 8px;
  }

  .section {
    margin-bottom: 50px;
  }

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

  .section h3 {
    color: #764ba2;
    font-size: 1.5em;
    margin: 30px 0 20px 0;
    font-weight: 600;
  }

  .section h4 {
    color: #555;
    font-size: 1.2em;
    margin: 25px 0 15px 0;
    font-weight: 600;
  }

  .section p {
    margin-bottom: 20px;
    color: #555;
    font-size: 1.05em;
  }

  .data-list {
    background: #f8f9fa;
    padding: 25px 30px;
    border-radius: 10px;
    margin: 25px 0;
    border-left: 4px solid #764ba2;
  }

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

  .data-list li {
    padding: 12px 0;
    border-bottom: 1px solid #e0e0e0;
    position: relative;
    padding-left: 30px;
    color: #444;
  }

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

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

  .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;
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .right-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(102, 126, 234, 0.4);
  }

  .right-card h4 {
    color: #ffffff;
    margin-top: 0;
    font-size: 1.3em;
  }

  .right-card p {
    color: #f0f0f0;
    margin-bottom: 0;
    font-size: 1em;
  }

  .platform-box {
    background: #fff;
    border: 2px solid #667eea;
    padding: 25px;
    border-radius: 10px;
    margin: 20px 0;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
  }

  .platform-box h4 {
    color: #667eea;
    margin-top: 0;
  }

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

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

  .contact-info {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    padding: 40px;
    border-radius: 15px;
    margin-top: 50px;
    text-align: center;
    box-shadow: 0 5px 25px rgba(102, 126, 234, 0.3);
  }

  .contact-info h3 {
    color: #ffffff;
    margin-top: 0;
    font-size: 2em;
  }

  .contact-info p {
    color: #f0f0f0;
    font-size: 1.1em;
  }

  .variable {
    background: rgba(255, 255, 255, 0.2);
    padding: 3px 10px;
    border-radius: 5px;
    font-family: 'Courier New', monospace;
    font-weight: 600;
  }

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

    .content-wrapper {
      padding: 30px 20px;
    }

    .section h2 {
      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;
    color: #2c3e50;
  }
  
  .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.15);
  }
  
  .header-section h1 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
  }
  
  .header-section .subtitle {
    font-size: 1.3rem;
    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: 1.1rem;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255,255,255,0.3);
  }
  
  .entity-banner {
    background: linear-gradient(135deg, hsl(342, 59%, 34%) 0%, hsl(342, 59%, 19%) 100%);
    color: white;
    padding: 50px 20px;
    text-align: center;
    margin-bottom: 40px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  }
  
  .entity-banner h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
  }
  
  .entity-banner .subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    font-weight: 300;
  }
  
  .info-card {
    background: white;
    border-radius: 15px;
    padding: 35px;
    margin-bottom: 30px;
    box-shadow: 0 5px 25px 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 35px rgba(0,0,0,0.15);
  }
  
  .info-card h3 {
    color: hsl(342, 59%, 34%);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 3px solid hsl(342, 59%, 59%);
  }
  
  .info-row {
    display: flex;
    padding: 15px 0;
    border-bottom: 1px solid #ecf0f1;
    align-items: center;
  }
  
  .info-row:last-child {
    border-bottom: none;
  }
  
  .info-label {
    flex: 0 0 40%;
    font-weight: 600;
    color: #34495e;
    font-size: 1rem;
  }
  
  .info-value {
    flex: 0 0 60%;
    color: #2c3e50;
    font-size: 1rem;
  }
  
  .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;
    text-align: center;
    margin-top: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.15);
  }
  
  .excellence-footer h3 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
  }
  
  .excellence-footer p {
    font-size: 1.1rem;
    line-height: 1.8;
    opacity: 0.95;
    max-width: 900px;
    margin: 0 auto;
  }
  
  @media (max-width: 768px) {
    .header-section h1 {
      font-size: 2rem;
    }
    
    .header-section .subtitle {
      font-size: 1rem;
    }
    
    .entity-banner h2 {
      font-size: 2rem;
    }
    
    .info-row {
      flex-direction: column;
      align-items: flex-start;
    }
    
    .info-label, .info-value {
      flex: 0 0 100%;
      width: 100%;
    }
    
    .info-label {
      margin-bottom: 5px;
    }
    
    .info-card {
      padding: 25px;
    }
    
    .excellence-footer h3 {
      font-size: 1.6rem;
    }
    
    .excellence-footer p {
      font-size: 1rem;
    }
  }

.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: #1a252f;
    margin-bottom: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
  }

  .terms-header .subtitle {
    font-size: 1.1em;
    color: #7f8c8d;
    font-style: italic;
  }

  .last-updated {
    background: #3498db;
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    display: inline-block;
    margin-top: 15px;
    font-weight: 600;
  }

  .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 {
    color: #2c3e50;
    font-size: 1.9em;
    margin-bottom: 20px;
    padding-left: 20px;
    border-left: 5px solid #e74c3c;
    font-weight: 700;
  }

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

  .terms-section p {
    margin-bottom: 15px;
    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: #e74c3c;
    font-weight: bold;
    position: absolute;
    left: -15px;
  }

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

  .important-notice strong {
    color: #856404;
    font-size: 1.1em;
  }

  .acceptance-box {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    margin-top: 40px;
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
  }

  .acceptance-box h3 {
    font-size: 1.6em;
    margin-bottom: 15px;
    color: white;
  }

  @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;
    }
  }