:root {
            --primary-color: hsl(308, 57%, 35%);
            --secondary-color: hsl(308, 57%, 20%);
            --accent-color: hsl(308, 57%, 60%);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Nunito', sans-serif;
            color: #333;
            line-height: 1.6;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
        }
        
        .navbar {
            background: white;
            box-shadow: 0 2px 8px rgba(0,0,0,0.08);
            padding: 1rem 0;
        }
        
        .navbar-brand {
            display: flex;
            align-items: center;
            gap: 12px;
            font-family: 'Poppins', sans-serif;
            font-weight: 700;
            font-size: 1.3em;
            color: var(--primary-color);
            text-decoration: none;
        }
        
        .navbar-brand:hover {
            color: var(--accent-color);
        }
        
        .navbar-brand img {
            transition: transform 0.3s ease;
        }
        
        .navbar-brand:hover img {
            transform: rotate(5deg) scale(1.05);
        }
        
        .navbar-nav .nav-link {
            color: #333;
            font-weight: 500;
            padding: 0.5rem 1rem;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--primary-color);
        }
        
        .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::after {
            width: 80%;
        }
        
        .navbar-toggler {
            border: 2px solid var(--primary-color);
            padding: 0.4rem 0.6rem;
        }
        
        .navbar-toggler:focus {
            box-shadow: 0 0 0 0.2rem rgba(147, 51, 234, 0.25);
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(147, 51, 234, 1)' 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: #fff;
                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;
            }
            
            .navbar-nav .nav-link::after {
                display: none;
            }
        }

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

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

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

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

    .last-updated {
        text-align: center;
        color: #5a6c7d;
        font-style: italic;
        margin-bottom: 40px;
        padding: 15px;
        background: rgba(255, 255, 255, 0.6);
        border-radius: 10px;
        backdrop-filter: blur(10px);
    }

    .policy-section {
        background: #ffffff;
        margin-bottom: 30px;
        padding: 40px;
        border-radius: 15px;
        box-shadow: 0 5px 25px 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 35px rgba(0, 0, 0, 0.12);
    }

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

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

    .cookie-type {
        background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
        color: white;
        padding: 20px 30px;
        margin: 20px 0;
        border-radius: 12px;
        border-left: 5px solid #c471ed;
        box-shadow: 0 4px 15px rgba(240, 147, 251, 0.3);
    }

    .cookie-type h4 {
        margin: 0 0 10px 0;
        font-size: 1.3em;
        font-weight: 600;
    }

    .cookie-type p {
        margin: 0;
        line-height: 1.6;
        opacity: 0.95;
    }

    .info-box {
        background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
        padding: 25px;
        border-radius: 12px;
        margin: 25px 0;
        border-left: 5px solid #667eea;
        box-shadow: 0 4px 15px rgba(102, 126, 234, 0.2);
    }

    .info-box strong {
        color: #764ba2;
        font-size: 1.1em;
    }

    .gdpr-badge {
        display: inline-block;
        background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
        color: white;
        padding: 10px 20px;
        border-radius: 25px;
        font-weight: 600;
        margin: 10px 5px;
        box-shadow: 0 4px 15px rgba(17, 153, 142, 0.3);
    }

    .consent-controls {
        background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
        padding: 30px;
        border-radius: 15px;
        margin: 25px 0;
        box-shadow: 0 4px 20px rgba(252, 182, 159, 0.3);
    }

    .consent-controls ul {
        list-style: none;
        padding: 0;
    }

    .consent-controls li {
        padding: 12px 0;
        padding-left: 30px;
        position: relative;
        color: #5a4a42;
        font-weight: 500;
    }

    .consent-controls li:before {
        content: "✓";
        position: absolute;
        left: 0;
        color: #11998e;
        font-weight: bold;
        font-size: 1.3em;
    }

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

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

    td {
        padding: 15px;
        border-bottom: 1px solid #e8eaf6;
    }

    tr:hover {
        background: #f5f7fa;
    }

    .highlight {
        background: linear-gradient(135deg, #ffd89b 0%, #19547b 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        font-weight: 600;
    }

    .policy-footer {
        text-align: center;
        margin-top: 50px;
        padding: 30px;
        background: rgba(255, 255, 255, 0.8);
        border-radius: 15px;
        backdrop-filter: blur(10px);
    }

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

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

        .policy-section {
            padding: 25px;
        }

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

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

footer {
  background: linear-gradient(135deg, hsl(308, 57%, 20%) 0%, hsl(308, 57%, 35%) 100%);
  color: #ffffff;
  padding: 60px 0 20px;
  font-family: 'Nunito', sans-serif;
  margin-top: 80px;
}

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

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

.footer-section h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.3rem;
  margin-bottom: 20px;
  color: hsl(308, 57%, 60%);
  font-weight: 600;
}

.footer-section p {
  line-height: 1.7;
  margin-bottom: 15px;
  color: rgba(255,255,255,0.9);
  font-size: 0.95rem;
}

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

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

.footer-section ul li a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 0.95rem;
}

.footer-section ul li a:hover {
  color: hsl(308, 57%, 60%);
  padding-left: 5px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
  color: rgba(255,255,255,0.9);
}

.contact-item i {
  margin-right: 10px;
  color: hsl(308, 57%, 60%);
  margin-top: 3px;
}

.contact-item a {
  color: rgba(255,255,255,0.9);
  text-decoration: none;
  transition: color 0.3s;
}

.contact-item a:hover {
  color: hsl(308, 57%, 60%);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  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: 25px 0;
  border-top: 3px solid hsl(308, 57%, 35%);
}

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

.cookie-content h5 {
  font-family: 'Poppins', sans-serif;
  color: hsl(308, 57%, 35%);
  font-size: 1.4rem;
  margin-bottom: 15px;
  font-weight: 700;
}

.cookie-content p {
  color: #333;
  font-family: 'Nunito', sans-serif;
  line-height: 1.6;
  margin-bottom: 20px;
  font-size: 0.95rem;
}

.cookie-categories {
  margin: 20px 0;
  padding: 15px;
  background: rgb(248, 249, 250);
  border-radius: 8px;
}

.cookie-category {
  margin-bottom: 12px;
  padding: 8px 0;
  color: #333;
}

.cookie-category strong {
  color: hsl(308, 57%, 35%);
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
}

.cookie-category span {
  font-size: 0.85rem;
  color: #666;
  margin-left: 8px;
}

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

.btn-accept-all {
  background: #28a745;
  color: white;
  border: none;
  padding: 12px 30px;
  border-radius: 6px;
  font-family: 'Nunito', sans-serif;
  font-weight: 600;
  cursor: pointer;
  transition: all 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: #6c757d;
  color: #fff;
  border: none;
  padding: 12px 30px;
  border-radius: 6px;
  font-family: 'Nunito', 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(308, 57%, 35%);
  text-decoration: none;
  padding: 12px 30px;
  border: 2px solid hsl(308, 57%, 35%);
  border-radius: 6px;
  font-family: 'Nunito', sans-serif;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
  font-size: 1rem;
}

.btn-manage:hover {
  background: hsl(308, 57%, 35%);
  color: white;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .cookie-buttons {
    flex-direction: column;
  }
  
  .btn-accept-all, .btn-reject, .btn-manage {
    width: 100%;
    text-align: center;
  }
  
  footer {
    padding: 40px 0 20px;
  }
}

.blog-page {
            padding: 4rem 0;
        }
        .blog-page h1 {
            margin-bottom: 3rem;
            text-align: center;
            color: hsl(308, 57%, 35%);
        }
        .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(308, 57%, 35%);
        }
        .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(308, 57%, 60%);
        }
        .blog-read-more {
            background-color: hsl(308, 57%, 35%);
            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(308, 57%, 60%);
            color: white;
            transform: translateX(5px);
        }

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

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

.hero-section {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, hsl(308, 57%, 20%) 0%, hsl(308, 57%, 35%) 100%);
  overflow: hidden;
  padding: 80px 0;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('images/hero.jpg') center center/cover no-repeat;
  opacity: 0.15;
  z-index: 1;
}

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

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

.hero-content h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 28px;
  color: hsl(308, 57%, 85%);
  line-height: 1.4;
}

.hero-description {
  font-family: 'Nunito', sans-serif;
  font-size: 1.15rem;
  line-height: 1.8;
  margin-bottom: 35px;
  color: #f8f9fa;
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 400;
}

.hero-features {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin: 40px auto;
  max-width: 1000px;
  padding: 0;
}

.hero-features li {
  background: rgba(255,255,255,0.1);
  padding: 18px 24px;
  border-radius: 8px;
  font-family: 'Nunito', sans-serif;
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  gap: 12px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  transition: all 0.3s ease;
  color: #fff;
}

.hero-features li:hover {
  background: rgba(255,255,255,0.18);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

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

.hero-cta {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 45px;
}

.btn-primary-hero {
  background: hsl(308, 57%, 60%);
  color: white;
  padding: 16px 40px;
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  border: none;
  border-radius: 6px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.btn-primary-hero:hover {
  background: hsl(308, 57%, 50%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
  color: #fff;
}

.btn-secondary-hero {
  background: transparent;
  color: #ffffff;
  padding: 16px 40px;
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  border: 2px solid rgba(255,255,255,0.6);
  border-radius: 6px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}

.btn-secondary-hero:hover {
  background: rgba(255,255,255,0.15);
  border-color: #ffffff;
  transform: translateY(-2px);
  color: #fff;
}

@media (max-width: 992px) {
  .hero-content h1 {
    font-size: 2.8rem;
  }
  
  .hero-content h2 {
    font-size: 1.5rem;
  }
  
  .hero-description {
    font-size: 1.05rem;
  }
  
  .hero-features {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .hero-section {
    min-height: 70vh;
    padding: 60px 0;
  }
  
  .hero-content h1 {
    font-size: 2.2rem;
    margin-bottom: 20px;
  }
  
  .hero-content h2 {
    font-size: 1.3rem;
    margin-bottom: 22px;
  }
  
  .hero-description {
    font-size: 1rem;
    margin-bottom: 28px;
  }
  
  .hero-features li {
    padding: 15px 20px;
    font-size: 0.98rem;
  }
  
  .hero-cta {
    flex-direction: column;
    gap: 14px;
  }
  
  .btn-primary-hero,
  .btn-secondary-hero {
    width: 100%;
    justify-content: center;
    padding: 14px 32px;
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .hero-content h1 {
    font-size: 1.9rem;
  }
  
  .hero-content h2 {
    font-size: 1.15rem;
  }
  
  .hero-description {
    font-size: 0.95rem;
  }
}

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

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

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

.portfolio-header h2 {
font-family: 'Poppins', sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: hsl(308, 57%, 35%);
  margin-bottom: 20px;
}

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

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

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

.project-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, hsl(308, 57%, 60%), hsl(308, 57%, 35%));
  transition: left 0.5s ease;
}

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

.project-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(138, 43, 107, 0.2);
  border-color: hsl(308, 57%, 60%);
}

.project-category {
  display: inline-block;
  background: hsl(308, 57%, 95%);
  color: hsl(308, 57%, 35%);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.project-card h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  color: #222;
  margin-bottom: 15px;
  font-weight: 600;
}

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

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

.project-date {
  color: #888;
  font-size: 0.9rem;
  font-weight: 600;
}

.project-tech {
  color: hsl(308, 57%, 35%);
  font-size: 0.85rem;
  font-weight: 600;
}

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

.modal-header {
  background: linear-gradient(135deg, hsl(308, 57%, 35%) 0%, hsl(308, 57%, 20%) 100%);
  color: white;
  border-radius: 15px 15px 0 0;
  padding: 25px 30px;
}

.modal-header h5 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0;
}

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

.modal-body {
  padding: 35px;
  background: #fafafa;
}

.modal-category {
  display: inline-block;
  background: hsl(308, 57%, 95%);
  color: hsl(308, 57%, 35%);
  padding: 8px 18px;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.modal-body h6 {
  font-family: 'Poppins', sans-serif;
  color: #333;
  font-size: 1.3rem;
  margin-top: 25px;
  margin-bottom: 15px;
  font-weight: 600;
}

.modal-body p {
  color: #555;
  line-height: 1.8;
  font-size: 1rem;
}

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

.modal-body ul li {
  padding: 8px 0;
  color: #666;
  position: relative;
  padding-left: 25px;
}

.modal-body ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: hsl(308, 57%, 60%);
  font-weight: bold;
  font-size: 1.2rem;
}

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

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

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

.statistics-section::before {
content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
    bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(136, 34, 103, 0.05) 0%, transparent 50%),
              radial-gradient(circle at 80% 80%, rgba(136, 34, 103, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.statistics-section .section-title {
  font-family: 'Poppins', sans-serif;
font-weight: 700;
  font-size: 2.8rem;
  color: #222;
  margin-bottom: 15px;
    text-align: center;
  position: relative;
}

.statistics-section .section-subtitle {
font-family: 'Nunito', sans-serif;
  font-size: 1.1rem;
  color: #666;
  text-align: center;
  margin-bottom: 60px;
  max-width: 700px;
    margin-left: auto;
  margin-right: auto;
}

.stat-circle {
  position: relative;
  padding: 35px 20px;
    background: white;
  border-radius: 20px;
  box-shadow: 0 5px 25px rgba(136, 34, 103, 0.08);
  transition: all 0.4s ease;
  margin-bottom: 30px;
    text-align: center;
  border: 2px solid transparent;
}

.stat-circle:hover {
  transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(136, 34, 103, 0.15);
  border-color: hsl(308, 57%, 60%);
}

.stat-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
    background: linear-gradient(135deg, hsl(308, 57%, 35%) 0%, hsl(308, 57%, 45%) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
    justify-content: center;
  font-size: 32px;
  color: #fff;
  position: relative;
  box-shadow: 0 4px 15px rgba(136, 34, 103, 0.25);
}

.stat-icon::after {
    content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
    border: 3px solid hsl(308, 57%, 60%);
  top: -8px;
  left: -8px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.stat-circle:hover .stat-icon::after {
    opacity: 1;
}

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

.stat-label {
    font-family: 'Nunito', sans-serif;
  font-size: 1rem;
  color: #555;
  font-weight: 600;
  text-transform: uppercase;
    letter-spacing: 0.5px;
}

@media (max-width: 768px) {
  .statistics-section {
    padding: 60px 0;
  }
  
  .statistics-section .section-title {
      font-size: 2.2rem;
  }
  
  .stat-circle {
    padding: 30px 15px;
  }
  
    .stat-number {
    font-size: 1.9rem;
  }
}

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

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

.about-section .container {
max-width: 1200px;
margin: 0 auto;
    padding: 0 15px;
}

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

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

.about-header h2::after {
content: '';
position: absolute;
bottom: -10px;
left: 50%;
transform: translateX(-50%);
width: 80px;
height: 4px;
background: hsl(308, 57%, 35%);
}

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

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

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

.about-image-left img {
width: 100%;
height: auto;
border-radius: 15px;
box-shadow: 0 10px 30px rgba(0,0,0,0.15);
transition: transform 0.4s ease;
}

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

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

.about-text-center h3 {
font-family: 'Poppins', sans-serif;
font-size: 2rem;
font-weight: 600;
color: hsl(308, 57%, 35%);
margin-bottom: 25px;
}

.about-text-center p {
font-size: 1.05rem;
color: #444;
line-height: 1.8;
margin-bottom: 20px;
text-align: justify;
}

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

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

.about-image-right img {
width: 100%;
height: auto;
border-radius: 15px;
box-shadow: 0 10px 30px rgba(0,0,0,0.15);
transition: transform 0.4s ease;
}

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

.mission-values {
background: white;
padding: 50px 40px;
border-radius: 20px;
box-shadow: 0 5px 25px rgba(0,0,0,0.08);
margin-top: 50px;
}

.mission-values h3 {
font-family: 'Poppins', sans-serif;
font-size: 1.9rem;
font-weight: 600;
color: #222;
margin-bottom: 30px;
text-align: center;
}

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

.value-item {
padding: 25px;
background: #f8f9fa;
border-radius: 12px;
border-left: 5px solid hsl(308, 57%, 35%);
transition: all 0.3s ease;
}

.value-item:hover {
transform: translateY(-5px);
box-shadow: 0 8px 20px rgba(0,0,0,0.1);
background: #fff;
}

.value-item h4 {
font-family: 'Poppins', sans-serif;
font-size: 1.3rem;
color: hsl(308, 57%, 35%);
margin-bottom: 15px;
font-weight: 600;
}

.value-item p {
font-size: 1rem;
color: #555;
line-height: 1.7;
margin: 0;
}

@media (max-width: 992px) {
.about-content-wrapper,
.about-content-wrapper-reverse {
flex-direction: column;
}

.about-image-left,
.about-image-right {
flex: 0 0 100%;
max-width: 500px;
margin: 0 auto;
}

.about-text-center {
padding: 0;
}

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

.values-grid {
grid-template-columns: 1fr;
}
}

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

.about-header h2 {
font-size: 1.9rem;
}

.about-header p {
font-size: 1rem;
}

.about-text-center h3 {
font-size: 1.6rem;
}

.mission-values {
padding: 35px 25px;
}

.mission-values h3 {
font-size: 1.6rem;
}
}

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

.newsletter-section {
  background: linear-gradient(135deg, hsl(308, 57%, 35%) 0%, hsl(308, 57%, 20%) 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

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

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

.newsletter-card {
  background: rgba(255,255,255,0.98);
  border-radius: 16px;
  padding: 50px 45px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
}

.newsletter-header h2 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  color: #222;
  font-size: 2.5rem;
  margin-bottom: 15px;
  line-height: 1.2;
}

.newsletter-header p {
  font-family: 'Nunito', sans-serif;
  color: #555;
  font-size: 1.1rem;
  margin-bottom: 35px;
  line-height: 1.6;
}

.benefits-list {
  list-style: none;
  padding: 0;
  margin: 0 0 40px 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.benefits-list li {
  font-family: 'Nunito', sans-serif;
  color: #333;
  font-size: 1rem;
  padding-left: 30px;
  position: relative;
  line-height: 1.5;
}

.benefits-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: hsl(308, 57%, 35%);
  font-weight: bold;
  font-size: 1.3rem;
}

.newsletter-form {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  align-items: stretch;
}

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

.newsletter-form .form-control:focus {
  outline: none;
  border-color: hsl(308, 57%, 35%);
  box-shadow: 0 0 0 3px rgba(156, 39, 107, 0.1);
}

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

.newsletter-btn {
  padding: 16px 40px;
  background: hsl(308, 57%, 35%);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  box-shadow: 0 4px 15px rgba(156, 39, 107, 0.3);
}

.newsletter-btn:hover {
  background: hsl(308, 57%, 20%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(156, 39, 107, 0.4);
}

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

.privacy-note {
  margin-top: 20px;
  font-family: 'Nunito', sans-serif;
  font-size: 0.875rem;
  color: #666;
  text-align: center;
}

@media (max-width: 768px) {
  .newsletter-section {
    padding: 60px 0;
  }
  
  .newsletter-card {
    padding: 35px 25px;
  }
  
  .newsletter-header h2 {
    font-size: 2rem;
  }
  
  .newsletter-form {
    flex-direction: column;
  }
  
  .newsletter-form .form-control {
    min-width: 100%;
  }
  
  .newsletter-btn {
    width: 100%;
  }
  
  .benefits-list {
    grid-template-columns: 1fr;
  }
}

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

.promo-section {
  font-family: 'Nunito', sans-serif;
    background: linear-gradient(135deg, hsl(308, 57%, 35%) 0%, hsl(308, 57%, 20%) 100%);
  padding: 80px 0;
    position: relative;
  overflow: hidden;
}

.promo-section::before {
  content: '';
    position: absolute;
  top: -50%;
    right: -10%;
  width: 500px;
    height: 500px;
  background: hsl(308, 57%, 60%);
    opacity: 0.1;
  border-radius: 50%;
}

.promo-section::after {
    content: '';
  position: absolute;
  bottom: -30%;
    left: -5%;
  width: 400px;
  height: 400px;
    background: hsl(308, 57%, 60%);
  opacity: 0.08;
    border-radius: 50%;
}

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

.promo-badge {
  display: inline-block;
    background: hsl(308, 57%, 60%);
  color: #fff;
  padding: 8px 24px;
    border-radius: 50px;
  font-size: 14px;
    font-weight: 600;
  text-transform: uppercase;
    letter-spacing: 1px;
  margin-bottom: 20px;
}

.promo-title {
    font-family: 'Poppins', sans-serif;
  color: #ffffff;
  font-size: 48px;
    font-weight: 700;
  margin-bottom: 24px;
    line-height: 1.2;
}

.promo-description {
  color: rgba(255,255,255,0.9);
    font-size: 18px;
  line-height: 1.7;
    margin-bottom: 40px;
  max-width: 700px;
    margin-left: auto;
  margin-right: auto;
}

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

.deadline-block {
  background: linear-gradient(135deg, hsl(308, 57%, 60%) 0%, hsl(308, 57%, 45%) 100%);
    padding: 30px;
  border-radius: 15px;
    margin-bottom: 35px;
  text-align: center;
}

.deadline-label {
    color: #fff;
  font-size: 16px;
  font-weight: 600;
    text-transform: uppercase;
  letter-spacing: 1.5px;
    margin-bottom: 12px;
}

.deadline-date {
  color: #ffffff;
    font-family: 'Poppins', sans-serif;
  font-size: 42px;
    font-weight: 700;
  display: flex;
    align-items: center;
  justify-content: center;
    gap: 15px;
}

.deadline-date i {
  font-size: 38px;
}

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

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

.benefits-list i {
  color: hsl(308, 57%, 35%);
    font-size: 24px;
  margin-right: 15px;
    margin-top: 2px;
  flex-shrink: 0;
}

.discount-highlight {
  background: hsl(308, 57%, 95%);
    border-left: 4px solid hsl(308, 57%, 35%);
  padding: 25px 30px;
    border-radius: 10px;
  margin: 30px 0;
}

.discount-highlight h4 {
    font-family: 'Poppins', sans-serif;
  color: hsl(308, 57%, 35%);
  font-size: 24px;
    margin-bottom: 10px;
  font-weight: 700;
}

.discount-highlight p {
    color: #555;
  margin: 0;
    font-size: 16px;
}

.cta-button {
  display: inline-block;
    background: linear-gradient(135deg, hsl(308, 57%, 35%), hsl(308, 57%, 45%));
  color: white;
    padding: 18px 50px;
  border-radius: 50px;
  font-size: 18px;
    font-weight: 700;
  text-decoration: none;
    transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    text-transform: uppercase;
  letter-spacing: 1px;
}

.cta-button:hover {
    transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.25);
  color: #fff;
    text-decoration: none;
}

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

.trust-item {
    text-align: center;
  color: #666;
}

.trust-item i {
  font-size: 32px;
    color: hsl(308, 57%, 35%);
  margin-bottom: 10px;
}

.trust-item span {
    display: block;
  font-size: 14px;
  font-weight: 600;
}

@media(max-width: 768px) {
  .promo-title {
      font-size: 36px;
  }
  
    .promo-card {
    padding: 35px 25px;
  }
  
  .deadline-date {
        font-size: 32px;
  }
  
    .benefits-list li {
    font-size: 16px;
  }
    
  .trust-indicators {
      gap: 25px;
  }
}

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

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

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

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

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

.faq-columns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.faq-item {
  background: white;
  border-radius: 12px;
  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(138, 43, 97, 0.15);
  transform: translateY(-3px);
}

.faq-question {
  padding: 22px 25px;
  background: linear-gradient(to right, hsl(308, 57%, 35%), hsl(308, 57%, 40%));
  cursor: pointer;
  position: relative;
  transition: background 0.3s;
}

.faq-question h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: #fff;
  margin: 0;
  padding-right: 35px;
}

.faq-icon {
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: white;
  transition: all 0.3s;
}

.faq-icon::before {
  width: 12px;
  height: 2px;
}

.faq-icon::after {
  width: 2px;
  height: 12px;
}

.faq-item.active .faq-icon {
  background: rgba(255,255,255,0.3);
  transform: translateY(-50%) rotate(45deg);
}

.faq-item.active .faq-icon::after {
  opacity: 0;
}

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

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

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

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

@media (max-width: 576px) {
  .faq-header h2 {
    font-size: 1.9rem;
  }
  
  .faq-question h3 {
    font-size: 0.95rem;
  }
  
  .faq-question {
    padding: 18px 20px;
  }
}

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&family=Nunito:wght@400;600;700&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: 'Nunito', sans-serif;
}

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

.services-section .section-header h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: hsl(308, 57%, 35%);
  margin-bottom: 20px;
}

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

.service-card {
  background: white;
  border-radius: 12px;
  padding: 35px 30px;
  margin-bottom: 30px;
  box-shadow: 0 3px 15px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  border: 1px solid #e9ecef;
  display: flex;
  align-items: flex-start;
  gap: 25px;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(141, 39, 107, 0.15);
  border-color: hsl(308, 57%, 60%);
}

.service-icon {
  flex-shrink: 0;
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, hsl(308, 57%, 35%) 0%, hsl(308, 57%, 45%) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: #fff;
  transition: all 0.3s ease;
}

.service-card:hover .service-icon {
  background: linear-gradient(135deg, hsl(308, 57%, 45%) 0%, hsl(308, 57%, 60%) 100%);
  transform: rotate(10deg) scale(1.1);
}

.service-content {
  flex: 1;
}

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

.service-content p {
  color: #666;
  font-size: 0.98rem;
  line-height: 1.7;
  margin-bottom: 18px;
}

.service-price {
  display: inline-block;
  background: hsl(308, 57%, 95%);
  color: hsl(308, 57%, 30%);
  padding: 8px 20px;
  border-radius: 25px;
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 12px;
}

.service-terms {
  font-size: 0.88rem;
  color: #777;
  font-style: italic;
  padding-top: 10px;
  border-top: 1px solid #eee;
}

@media (max-width: 768px) {
  .services-section {
    padding: 50px 0;
  }
  
  .services-section .section-header h2 {
    font-size: 2rem;
  }
  
  .service-card {
    flex-direction: column;
    text-align: center;
    padding: 25px 20px;
  }
  
  .service-icon {
    margin: 0 auto 20px;
  }
}

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

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

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

.blog-preview-section .section-header h2 {
font-family: 'Poppins', sans-serif;
  font-size: 2.5rem;
font-weight: 700;
color: hsl(308, 57%, 35%);
  margin-bottom: 15px;
}

.blog-preview-section .section-header p {
  font-family: 'Nunito', sans-serif;
font-size: 1.1rem;
  color: #555;
max-width: 600px;
margin: 0 auto;
}

.blog-grid {
display: grid;
  grid-template-columns: 1.2fr 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: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-8px);
box-shadow: 0 8px 25px rgba(138, 41, 105, 0.15);
}

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

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

.blog-category {
background: hsl(308, 57%, 60%);
  color: white;
padding: 6px 16px;
  border-radius: 20px;
font-family: 'Nunito', sans-serif;
font-size: 0.85rem;
  font-weight: 600;
}

.blog-date {
color: #666;
  font-family: 'Nunito', sans-serif;
font-size: 0.9rem;
display: flex;
  align-items: center;
gap: 6px;
}

.blog-reading-time {
  color: #777;
font-family: 'Nunito', sans-serif;
  font-size: 0.9rem;
}

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

.blog-card.featured h3 {
font-size: 2.2rem;
}

.blog-card p {
  font-family: 'Nunito', sans-serif;
font-size: 1.05rem;
  color: #555;
line-height: 1.7;
  margin-bottom: 25px;
flex-grow: 1;
}

.blog-card.featured p {
  font-size: 1.1rem;
}

.read-more-btn {
  display: inline-block;
background: hsl(308, 57%, 35%);
color: #fff;
  padding: 12px 28px;
border-radius: 8px;
  text-decoration: none;
font-family: 'Nunito', sans-serif;
  font-weight: 600;
font-size: 1rem;
  transition: background 0.3s ease;
align-self: flex-start;
}

.read-more-btn:hover {
background: hsl(308, 57%, 20%);
  color: white;
}

.view-all-container {
text-align: center;
}

.view-all-btn {
  display: inline-block;
background: hsl(308, 57%, 60%);
  color: white;
padding: 16px 45px;
  border-radius: 10px;
text-decoration: none;
  font-family: 'Poppins', sans-serif;
font-weight: 600;
  font-size: 1.1rem;
transition: all 0.3s ease;
  border: 2px solid hsl(308, 57%, 60%);
}

.view-all-btn:hover {
  background: transparent;
color: hsl(308, 57%, 35%);
  border-color: hsl(308, 57%, 35%);
}

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

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

.blog-card.featured h3 {
    font-size: 1.9rem;
}
}

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

.blog-preview-section .section-header h2 {
    font-size: 2rem;
}

  .blog-card-content {
padding: 25px;
  }

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

  .blog-card.featured h3 {
font-size: 1.6rem;
  }

.blog-card p {
    font-size: 1rem;
}
}

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@600;700&family=Nunito:wght@400;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: 'Nunito', sans-serif;
}

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

.testimonials-header h2 {
font-family: 'Poppins', sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: hsl(308, 57%, 35%);
  margin-bottom: 18px;
}

.testimonials-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: 32px 28px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  margin-bottom: 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

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

.testimonial-rating {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}

.testimonial-rating i {
  color: hsl(308, 57%, 60%);
  font-size: 1.1rem;
}

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

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

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

.author-info p {
  font-size: 13px;
  color: #777;
  margin: 0;
}

.testimonial-date {
  font-size: 12px;
  color: #999;
}

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

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

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

.contact-section::before {
content: '';
position: absolute;
top: -50%;
right: -20%;
width: 600px;
height: 600px;
background: radial-gradient(circle, rgba(155, 38, 123, 0.08) 0%, transparent 70%);
border-radius: 50%;
}

.contact-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(155, 38, 123, 0.05) 0%, transparent 70%);
  border-radius: 50%;
}

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

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

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

.section-header h2::after {
content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
width: 80px;
  height: 4px;
  background: linear-gradient(90deg, hsl(308, 57%, 35%), hsl(308, 57%, 60%));
  border-radius: 2px;
}

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

.contact-form-wrapper {
background: white;
  padding: 45px 40px;
  border-radius: 15px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
  position: relative;
}

.contact-form-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, hsl(308, 57%, 35%), hsl(308, 57%, 60%));
  border-radius: 15px 15px 0 0;
}

.form-title {
  font-family: 'Poppins', sans-serif;
font-size: 1.8rem;
  font-weight: 600;
  color: #222;
  margin-bottom: 25px;
}

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

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

.contact-form .form-control:focus {
  border-color: hsl(308, 57%, 35%);
  box-shadow: 0 0 0 0.2rem rgba(155, 38, 123, 0.15);
  background: white;
  outline: none;
}

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

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

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

.form-check-input:checked {
  background-color: hsl(308, 57%, 35%);
  border-color: hsl(308, 57%, 35%);
}

.form-check-label {
  color: #444;
  font-size: 0.9rem;
  line-height: 1.5;
  cursor: pointer;
}

.form-check-label a {
  color: hsl(308, 57%, 35%);
  text-decoration: none;
  font-weight: 600;
}

.form-check-label a:hover {
  text-decoration: underline;
}

.submit-btn {
  width: 100%;
  padding: 14px 30px;
  background: linear-gradient(135deg, hsl(308, 57%, 35%) 0%, hsl(308, 57%, 45%) 100%);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(155, 38, 123, 0.3);
}

.submit-btn:hover {
  background: linear-gradient(135deg, hsl(308, 57%, 30%) 0%, hsl(308, 57%, 40%) 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(155, 38, 123, 0.4);
}

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

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

.gdpr-notice strong {
  color: #222;
  font-size: 0.95rem;
}

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

.gdpr-notice a {
  color: hsl(308, 57%, 35%);
  text-decoration: none;
  font-weight: 600;
}

.gdpr-notice a:hover {
  text-decoration: underline;
}

.contact-info-wrapper {
  padding-left: 30px;
}

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

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

.info-card h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: #222;
  margin-bottom: 18px;
}

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

.info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 18px;
  padding: 12px;
  background: #fafafa;
  border-radius: 8px;
  transition: background 0.3s ease;
}

.info-item:hover {
  background: #f0f0f0;
}

.info-icon {
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, hsl(308, 57%, 35%), hsl(308, 57%, 50%));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  flex-shrink: 0;
  color: white;
  font-size: 1.2rem;
  font-weight: bold;
}

.info-content h5 {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 5px;
}

.info-content p {
  color: #666;
  margin: 0;
  font-size: 0.95rem;
}

.info-content a {
  color: hsl(308, 57%, 35%);
  text-decoration: none;
  font-weight: 600;
}

.info-content a:hover {
  text-decoration: underline;
}

.consultation-process {
  background: linear-gradient(135deg, hsl(308, 57%, 35%) 0%, hsl(308, 57%, 25%) 100%);
  padding: 35px 30px;
  border-radius: 12px;
  color: white;
  box-shadow: 0 8px 30px rgba(155, 38, 123, 0.3);
}

.consultation-process h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: white;
}

.process-step {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.2);
}

.process-step:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

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

.step-content h6 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: white;
}

.step-content p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.9);
}

@media (max-width: 991px) {
  .contact-info-wrapper {
    padding-left: 0;
    margin-top: 40px;
  }
  
  .section-header h2 {
    font-size: 2.2rem;
  }
}

@media (max-width: 768px) {
  .contact-section {
    padding: 60px 0;
  }
  
  .section-header h2 {
    font-size: 1.9rem;
  }
  
  .contact-form-wrapper {
    padding: 30px 25px;
  }
  
  .form-title {
    font-size: 1.5rem;
  }
}

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@600;700&family=Nunito:wght@400;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%);
  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(142, 36, 104, 0.03) 0%, transparent 50%),
              radial-gradient(circle at 80% 80%, rgba(142, 36, 104, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

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

.advantages-header h2 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 2.8rem;
  color: hsl(308, 57%, 35%);
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

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

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

.timeline-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, 
    hsl(308, 57%, 60%) 0%,
    hsl(308, 57%, 35%) 50%,
    hsl(308, 57%, 60%) 100%);
  transform: translateX(-50%);
  z-index: 0;
}

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

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

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

.advantage-content {
  width: 48%;
  background: white;
  border-radius: 16px;
  padding: 35px 30px;
  box-shadow: 0 8px 25px rgba(142, 36, 104, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  border: 2px solid transparent;
}

.advantage-content:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(142, 36, 104, 0.15);
  border-color: hsl(308, 57%, 60%);
}

.advantage-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, hsl(308, 57%, 35%) 0%, hsl(308, 57%, 45%) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  position: relative;
  box-shadow: 0 6px 20px rgba(142, 36, 104, 0.25);
}

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

.advantage-icon::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: hsl(308, 57%, 60%);
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.3s ease;
}

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

.advantage-number {
  position: absolute;
  top: -15px;
  right: 25px;
  width: 45px;
  height: 45px;
  background: hsl(308, 57%, 60%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: white;
  box-shadow: 0 4px 12px rgba(142, 36, 104, 0.3);
}

.advantage-content h3 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1.5rem;
  color: #222;
  margin-bottom: 16px;
  line-height: 1.3;
}

.advantage-content p {
  font-family: 'Nunito', sans-serif;
  font-size: 1.05rem;
  color: #666;
  line-height: 1.7;
  margin: 0;
}

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

@media (max-width: 991px) {
  .timeline-line {
    left: 30px;
  }
  
  .advantage-content {
    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-content {
    padding: 28px 22px;
    width: calc(100% - 60px);
    margin-left: 60px !important;
  }
  
  .advantage-icon {
    width: 60px;
    height: 60px;
  }
  
  .advantage-icon i {
    font-size: 28px;
  }
  
  .advantage-content h3 {
    font-size: 1.3rem;
  }
  
  .advantage-content p {
    font-size: 0.98rem;
  }
  
  .timeline-line {
    left: 20px;
  }
  
  .timeline-dot {
    left: 20px;
    width: 14px;
    height: 14px;
  }
}

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

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

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

.disclaimer-card {
    background: white;
  border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  padding: 45px 40px;
    border-left: 5px solid hsl(308, 57%, 35%);
}

.disclaimer-header {
  display: flex;
    align-items: center;
  gap: 18px;
    margin-bottom: 28px;
}

.disclaimer-icon {
  font-size: 42px;
    color: hsl(308, 57%, 35%);
  flex-shrink: 0;
}

.disclaimer-title {
    font-family: 'Poppins', sans-serif;
  font-size: 32px;
  font-weight: 700;
    color: #222;
  margin: 0;
}

.disclaimer-content {
    color: #444;
  font-size: 16px;
    line-height: 1.75;
  margin: 0;
}

.disclaimer-content strong {
  color: hsl(308, 57%, 30%);
    font-weight: 600;
}

@media (max-width: 768px) {
  .disclaimer-section {
      padding: 50px 0;
  }
  
  .disclaimer-card {
    padding: 35px 25px;
  }
  
    .disclaimer-header {
    flex-direction: column;
      align-items: flex-start;
    gap: 12px;
  }
  
  .disclaimer-icon {
      font-size: 36px;
  }
  
    .disclaimer-title {
    font-size: 26px;
  }
  
  .disclaimer-content {
      font-size: 15px;
  }
}

@media (max-width: 480px) {
    .disclaimer-card {
    padding: 28px 20px;
  }
  
  .disclaimer-title {
      font-size: 23px;
  }
}

.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: 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.1);
  }

  .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 .last-updated {
    color: #e0e7ff;
    font-size: 1.1em;
    font-weight: 300;
  }

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

  .privacy-section {
    margin-bottom: 45px;
    padding-bottom: 35px;
    border-bottom: 2px solid #e8eef5;
  }

  .privacy-section:last-child {
    border-bottom: none;
  }

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

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

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

  .privacy-list {
    margin: 20px 0;
    padding-left: 0;
    list-style: none;
  }

  .privacy-list li {
    padding: 15px 20px 15px 50px;
    margin-bottom: 12px;
    background: #f8f9ff;
    border-left: 4px solid #667eea;
    border-radius: 8px;
    position: relative;
    transition: all 0.3s ease;
  }

  .privacy-list li:hover {
    background: #e8ecff;
    transform: translateX(5px);
  }

  .privacy-list li:before {
    content: "✓";
    position: absolute;
    left: 20px;
    color: #667eea;
    font-weight: bold;
    font-size: 1.2em;
  }

  .highlight-box {
    background: linear-gradient(135deg, #ffeaa7 0%, #fdcb6e 100%);
    padding: 25px;
    border-radius: 12px;
    margin: 25px 0;
    border-left: 5px solid #e17055;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  }

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

  .info-box {
    background: linear-gradient(135deg, #dfe6e9 0%, #b2bec3 100%);
    padding: 25px;
    border-radius: 12px;
    margin: 25px 0;
    border-left: 5px solid #2d3436;
  }

  .company-info {
    background: linear-gradient(135deg, #a29bfe 0%, #6c5ce7 100%);
    color: #ffffff;
    padding: 30px;
    border-radius: 12px;
    margin: 30px 0;
    text-align: center;
  }

  .company-info strong {
    font-size: 1.2em;
    display: block;
    margin-bottom: 10px;
  }

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

  .right-card {
    background: linear-gradient(135deg, #74b9ff 0%, #0984e3 100%);
    padding: 25px;
    border-radius: 12px;
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
  }

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

  .right-card h4 {
    margin: 0 0 15px 0;
    font-size: 1.3em;
    font-weight: 600;
  }

  .right-card p {
    margin: 0;
    font-size: 0.95em;
    line-height: 1.6;
  }

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

  .platform-section h4 {
    color: #495057;
    margin-bottom: 15px;
    font-size: 1.2em;
  }

  @media (max-width: 768px) {
    .privacy-header h1 {
      font-size: 2em;
    }
    
    .privacy-content {
      padding: 30px 20px;
    }
    
    .privacy-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;
  }
  
  .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.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    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: white;
    color: #ed1c24;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    margin-top: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  }
  
  .entity-banner {
    background: linear-gradient(135deg, hsl(308, 57%, 35%) 0%, hsl(308, 57%, 20%) 100%);
    color: white;
    padding: 40px 20px;
    text-align: center;
    margin-bottom: 40px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
  }
  
  .entity-banner h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 10px;
  }
  
  .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 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
  }
  
  .card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: hsl(308, 57%, 35%);
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 3px solid hsl(308, 57%, 60%);
  }
  
  .info-row {
    display: flex;
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
    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: #555;
    font-size: 0.95rem;
  }
  
  .status-active {
    color: #27ae60;
    font-weight: 700;
  }
  
  .status-active::before {
    content: '✓ ';
    font-weight: bold;
  }
  
  .excellence-footer {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 50px 30px;
    border-radius: 15px;
    margin-top: 40px;
    margin-bottom: 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
  }
  
  .excellence-footer h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
  }
  
  .excellence-footer p {
    font-size: 1.05rem;
    line-height: 1.8;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    opacity: 0.95;
  }
  
  @media (max-width: 768px) {
    .header-section h1 {
      font-size: 1.8rem;
    }
    
    .entity-banner h2 {
      font-size: 1.6rem;
    }
    
    .info-row {
      flex-direction: column;
      align-items: flex-start;
    }
    
    .info-label, .info-value {
      flex: 0 0 100%;
      width: 100%;
    }
    
    .info-value {
      margin-top: 8px;
      padding-left: 0;
    }
    
    .card-title {
      font-size: 1.3rem;
    }
  }
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
  }

.terms-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #1a1a1a;
  }
  
  .terms-content {
    background: #ffffff;
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  }
  
  .terms-header {
    text-align: center;
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: 3px solid #667eea;
  }
  
  .terms-header h1 {
    font-size: 42px;
    color: #2d3748;
    margin-bottom: 15px;
    font-weight: 700;
    letter-spacing: -1px;
  }
  
  .terms-header .update-date {
    font-size: 16px;
    color: #718096;
    font-style: italic;
  }
  
  .terms-section {
    margin-bottom: 40px;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 12px;
    border-left: 5px solid #667eea;
    transition: all 0.3s ease;
  }
  
  .terms-section:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.2);
  }
  
  .terms-section h2 {
    font-size: 26px;
    color: #667eea;
    margin-bottom: 20px;
    font-weight: 600;
    display: flex;
    align-items: center;
  }
  
  .terms-section h2::before {
    content: "§";
    margin-right: 15px;
    font-size: 32px;
    color: #764ba2;
  }
  
  .terms-section h3 {
    font-size: 20px;
    color: #4a5568;
    margin-top: 25px;
    margin-bottom: 15px;
    font-weight: 600;
  }
  
  .terms-section p {
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 15px;
    font-size: 16px;
  }
  
  .terms-section ul {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  
  .terms-section li {
    margin-bottom: 12px;
    line-height: 1.8;
    color: #4a5568;
    position: relative;
    padding-left: 10px;
  }
  
  .terms-section li::marker {
    color: #667eea;
    font-weight: bold;
  }
  
  .highlight-box {
    background: #edf2f7;
    border: 2px solid #667eea;
    border-radius: 10px;
    padding: 25px;
    margin: 25px 0;
  }
  
  .highlight-box strong {
    color: #667eea;
    font-size: 18px;
  }
  
  .acceptance-notice {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    margin-top: 40px;
    font-size: 16px;
    line-height: 1.8;
  }
  
  @media (max-width: 768px) {
    .terms-content {
      padding: 30px 20px;
    }
    
    .terms-header h1 {
      font-size: 32px;
    }
    
    .terms-section {
      padding: 20px;
    }
    
    .terms-section h2 {
      font-size: 22px;
    }
  }