:root {
--primary-color: hsl(178, 54%, 32%);
  --secondary-color: hsl(178, 54%, 17%);
--accent-color: hsl(178, 54%, 57%);
}

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

body {
font-family: 'Nunito', sans-serif;
  color: #333;
background: white;
line-height: 1.6;
}

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

.navbar {
background-color: #ffffff;
  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-weight: 700;
  color: var(--primary-color) !important;
font-size: 1.4rem;
  font-family: 'Poppins', sans-serif;
}

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

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

.navbar-nav .nav-link {
color: #333 !important;
  font-weight: 500;
padding: 0.5rem 1.2rem;
  transition: color 0.3s ease;
position: relative;
font-size: 1rem;
}

.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) !important;
}

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

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

.navbar-nav .nav-link {
padding: 0.75rem 1.5rem;
}
}

@media (min-width: 992px) {
.navbar-expand-lg .navbar-nav .nav-link {
padding-right: 1rem;
  padding-left: 1rem;
}
}

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

    .cookies-policy h1 {
        font-size: 3em;
        color: #1a252f;
        text-align: center;
        margin-bottom: 20px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 2px;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .cookies-policy .last-updated {
        text-align: center;
        color: #7f8c8d;
        font-style: italic;
        margin-bottom: 50px;
        font-size: 0.95em;
    }

    .cookies-policy h2 {
        font-size: 1.8em;
        color: #34495e;
        margin-top: 40px;
        margin-bottom: 20px;
        padding-bottom: 10px;
        border-bottom: 3px solid #667eea;
        font-weight: 600;
    }

    .cookies-policy h3 {
        font-size: 1.3em;
        color: #546e7a;
        margin-top: 30px;
        margin-bottom: 15px;
        font-weight: 600;
    }

    .cookies-policy p {
        margin-bottom: 20px;
        text-align: justify;
        font-size: 1.05em;
        color: #3d4852;
    }

    .cookies-policy ul, .cookies-policy ol {
        margin-bottom: 25px;
        padding-left: 30px;
    }

    .cookies-policy li {
        margin-bottom: 12px;
        color: #3d4852;
        font-size: 1.02em;
    }

    .cookie-category {
        background: white;
        border-radius: 12px;
        padding: 30px;
        margin: 30px 0;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

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

    .cookie-type-badge {
        display: inline-block;
        padding: 8px 18px;
        border-radius: 25px;
        font-size: 0.85em;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-bottom: 15px;
    }

    .badge-essential {
        background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
        color: white;
    }

    .badge-functional {
        background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
        color: white;
    }

    .badge-analytics {
        background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
        color: white;
    }

    .badge-marketing {
        background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
        color: #2c3e50;
    }

    .info-box {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        color: white;
        padding: 25px;
        border-radius: 10px;
        margin: 30px 0;
        border-left: 5px solid #ffd700;
    }

    .info-box h3 {
        color: white;
        margin-top: 0;
    }

    .info-box p {
        color: #f0f0f0;
    }

    .consent-section {
        background: #ffffff;
        border-radius: 12px;
        padding: 35px;
        margin: 35px 0;
        border: 2px solid #667eea;
        box-shadow: 0 8px 25px rgba(102, 126, 234, 0.2);
    }

    .table-container {
        overflow-x: auto;
        margin: 25px 0;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

    .cookies-policy table {
        width: 100%;
        border-collapse: collapse;
        background: white;
    }

    .cookies-policy th {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        color: white;
        padding: 15px;
        text-align: left;
        font-weight: 600;
        text-transform: uppercase;
        font-size: 0.9em;
        letter-spacing: 1px;
    }

    .cookies-policy td {
        padding: 15px;
        border-bottom: 1px solid #ecf0f1;
        color: #3d4852;
    }

    .cookies-policy tr:hover {
        background-color: #f8f9fa;
    }

    .highlight-text {
        background: linear-gradient(135deg, #ffeaa7 0%, #fdcb6e 100%);
        padding: 3px 8px;
        border-radius: 4px;
        font-weight: 600;
    }

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

    .control-card {
        background: white;
        padding: 25px;
        border-radius: 10px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
        border-left: 4px solid #667eea;
    }

    .control-card h4 {
        color: #667eea;
        margin-top: 0;
        font-size: 1.2em;
    }

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

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

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

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

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

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

footer {
  background: hsl(178, 54%, 17%);
  color: #f8f9fa;
  padding: 60px 0 20px;
  font-family: 'Nunito', sans-serif;
}

footer h4 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  color: hsl(178, 54%, 57%);
  margin-bottom: 25px;
  font-size: 1.4rem;
}

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

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

footer a:hover {
  color: hsl(178, 54%, 57%);
}

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

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

.footer-contact-info {
  margin-top: 20px;
}

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

.footer-contact-info i {
  color: hsl(178, 54%, 57%);
  width: 20px;
}

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

#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(178, 54%, 32%);
}

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

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

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

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

.cookie-category {
  margin-bottom: 12px;
  color: #333;
  font-size: 14px;
}

.cookie-category strong {
  color: hsl(178, 54%, 32%);
  font-weight: 600;
}

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

.btn-accept-all {
  background: hsl(178, 54%, 32%);
  color: white;
  border: none;
  padding: 12px 30px;
  border-radius: 6px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 15px;
}

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

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

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

.btn-manage {
  color: hsl(178, 54%, 32%);
  text-decoration: none;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  padding: 12px 20px;
  border: 2px solid hsl(178, 54%, 32%);
  border-radius: 6px;
  transition: all 0.3s ease;
  display: inline-block;
  font-size: 15px;
}

.btn-manage:hover {
  background: hsl(178, 54%, 32%);
  color: white;
}

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

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

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

.hero-section::before {
content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(41, 128, 121, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.hero-content {
  text-align: center;
  max-width: 920px;
  margin: 0 auto 3.5rem;
  position: relative;
  z-index: 2;
  padding: 0 15px;
}

.hero-content h1 {
font-family: 'Poppins', sans-serif;
  font-size: 3.2rem;
  font-weight: 700;
  color: hsl(178, 54%, 17%);
  margin-bottom: 1.5rem;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.hero-content h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: hsl(178, 54%, 32%);
  margin-bottom: 2rem;
  line-height: 1.4;
}

.hero-description {
  font-family: 'Nunito', sans-serif;
  font-size: 1.1rem;
  color: #333333;
  line-height: 1.8;
  margin-bottom: 2.5rem;
  text-align: left;
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
}

.hero-benefits {
  list-style: none;
  padding: 0;
  margin: 2.5rem 0 3rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.2rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.hero-benefits li {
font-family: 'Nunito', sans-serif;
  font-size: 1.05rem;
  color: rgb(51, 51, 51);
  padding: 1rem 1.2rem;
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  display: flex;
  align-items: center;
  gap: 0.8rem;
  transition: all 0.3s ease;
  text-align: left;
}

.hero-benefits li:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(41, 128, 121, 0.15);
}

.hero-benefits li i {
  color: hsl(178, 54%, 32%);
  font-size: 1.4rem;
  flex-shrink: 0;
}

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

.btn-primary-hero {
  font-family: 'Poppins', sans-serif;
  background: hsl(178, 54%, 32%);
  color: #ffffff;
  padding: 1rem 2.5rem;
  border: none;
  border-radius: 6px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(41, 128, 121, 0.25);
}

.btn-primary-hero:hover {
  background: hsl(178, 54%, 17%);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(41, 128, 121, 0.35);
  color: white;
}

.btn-secondary-hero {
font-family: 'Poppins', sans-serif;
  background: transparent;
  color: hsl(178, 54%, 32%);
  padding: 1rem 2.5rem;
  border: 2px solid hsl(178, 54%, 32%);
  border-radius: 6px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

.btn-secondary-hero:hover {
  background: hsl(178, 54%, 32%);
  color: #fff;
  transform: translateY(-2px);
}

.hero-image-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  position: relative;
  z-index: 1;
}

.hero-image-wrapper img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.15);
  display: block;
}

@media (max-width: 768px) {
  .hero-section {
    padding: 3rem 0;
  }
  
  .hero-content h1 {
    font-size: 2.2rem;
  }
  
  .hero-content h2 {
    font-size: 1.2rem;
  }
  
  .hero-description {
    font-size: 1rem;
  }
  
  .hero-benefits {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }
  
  .btn-primary-hero,
  .btn-secondary-hero {
    width: 100%;
    text-align: center;
  }
}

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

@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.0/font/bootstrap-icons.css');

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

.advantages-section::before {
content: '';
position: absolute;
  top: -50%;
left: -10%;
width: 500px;
height: 500px;
background: radial-gradient(circle, rgba(37,139,130,0.08) 0%, transparent 70%);
border-radius: 50%;
}

.advantages-section::after{
  content: '';
position: absolute;
bottom: -30%;
right: -5%;
  width: 400px;
height: 400px;
background: radial-gradient(circle, rgba(37,139,130,0.06) 0%, transparent 70%);
  border-radius: 50%;
}

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

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

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

.advantage-row {
  margin-bottom: 45px;
position: relative;
z-index: 2;
}

.advantage-card {
background: #ffffff;
border-radius: 16px;
padding: 38px 32px;
box-shadow: 0 4px 20px rgba(0,0,0,0.06);
transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
height: 100%;
border: 1px solid rgba(37,139,130,0.1);
position: relative;
overflow: hidden;
}

.advantage-card::before {
content: '';
  position: absolute;
top: 0;
left: 0;
width: 100%;
height: 4px;
background: linear-gradient(90deg, hsl(178,54%,32%) 0%, hsl(178,54%,57%) 100%);
transform: scaleX(0);
transform-origin: left;
transition: transform 0.5s ease;
}

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

.advantage-card:hover {
transform: translateY(-8px);
box-shadow: 0 12px 35px rgba(37,139,130,0.18);
border-color: hsl(178,54%,57%);
}

.advantage-icon {
width: 72px;
height: 72px;
background: linear-gradient(135deg, hsl(178,54%,32%) 0%, hsl(178,54%,57%) 100%);
border-radius: 14px;
display: flex;
align-items: center;
justify-content: center;
margin-bottom: 24px;
transition: all 0.3s ease;
box-shadow: 0 6px 20px rgba(37,139,130,0.25);
}

.advantage-card:hover .advantage-icon {
transform: rotate(5deg) scale(1.08);
box-shadow: 0 8px 25px rgba(37,139,130,0.35);
}

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

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

.advantage-card p {
font-family: 'Nunito', sans-serif;
font-size: 1.02rem;
color: #4a4a4a;
line-height: 1.75;
margin: 0;
}

.left-align {
text-align: left;
}

.right-align {
text-align: right;
}

@media (max-width: 991px) {
.advantage-row {
margin-bottom: 35px;
}

.right-align {
text-align: left;
}

.section-header h2 {
font-size: 2.3rem;
}
}

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

.section-header {
margin-bottom: 50px;
}

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

.section-header p {
font-size: 1.05rem;
}

.advantage-card {
padding: 30px 24px;
}

.advantage-icon {
width: 64px;
height: 64px;
}

.advantage-icon i {
font-size: 1.75rem;
}

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

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

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

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

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

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

.contact-form-wrapper h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.8rem;
  color: hsl(178, 54%, 32%);
  margin-bottom: 25px;
  font-weight: 600;
}

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

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

.contact-form .form-control:focus {
  border-color: hsl(178, 54%, 57%);
  box-shadow: 0 0 0 0.2rem rgba(77, 182, 172, 0.25);
  outline: none;
}

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

.contact-form .btn-submit {
  background: hsl(178, 54%, 32%);
  color: #fff;
  border: none;
  padding: 14px 40px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
  width: 100%;
  margin-top: 10px;
  font-family: 'Poppins', sans-serif;
}

.contact-form .btn-submit:hover {
  background: hsl(178, 54%, 17%);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

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

.contact-info-wrapper h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.8rem;
  color: hsl(178, 54%, 32%);
  margin-bottom: 20px;
  font-weight: 600;
}

.contact-info-item {
  margin-bottom: 30px;
  padding: 20px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 3px 15px rgba(0,0,0,0.06);
  transition: transform 0.3s ease;
}

.contact-info-item:hover {
  transform: translateY(-3px);
}

.contact-info-item .icon {
  width: 50px;
  height: 50px;
  background: hsl(178, 54%, 57%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  color: white;
  font-size: 1.4rem;
}

.contact-info-item h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.2rem;
  color: #222;
  margin-bottom: 8px;
  font-weight: 600;
}

.contact-info-item p {
  color: #555;
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
}

.consultation-process {
  background: hsl(178, 54%, 32%);
  padding: 30px;
  border-radius: 10px;
  color: white;
  margin-top: 25px;
}

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

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

.consultation-process ul li {
  padding: 10px 0;
  padding-left: 30px;
  position: relative;
  font-size: 0.98rem;
  line-height: 1.7;
}

.consultation-process ul li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: hsl(178, 54%, 57%);
  font-weight: bold;
  font-size: 1.2rem;
}

.form-check-label {
  color: #333;
  font-size: 0.9rem;
}

.form-check-label a {
  color: hsl(178, 54%, 32%);
  text-decoration: none;
  font-weight: 600;
}

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

.gdpr-notice {
  margin-top: 15px;
  padding: 15px;
  background: #f8f9fa;
  border-left: 3px solid hsl(178, 54%, 32%);
  font-size: 0.9rem;
  color: #333;
}

.gdpr-notice strong {
  color: #222;
}

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

.gdpr-notice a {
  color: hsl(178, 54%, 32%);
  text-decoration: none;
  font-weight: 600;
}

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

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

@media (max-width: 576px) {
  .contact-section {
    padding: 60px 0;
  }
  
  .contact-section .section-title {
    font-size: 1.9rem;
  }
  
  .contact-form-wrapper h3,
  .contact-info-wrapper h3 {
    font-size: 1.5rem;
  }
}

@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 {
  font-family: 'Nunito', sans-serif;
padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.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: #222;
  margin-bottom: 15px;
}

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

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

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

.service-card .icon-wrapper {
    min-width: 70px;
  height: 70px;
    background: linear-gradient(135deg, hsl(178, 54%, 32%) 0%, hsl(178, 54%, 42%) 100%);
  border-radius: 50%;
    display: flex;
  align-items: center;
    justify-content: center;
  flex-shrink: 0;
}

.service-card .icon-wrapper i {
font-size: 32px;
    color: #fff;
}

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

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

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

.service-card .price-tag {
    display: inline-block;
  background: hsl(178, 54%, 57%);
    color: white;
  padding: 8px 20px;
    border-radius: 25px;
  font-weight: 600;
    font-size: 1.1rem;
}

@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;
    gap: 15px;
}

.service-card .icon-wrapper {
    margin: 0 auto;
}
}

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

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

.promo-offer-section::before {
    content: '';
  position: absolute;
    top: -50%;
  left: -10%;
    width: 40%;
  height: 200%;
    background: linear-gradient(45deg, rgba(41, 128, 185, 0.05) 0%, rgba(52, 152, 219, 0.08) 100%);
  transform: rotate(15deg);
    z-index: 1;
}

.promo-offer-section::after {
    content: '';
    position: absolute;
  bottom: -50%;
    right: -10%;
  width: 40%;
    height: 200%;
  background: linear-gradient(-45deg, rgba(41, 128, 185, 0.05) 0%, rgba(52, 152, 219, 0.08) 100%);
    transform: rotate(15deg);
  z-index: 1;
}

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

.promo-badge {
  display: inline-block;
    background: linear-gradient(135deg, hsl(178, 54%, 32%) 0%, hsl(178, 54%, 42%) 100%);
  color: white;
    padding: 8px 24px;
  border-radius: 50px;
    font-weight: 700;
  font-size: 0.9rem;
    letter-spacing: 1px;
  text-transform: uppercase;
    margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(41, 128, 185, 0.3);
}

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

.promo-main-title .highlight {
    color: hsl(178, 54%, 32%);
  position: relative;
    display: inline-block;
}

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

.promo-card {
    background: white;
  border-radius: 20px;
    padding: 50px 40px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    margin-top: 40px;
  position: relative;
    overflow: hidden;
}

.promo-card::before {
    content: '';
  position: absolute;
    top: 0;
  left: 0;
    right: 0;
  height: 6px;
    background: linear-gradient(90deg, hsl(178, 54%, 32%) 0%, hsl(178, 54%, 57%) 100%);
}

.offer-deadline-block {
  background: linear-gradient(135deg, hsl(178, 54%, 17%) 0%, hsl(178, 54%, 27%) 100%);
    padding: 35px;
  border-radius: 15px;
    margin-bottom: 40px;
  text-align: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

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

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

.deadline-date i {
    font-size: 2.5rem;
  color: hsl(178, 54%, 57%);
}

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

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

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

.benefit-icon {
    flex-shrink: 0;
  width: 50px;
    height: 50px;
  background: linear-gradient(135deg, hsl(178, 54%, 32%) 0%, hsl(178, 54%, 42%) 100%);
    border-radius: 50%;
  display: flex;
    align-items: center;
  justify-content: center;
    color: white;
  font-size: 1.4rem;
}

.benefit-text {
    flex: 1;
}

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

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

.discount-banner {
    background: linear-gradient(135deg, hsl(178, 54%, 57%) 0%, hsl(178, 54%, 42%) 100%);
  padding: 30px;
    border-radius: 15px;
  text-align: center;
    margin-bottom: 40px;
  box-shadow: 0 6px 20px rgba(41, 128, 185, 0.3);
}

.discount-percentage {
    font-family: 'Poppins', sans-serif;
  font-size: 4rem;
    font-weight: 800;
  color: white;
    line-height: 1;
  margin-bottom: 10px;
}

.discount-text {
    color: white;
  font-size: 1.2rem;
    font-weight: 600;
  text-transform: uppercase;
    letter-spacing: 1px;
}

.promo-cta-button {
    display: inline-block;
  background: linear-gradient(135deg, hsl(178, 54%, 32%) 0%, hsl(178, 54%, 42%) 100%);
    color: white;
  padding: 18px 50px;
    font-size: 1.2rem;
  font-weight: 700;
    border: none;
  border-radius: 50px;
    text-decoration: none;
  text-transform: uppercase;
    letter-spacing: 1px;
  box-shadow: 0 8px 25px rgba(41, 128, 185, 0.4);
    transition: all 0.3s ease;
  cursor: pointer;
}

.promo-cta-button:hover {
    transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(41, 128, 185, 0.5);
    background: linear-gradient(135deg, hsl(178, 54%, 27%) 0%, hsl(178, 54%, 37%) 100%);
  color: white;
}

.promo-note {
    margin-top: 30px;
  text-align: center;
    color: #777;
  font-size: 0.9rem;
    font-style: italic;
}

@media (max-width: 768px) {
    .promo-main-title {
    font-size: 2.2rem;
  }
  
    .deadline-date {
    font-size: 2rem;
      flex-direction: column;
    gap: 10px;
  }
  
    .discount-percentage {
    font-size: 3rem;
  }
  
    .promo-benefits-grid {
    grid-template-columns: 1fr;
  }
  
    .promo-card {
    padding: 30px 20px;
  }
}

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

.newsletter-section {
  background: linear-gradient(135deg, hsl(178, 54%, 32%) 0%, hsl(178, 54%, 17%) 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%;
  z-index: 1;
}

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

.newsletter-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: 0 20px;
}

.newsletter-icon {
  width: 70px;
  height: 70px;
  background: hsl(178, 54%, 57%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.newsletter-icon svg {
  width: 35px;
  height: 35px;
  fill: #ffffff;
}

.newsletter-title {
  font-family: 'Poppins', sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 18px;
  line-height: 1.2;
}

.newsletter-subtitle {
  font-family: 'Nunito', sans-serif;
  font-size: 1.15rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 35px;
  line-height: 1.6;
  font-weight: 400;
}

.newsletter-form {
  display: flex;
  gap: 12px;
  max-width: 550px;
  margin: 0 auto 30px;
  flex-wrap: wrap;
}

.newsletter-input {
  flex: 1;
  min-width: 250px;
  padding: 16px 24px;
  border: 2px solid rgba(255,255,255,0.2);
  border-radius: 50px;
  background: rgba(255,255,255,0.1);
  color: #fff;
  font-family: 'Nunito', sans-serif;
  font-size: 1rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.newsletter-input::placeholder {
  color: rgba(255,255,255,0.6);
}

.newsletter-input:focus {
  outline: none;
  border-color: hsl(178, 54%, 57%);
  background: rgba(255,255,255,0.15);
  box-shadow: 0 0 0 4px rgba(138, 201, 194, 0.2);
}

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

.newsletter-btn:hover {
  background: hsl(178, 54%, 67%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

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

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

.benefit-check {
  width: 22px;
  height: 22px;
  background: hsl(178, 54%, 57%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.benefit-check svg {
  width: 12px;
  height: 12px;
  fill: #ffffff;
}

@media (max-width: 768px) {
  .newsletter-section {
    padding: 60px 0;
  }
  
  .newsletter-title {
    font-size: 2.2rem;
  }
  
  .newsletter-subtitle {
    font-size: 1.05rem;
  }
  
  .newsletter-form {
    flex-direction: column;
    gap: 15px;
  }
  
  .newsletter-input {
    min-width: 100%;
  }
  
  .newsletter-btn {
    width: 100%;
  }
  
  .newsletter-benefits {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .newsletter-title {
    font-size: 1.8rem;
  }
  
  .newsletter-icon {
    width: 60px;
    height: 60px;
  }
  
  .newsletter-icon svg {
    width: 30px;
    height: 30px;
  }
}

@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: #f8f9fa;
    padding: 80px 0;
    font-family: 'Nunito', sans-serif;
}

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

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

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

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

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.about-text {
    flex: 1;
}

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

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

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

.timeline-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2.2rem;
    color: #222;
    text-align: center;
    margin-bottom: 50px;
    font-weight: 600;
}

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

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

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

.timeline-item::before {
    content: '';
    position: absolute;
    left: -42px;
    top: 5px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: hsl(178, 54%, 32%);
    border: 4px solid white;
    box-shadow: 0 0 0 3px hsl(178, 54%, 57%);
}

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

.timeline-content h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 12px;
    font-weight: 600;
}

.timeline-content p {
    font-size: 1.02rem;
    color: #555;
    line-height: 1.7;
}

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

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

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

.value-icon {
    width: 60px;
    height: 60px;
    background: hsl(178, 54%, 57%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.8rem;
    color: white;
}

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

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

@media (max-width: 768px) {
    .about-content {
        flex-direction: column;
        gap: 35px;
    }
    
    .about-header h2 {
        font-size: 2.2rem;
    }
    
    .timeline {
        padding-left: 30px;
    }
    
    .timeline-section {
        padding: 40px 25px;
    }
}

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

.statistics-section {
  padding: 90px 0;
    background: linear-gradient(135deg, hsl(178, 54%, 17%) 0%, hsl(178, 54%, 32%) 100%);
  position: relative;
  overflow: hidden;
}

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

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

.statistics-section .section-title {
  font-family: 'Poppins', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
  color: #ffffff;
    margin-bottom: 18px;
  text-transform: uppercase;
    letter-spacing: 1px;
}

.statistics-section .section-subtitle {
    font-family: 'Nunito', sans-serif;
  font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.85);
  max-width: 680px;
    margin: 0 auto;
  line-height: 1.7;
}

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

.stat-circle:hover {
  transform: translateY(-8px) scale(1.05);
    background: rgba(255,255,255,0.12);
    border-color: hsl(178, 54%, 57%);
  box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.stat-circle i {
    font-size: 2.8rem;
  color: hsl(178, 54%, 57%);
    margin-bottom: 12px;
}

.stat-number {
  font-family: 'Poppins', sans-serif;
    font-size: 2rem;
  font-weight: 800;
    color: #fff;
  line-height: 1;
    margin-bottom: 5px;
}

.stat-label {
    font-family: 'Nunito', sans-serif;
  font-size: 0.95rem;
    color: rgba(255,255,255,0.8);
  text-align: center;
    font-weight: 600;
  margin-top: 8px;
}

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

@media (max-width: 768px) {
  .statistics-section {
        padding: 60px 0;
  }
  
    .statistics-section .section-title {
    font-size: 2rem;
  }
  
  .stat-circle {
        width: 150px;
    height: 150px;
  }
  
    .stat-number {
        font-size: 1.6rem;
    }
}

@media (min-width: 992px) {
    .stat-item:nth-child(4) {
        margin-top: 60px;
  }
  
  .stat-item:nth-child(5) {
    margin-top: 60px;
    }
  
    .stat-item:nth-child(6) {
    margin-top: 60px;
  }
  
  .stat-item:nth-child(7) {
        margin-top: 60px;
    }
}

@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;
    color: #222;
    font-weight: 700;
    margin-bottom: 15px;
}

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

.faq-card {
    background: white;
    border-radius: 12px;
    padding: 28px 32px;
    margin-bottom: 20px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border-left: 4px solid hsl(178, 54%, 32%);
}

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

.faq-question {
    font-family: 'Poppins', sans-serif;
    font-size: 1.25rem;
    color: #1a1a1a;
    font-weight: 600;
    margin-bottom: 16px;
    display: flex;
    align-items: flex-start;
}

.faq-question::before {
    content: "Q:";
    color: hsl(178, 54%, 32%);
    font-weight: 700;
    margin-right: 12px;
    font-size: 1.3rem;
}

.faq-answer {
    font-size: 1.05rem;
    color: #444;
    line-height: 1.7;
    padding-left: 35px;
}

.faq-answer::before {
    content: "A:";
    color: hsl(178, 54%, 57%);
    font-weight: 600;
    margin-right: 10px;
    font-size: 1.1rem;
    float: left;
    margin-left: -35px;
}

@media (max-width: 768px) {
    .faq-section {
        padding: 50px 0;
    }
    
    .faq-header h2 {
        font-size: 2.2rem;
    }
    
    .faq-card {
        padding: 22px 20px;
    }
    
    .faq-question {
        font-size: 1.1rem;
    }
    
    .faq-answer {
        font-size: 1rem;
        padding-left: 30px;
    }
}

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

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

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

#portfolio .section-title h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: hsl(178, 54%, 17%);
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

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

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

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

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

.portfolio-card:hover {
  transform: translateY(-10px);
box-shadow: 0 15px 40px rgba(31, 128, 117, 0.2);
}

.portfolio-card-header {
  background: linear-gradient(135deg, hsl(178, 54%, 32%) 0%, hsl(178, 54%, 42%) 100%);
padding: 40px 30px;
  position: relative;
overflow: hidden;
}

.portfolio-card-header::before {
  content: '';
position: absolute;
top: -50%;
  right: -50%;
  width: 200%;
height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
  transition: all 0.6s ease;
}

.portfolio-card:hover .portfolio-card-header::before {
top: -30%;
right: -30%;
}

.portfolio-card-header h3 {
  font-family: 'Poppins', sans-serif;
font-size: 1.5rem;
  font-weight: 600;
  color: #ffffff;
margin-bottom: 10px;
  position: relative;
z-index: 1;
}

.portfolio-category {
display: inline-block;
  padding: 6px 18px;
background: rgba(255,255,255,0.2);
  border-radius: 20px;
  font-size: 0.85rem;
color: #ffffff;
  font-weight: 600;
  letter-spacing: 0.5px;
position: relative;
  z-index: 1;
}

.portfolio-card-body {
padding: 30px;
}

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

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

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

.portfolio-tech {
font-size: 0.85rem;
  color: hsl(178, 54%, 32%);
font-weight: 600;
  background: hsl(178, 54%, 95%);
padding: 5px 12px;
  border-radius: 15px;
}

.modal-content {
  border-radius: 20px;
border: none;
  box-shadow: 0 10px 50px rgba(0,0,0,0.3);
}

.modal-header {
  background: linear-gradient(135deg, hsl(178, 54%, 32%) 0%, hsl(178, 54%, 42%) 100%);
  color: white;
border-radius: 20px 20px 0 0;
  padding: 25px 30px;
  border-bottom: none;
}

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

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

.modal-body {
padding: 40px;
  color: #333;
}

.modal-body h6 {
  font-family: 'Poppins', sans-serif;
font-size: 1.3rem;
  color: hsl(178, 54%, 17%);
margin-bottom: 15px;
  font-weight: 600;
}

.modal-body p {
  font-size: 1.05rem;
line-height: 1.8;
  color: #555;
margin-bottom: 20px;
}

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

.modal-details .detail-item {
  display: flex;
justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid #dee2e6;
}

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

.modal-details .detail-label {
font-weight: 700;
  color: hsl(178, 54%, 17%);
  font-family: 'Poppins', sans-serif;
}

.modal-details .detail-value {
  color: #666;
}

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

@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');

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

.video-section::before {
content: '';
position: absolute;
  top: 0;
left: 0;
right: 0;
height: 4px;
background: linear-gradient(90deg, hsl(178, 54%, 32%), hsl(178, 54%, 57%));
}

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

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

.video-description {
font-family: 'Nunito', sans-serif;
font-size: 1.1rem;
color: #444;
line-height: 1.8;
max-width: 850px;
margin: 0 auto 20px;
}

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

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

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

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

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

.video-overlay:hover {
background: linear-gradient(135deg, rgba(32, 107, 97, 0.75), rgba(32, 107, 97, 0.55));
}

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

.play-button {
font-size: 90px;
color: #fff;
transition: transform 0.3s ease;
filter: drop-shadow(0 10px 25px rgba(0,0,0,0.3));
}

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

.video-cta p {
font-family: 'Nunito', sans-serif;
  font-size: 1.15rem;
color: #333;
margin-bottom: 25px;
font-weight: 600;
}

.cta-button {
display: inline-block;
padding: 14px 40px;
background: hsl(178, 54%, 32%);
color: white;
font-family: 'Poppins', sans-serif;
font-weight: 600;
text-decoration: none;
border-radius: 8px;
transition: all 0.3s ease;
box-shadow: 0 4px 15px rgba(32, 107, 97, 0.3);
}

.cta-button:hover {
background: hsl(178, 54%, 27%);
transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(32, 107, 97, 0.4);
color: #fff;
}

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

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

.video-description {
font-size: 1rem;
padding: 0 20px;
}

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

  .video-cta p {
font-size: 1.05rem;
padding: 0 15px;
}
}

@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 {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  padding: 90px 0 100px;
  position: relative;
}

#testimonials::before {
content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, hsl(178, 54%, 57%), transparent);
}

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

.testimonials-header h2 {
font-family: 'Poppins', sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 18px;
}

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

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

.testimonial-card {
  background: white;
  border-radius: 16px;
  padding: 32px 28px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: all 0.35s ease;
  border: 1px solid rgba(178, 178, 178, 0.12);
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, hsl(178, 54%, 32%), hsl(178, 54%, 57%));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

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

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

.testimonial-card.large {
  grid-column: span 2;
}

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

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

.client-info p {
  font-family: 'Nunito', sans-serif;
  font-size: 0.92rem;
  color: #777;
  margin: 0;
}

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

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

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

.testimonial-text {
  font-family: 'Nunito', sans-serif;
  font-size: 1.02rem;
  line-height: 1.75;
  color: #444;
  margin-bottom: 22px;
  font-style: italic;
}

.testimonial-date {
  font-family: 'Nunito', sans-serif;
  font-size: 0.88rem;
  color: #999;
  text-align: right;
}

@media (max-width: 992px) {
  .testimonial-card.large {
    grid-column: span 1;
  }
  
  .testimonials-header h2 {
    font-size: 2.3rem;
  }
}

@media (max-width: 768px) {
  #testimonials {
    padding: 70px 0 80px;
  }
  
  .testimonials-header h2 {
    font-size: 2rem;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  
  .testimonial-card {
    padding: 26px 22px;
  }
}

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

#blog {
  padding: 80px 0;
background: #f8f9fa;
  font-family: 'Nunito', sans-serif;
}

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

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

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

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

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

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

.blog-category {
  display: inline-block;
  padding: 6px 14px;
  background: hsl(178, 54%, 32%);
  color: white;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
}

.blog-date {
color: #777;
  font-size: 0.9rem;
}

.blog-read-time {
  color: #777;
  font-size: 0.9rem;
}

.blog-card-title {
  font-family: 'Poppins', sans-serif;
font-size: 1.5rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 15px;
  line-height: 1.4;
}

.blog-card-text {
  color: #555;
  line-height: 1.7;
  margin-bottom: 20px;
  flex-grow: 1;
}

.blog-read-more {
  display: inline-flex;
  align-items: center;
  color: hsl(178, 54%, 32%);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  gap: 8px;
}

.blog-read-more:hover {
color: hsl(178, 54%, 57%);
  gap: 12px;
}

.blog-read-more::after {
  content: '→';
  font-size: 1.2rem;
}

.featured-card {
  margin-bottom: 30px;
}

.featured-card .blog-card-title {
  font-size: 2rem;
}

.featured-card .blog-card-body {
  padding: 40px;
}

.view-all-btn {
  display: inline-block;
  padding: 14px 35px;
  background: hsl(178, 54%, 32%);
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
  margin-top: 40px;
}

.view-all-btn:hover {
  background: hsl(178, 54%, 57%);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

@media (max-width: 768px) {
  #blog {
    padding: 60px 0;
  }
  
  #blog .section-title {
    font-size: 2rem;
  }
  
  .featured-card .blog-card-title {
    font-size: 1.6rem;
  }
  
  .blog-card-body {
    padding: 25px;
  }
  
  .featured-card .blog-card-body {
    padding: 30px;
  }
}

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

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

.disclaimer-container {
  max-width: 900px;
    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: 50px 45px;
  border-left: 5px solid hsl(178, 54%, 32%);
}

.disclaimer-icon {
  text-align: center;
    margin-bottom: 25px;
}

.disclaimer-icon i {
  font-size: 3.5rem;
  color: hsl(178, 54%, 32%);
    opacity: 0.9;
}

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

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

.disclaimer-content strong {
    color: #222;
  font-weight: 600;
}

@media (max-width: 768px) {
  .disclaimer-section {
      padding: 60px 0;
  }
  
  .disclaimer-card {
    padding: 35px 25px;
  }
  
    .disclaimer-title {
    font-size: 1.8rem;
  }
  
  .disclaimer-content {
      font-size: 0.98rem;
  }
}

@media (max-width: 576px) {
  .disclaimer-icon i {
      font-size: 2.8rem;
  }
  
  .disclaimer-title {
    font-size: 1.6rem;
      margin-bottom: 20px;
  }
}

.privacy-policy {
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        max-width: 1200px;
        margin: 0 auto;
        padding: 40px 20px;
        color: #2c3e50;
        line-height: 1.8;
        background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    }
    
    .privacy-header {
        text-align: center;
        margin-bottom: 50px;
        padding: 40px;
        background: white;
        border-radius: 15px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }
    
    .privacy-header h1 {
        color: #1a1a1a;
        font-size: 2.8em;
        margin-bottom: 15px;
        font-weight: 700;
    }
    
    .last-updated {
        color: #7f8c8d;
        font-size: 1em;
        font-style: italic;
    }
    
    .privacy-content {
        background: white;
        padding: 50px;
        border-radius: 15px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }
    
    .privacy-intro {
        background: #ecf0f1;
        padding: 25px;
        border-left: 5px solid #3498db;
        margin-bottom: 40px;
        border-radius: 5px;
    }
    
    .section-title {
        color: #2c3e50;
        font-size: 1.8em;
        margin-top: 45px;
        margin-bottom: 20px;
        padding-bottom: 12px;
        border-bottom: 3px solid #3498db;
        font-weight: 600;
    }
    
    .subsection-title {
        color: #34495e;
        font-size: 1.4em;
        margin-top: 30px;
        margin-bottom: 15px;
        font-weight: 600;
    }
    
    .info-box {
        background: #e8f4f8;
        border-left: 4px solid #3498db;
        padding: 20px;
        margin: 25px 0;
        border-radius: 5px;
    }
    
    .warning-box {
        background: #fff3cd;
        border-left: 4px solid #ffc107;
        padding: 20px;
        margin: 25px 0;
        border-radius: 5px;
    }
    
    .rights-list {
        list-style: none;
        padding: 0;
    }
    
    .rights-list li {
        padding: 15px;
        margin: 15px 0;
        background: #f8f9fa;
        border-left: 4px solid #27ae60;
        border-radius: 5px;
        transition: transform 0.2s;
    }
    
    .rights-list li:hover {
        transform: translateX(5px);
        box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    }
    
    .rights-list strong {
        color: #27ae60;
        font-size: 1.1em;
    }
    
    .data-category {
        background: #f8f9fa;
        padding: 15px;
        margin: 12px 0;
        border-radius: 5px;
        border-left: 3px solid #9b59b6;
    }
    
    .platform-disclosure {
        background: #fff;
        border: 2px solid #e74c3c;
        padding: 20px;
        margin: 20px 0;
        border-radius: 8px;
    }
    
    .platform-disclosure h4 {
        color: #e74c3c;
        margin-top: 0;
    }
    
    ul, ol {
        margin: 15px 0;
        padding-left: 30px;
    }
    
    li {
        margin: 10px 0;
    }
    
    .company-info {
        background: #2c3e50;
        color: white;
        padding: 30px;
        margin-top: 50px;
        border-radius: 10px;
        text-align: center;
    }
    
    .highlight {
        background: #fff3cd;
        padding: 2px 6px;
        border-radius: 3px;
        font-weight: 600;
    }

* {
    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.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;
    font-weight: 300;
    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-size: 1.1rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255,255,255,0.3);
  }
  
  .entity-banner {
    background: linear-gradient(135deg, hsl(178, 54%, 32%) 0%, hsl(178, 54%, 17%) 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: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
  }
  
  .entity-banner .company-type {
    font-size: 1.2rem;
    font-weight: 300;
    opacity: 0.9;
  }
  
  .info-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    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);
  }
  
  .card-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: hsl(178, 54%, 17%);
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 3px solid hsl(178, 54%, 57%);
  }
  
  .info-row {
    display: flex;
    padding: 15px 0;
    border-bottom: 1px solid #e8e8e8;
    align-items: center;
  }
  
  .info-row:last-child {
    border-bottom: none;
  }
  
  .info-label {
    flex: 0 0 40%;
    font-weight: 600;
    color: #2c3e50;
    font-size: 1rem;
  }
  
  .info-value {
    flex: 0 0 60%;
    color: #555;
    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 20px;
    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: 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;
    max-width: 900px;
    margin: 0 auto;
    opacity: 0.95;
  }
  
  @media (max-width: 768px) {
    .header-section h1 {
      font-size: 2rem;
    }
    
    .entity-banner h2 {
      font-size: 1.8rem;
    }
    
    .info-row {
      flex-direction: column;
      align-items: flex-start;
    }
    
    .info-label,
    .info-value {
      flex: 0 0 100%;
      width: 100%;
    }
    
    .info-label {
      margin-bottom: 8px;
    }
    
    .card-title {
      font-size: 1.5rem;
    }
  }

.terms-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    font-family: 'Georgia', serif;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  }

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

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

  .terms-header .update-date {
    color: #5a6c7d;
    font-size: 1.1em;
    font-style: italic;
  }

  .terms-content {
    background: white;
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
  }

  .terms-section {
    margin-bottom: 40px;
    padding: 30px;
    background: #f8f9fa;
    border-left: 5px solid #3498db;
    border-radius: 8px;
    transition: transform 0.3s ease;
  }

  .terms-section:hover {
    transform: translateX(10px);
    box-shadow: -5px 5px 15px rgba(0,0,0,0.1);
  }

  .terms-section h2 {
    color: #2c3e50;
    font-size: 1.9em;
    margin-bottom: 20px;
    font-weight: 600;
    display: flex;
    align-items: center;
  }

  .terms-section h2::before {
    content: "§";
    display: inline-block;
    margin-right: 15px;
    color: #3498db;
    font-size: 1.3em;
    font-weight: bold;
  }

  .terms-section p {
    color: #34495e;
    line-height: 1.9;
    margin-bottom: 15px;
    font-size: 1.05em;
    text-align: justify;
  }

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

  .terms-section ul li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    color: #2c3e50;
    line-height: 1.7;
    font-size: 1.02em;
  }

  .terms-section ul li::before {
    content: "▸";
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: bold;
    font-size: 1.3em;
  }

  .important-notice {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 30px;
    border-radius: 10px;
    margin: 40px 0;
    box-shadow: 0 5px 20px rgba(102,126,234,0.4);
  }

  .important-notice h3 {
    font-size: 1.5em;
    margin-bottom: 15px;
    font-weight: 600;
  }

  .acceptance-box {
    background: #ecf0f1;
    border: 2px dashed #3498db;
    padding: 25px;
    border-radius: 8px;
    margin-top: 40px;
    text-align: center;
  }

  .acceptance-box p {
    color: #2c3e50;
    font-size: 1.1em;
    font-weight: 500;
    margin: 0;
  }

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

    .terms-content {
      padding: 25px;
    }

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

    .terms-section {
      padding: 20px;
    }

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