:root {
--primary-color: hsl(136, 35%, 40%);
  --secondary-color: hsl(136, 35%, 25%);
--accent-color: hsl(136, 35%, 65%);
}

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

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

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

.navbar {
background-color: #ffffff;
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: 'Lato', sans-serif;
font-weight: 900;
  color: hsl(136, 35%, 40%);
font-size: 1.5rem;
}

.navbar-brand:hover {
color: hsl(136, 35%, 25%);
}

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

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

.navbar-nav .nav-link {
color: #333333;
font-family: 'Lato', sans-serif;
  font-weight: 500;
padding: 0.5rem 1rem;
  transition: color 0.3s;
font-size: 1.05rem;
}

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

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

.navbar-toggler:focus {
box-shadow: none;
outline: 2px solid var(--primary-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(52, 102, 66, 1)' 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;
  }
  
.navbar-nav .nav-link {
padding: 0.75rem 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%);
        line-height: 1.8;
        color: #2c3e50;
    }

    .cookies-policy h1 {
        font-size: 3em;
        color: #27ae60;
        text-align: center;
        margin-bottom: 20px;
        text-transform: uppercase;
        letter-spacing: 2px;
        text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
    }

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

    .intro-section {
        background: white;
        padding: 40px;
        border-radius: 15px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        margin-bottom: 40px;
        border-left: 5px solid #27ae60;
    }

    .intro-section p {
        font-size: 1.15em;
        color: #34495e;
        margin-bottom: 20px;
    }

    .policy-section {
        background: white;
        padding: 40px;
        margin-bottom: 30px;
        border-radius: 15px;
        box-shadow: 0 8px 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 15px 40px rgba(0,0,0,0.15);
    }

    .policy-section h2 {
        color: #27ae60;
        font-size: 2em;
        margin-bottom: 25px;
        padding-bottom: 15px;
        border-bottom: 3px solid #ecf0f1;
        display: flex;
        align-items: center;
    }

    .policy-section h2::before {
        content: "🍪";
        margin-right: 15px;
        font-size: 1.2em;
    }

    .policy-section h3 {
        color: #2980b9;
        font-size: 1.5em;
        margin-top: 30px;
        margin-bottom: 15px;
    }

    .cookie-type {
        background: #ecf9f2;
        padding: 25px;
        margin: 20px 0;
        border-radius: 10px;
        border-left: 4px solid #27ae60;
    }

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

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

    .cookie-type ul li {
        padding: 10px 0;
        padding-left: 30px;
        position: relative;
    }

    .cookie-type ul li::before {
        content: "✓";
        position: absolute;
        left: 0;
        color: #27ae60;
        font-weight: bold;
        font-size: 1.2em;
    }

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

    .consent-box h3 {
        color: white;
        font-size: 1.8em;
        margin-bottom: 20px;
    }

    .consent-box p {
        font-size: 1.1em;
        line-height: 1.8;
    }

    .info-box {
        background: #fff9e6;
        border: 2px solid #f39c12;
        padding: 25px;
        border-radius: 10px;
        margin: 25px 0;
    }

    .info-box strong {
        color: #e67e22;
        font-size: 1.2em;
    }

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

    .control-card {
        background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
        color: white;
        padding: 30px;
        border-radius: 12px;
        box-shadow: 0 8px 20px rgba(240, 147, 251, 0.3);
    }

    .control-card h4 {
        font-size: 1.4em;
        margin-bottom: 15px;
        color: white;
    }

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

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

    .cookies-table th {
        background: #27ae60;
        color: white;
        padding: 18px;
        text-align: left;
        font-weight: 600;
        font-size: 1.1em;
    }

    .cookies-table td {
        padding: 18px;
        border-bottom: 1px solid #ecf0f1;
    }

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

    .highlight-section {
        background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
        padding: 40px;
        border-radius: 15px;
        margin: 40px 0;
        color: #2c3e50;
        box-shadow: 0 10px 30px rgba(250, 112, 154, 0.3);
    }

    .highlight-section h3 {
        color: #c0392b;
        font-size: 1.8em;
        margin-bottom: 20px;
    }

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

    ul.styled-list li {
        padding: 12px 0;
        padding-left: 35px;
        position: relative;
        font-size: 1.05em;
    }

    ul.styled-list li::before {
        content: "🔹";
        position: absolute;
        left: 0;
        font-size: 1.2em;
    }

    .gdpr-compliance {
        background: #e8f5e9;
        border: 3px solid #4caf50;
        padding: 35px;
        border-radius: 15px;
        margin: 40px 0;
    }

    .gdpr-compliance h3 {
        color: #2e7d32;
        font-size: 1.8em;
        margin-bottom: 20px;
    }

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

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

        .policy-section {
            padding: 25px;
        }

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

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

footer {
  background: hsl(136, 35%, 25%);
  color: #f8f9fa;
  padding: 60px 0 20px;
  font-family: 'Merriweather', serif;
  margin-top: 80px;
}

footer h4 {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  color: hsl(136, 35%, 65%);
  margin-bottom: 25px;
  font-size: 1.4rem;
}

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

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

footer a:hover {
  color: hsl(136, 35%, 65%);
}

footer ul {
  list-style: none;
  padding-left: 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;
}

.footer-contact-info i {
  margin-right: 10px;
  color: hsl(136, 35%, 65%);
}

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

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

#cookieNotice .container {
  max-width: 1200px;
}

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

#cookieNotice p {
  color: #444;
  font-family: 'Merriweather', serif;
  line-height: 1.6;
  margin-bottom: 20px;
  font-size: 0.95rem;
}

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

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

.cookie-category strong {
  color: #222;
  font-weight: 600;
}

.cookie-category.required {
  color: hsl(136, 35%, 40%);
}

.btn-accept-all {
  background: hsl(136, 35%, 40%);
  color: white;
  border: none;
  padding: 12px 30px;
  font-family: 'Lato', sans-serif;
  font-weight: 600;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-right: 10px;
  font-size: 1rem;
}

.btn-accept-all:hover {
  background: hsl(136, 35%, 35%);
  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;
  font-family: 'Lato', sans-serif;
  font-weight: 600;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-right: 10px;
  font-size: 1rem;
}

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

.btn-manage {
  color: hsl(136, 35%, 40%);
  font-family: 'Lato', sans-serif;
  font-weight: 600;
  text-decoration: underline;
  padding: 12px 20px;
  display: inline-block;
  transition: color 0.3s ease;
}

.btn-manage:hover {
  color: hsl(136, 35%, 30%);
}

@media (max-width: 768px) {
  footer {
    padding: 40px 0 20px;
  }
  
  #cookieNotice {
    padding: 20px 0;
  }
  
  .btn-accept-all, .btn-reject {
    display: block;
    width: 100%;
    margin-bottom: 10px;
    margin-right: 0;
  }
  
  .btn-manage {
    display: block;
    text-align: center;
    margin-top: 10px;
  }
}

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

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

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

.hero-grid {
display: grid;
grid-template-columns: 1fr 1fr;
grid-template-rows: auto auto auto;
gap: 35px 40px;
align-items: center;
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
}

.hero-title {
grid-column: 1;
grid-row: 1;
font-family: 'Lato', sans-serif;
font-size: 3.2rem;
font-weight: 900;
color: hsl(136, 35%, 25%);
line-height: 1.2;
margin: 0;
text-transform: uppercase;
letter-spacing: -1px;
}

.hero-title span {
color: hsl(136, 35%, 40%);
display: block;
font-size: 2.8rem;
margin-top: 8px;
}

.hero-image-wrapper {
grid-column: 2;
grid-row: 1 / 3;
position: relative;
border-radius: 12px;
overflow: hidden;
box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.hero-image-wrapper img {
width: 100%;
height: auto;
display: block;
transition: transform 0.6s ease;
}

.hero-image-wrapper:hover img {
transform: scale(1.05);
}

.hero-content {
grid-column: 1;
grid-row: 2 / 4;
}

.hero-subtitle {
font-family: 'Lato', sans-serif;
font-size: 1.5rem;
color: hsl(136, 35%, 40%);
margin-bottom: 25px;
font-weight: 400;
}

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

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

.hero-benefits li {
font-family: 'Merriweather', serif;
font-size: 1rem;
color: #222;
padding: 12px 0 12px 35px;
position: relative;
line-height: 1.6;
}

.hero-benefits li:before {
content: "\f26b";
font-family: 'bootstrap-icons';
position: absolute;
left: 0;
color: hsl(136, 35%, 40%);
font-size: 1.3rem;
}

.hero-cta {
grid-column: 2;
grid-row: 3;
display: flex;
gap: 15px;
justify-content: flex-end;
align-items: center;
}

.btn-primary-hero {
background: hsl(136, 35%, 40%);
color: white;
padding: 16px 40px;
border: none;
border-radius: 8px;
font-family: 'Lato', sans-serif;
font-size: 1.1rem;
font-weight: 700;
text-decoration: none;
display: inline-block;
transition: all 0.3s ease;
box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.btn-primary-hero:hover {
background: hsl(136, 35%, 25%);
transform: translateY(-2px);
box-shadow: 0 6px 20px rgba(0,0,0,0.25);
color: #fff;
}

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

.btn-secondary-hero:hover {
background: hsl(136, 35%, 40%);
color: white;
transform: translateY(-2px);
}

@media (max-width: 992px) {
.hero-grid {
grid-template-columns: 1fr;
grid-template-rows: auto;
gap: 30px;
}

.hero-title {
grid-column: 1;
grid-row: 1;
font-size: 2.5rem;
text-align: center;
}

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

.hero-image-wrapper {
grid-column: 1;
grid-row: 2;
}

.hero-content {
grid-column: 1;
grid-row: 3;
}

.hero-subtitle {
text-align: center;
}

.hero-cta {
grid-column: 1;
grid-row: 4;
justify-content: center;
flex-wrap: wrap;
}
}

@media (max-width: 576px) {
.hero-section {
padding: 50px 0 40px;
}

.hero-title {
font-size: 2rem;
}

.hero-title span {
font-size: 1.8rem;
}

.hero-subtitle {
font-size: 1.2rem;
}

.hero-description {
font-size: 0.95rem;
}

.btn-primary-hero,
.btn-secondary-hero {
padding: 14px 30px;
font-size: 1rem;
width: 100%;
text-align: center;
}
}

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

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

.video-section .section-title {
font-family: 'Lato', sans-serif;
  font-weight: 700;
    font-size: 2.8rem;
  color: hsl(136, 35%, 25%);
margin-bottom: 1.5rem;
    text-align: center;
}

.video-section .section-description {
    font-size: 1.1rem;
  line-height: 1.8;
    color: #333;
  max-width: 850px;
    margin: 0 auto 3rem;
text-align: center;
  padding: 0 20px;
}

.video-wrapper {
    position: relative;
  padding-bottom: 56.25%;
height: 0;
    overflow: hidden;
  max-width: 900px;
margin: 0 auto;
    border-radius: 12px;
box-shadow: 0 10px 40px rgba(0,0,0,0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-wrapper:hover {
transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0,0,0,0.2);
}

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

.video-overlay {
position: absolute;
    top: 0;
left: 0;
    width: 100%;
  height: 100%;
    background: linear-gradient(135deg, rgba(52, 94, 68, 0.85) 0%, rgba(34, 62, 45, 0.9) 100%);
display: flex;
    align-items: center;
  justify-content: center;
    cursor: pointer;
z-index: 10;
  transition: opacity 0.4s ease;
border-radius: 12px;
}

.video-overlay:hover {
    opacity: 0.95;
}

.video-overlay.hidden {
opacity: 0;
    pointer-events: none;
}

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

.video-overlay:hover .play-button {
  font-size: 5.5rem;
    transform: scale(1.1);
}

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

.video-cta h3 {
font-family: 'Lato', sans-serif;
    font-weight: 600;
  font-size: 1.6rem;
    color: hsl(136, 35%, 30%);
margin-bottom: 1rem;
}

.video-cta p {
    font-size: 1.05rem;
  color: #444;
    line-height: 1.7;
max-width: 700px;
  margin: 0 auto 1.8rem;
}

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

.cta-button:hover {
    background: hsl(136, 35%, 35%);
transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(52, 94, 68, 0.4);
  color: #fff;
    text-decoration: none;
}

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

  .video-section .section-title {
font-size: 2.2rem;
  }

.video-section .section-description {
    font-size: 1rem;
}

  .play-button {
    font-size: 4rem;
}

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

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

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

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

#blog .section-header h2 {
  font-family: 'Lato', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 15px;
}

#blog .section-header p {
  font-size: 1.1rem;
  color: rgb(102, 102, 102);
  max-width: 700px;
  margin: 0 auto;
}

.blog-list {
  max-width: 900px;
  margin: 0 auto;
}

.blog-item {
  background: white;
  border-radius: 8px;
  padding: 30px;
  margin-bottom: 25px;
  display: flex;
  gap: 25px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.blog-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.blog-icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background: hsl(136, 35%, 40%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #fff;
}

.blog-content {
  flex: 1;
}

.blog-meta {
  display: flex;
  gap: 20px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.blog-category {
  display: inline-block;
  background: hsl(136, 35%, 65%);
  color: #222;
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 600;
  font-family: 'Lato', sans-serif;
}

.blog-date, .blog-read-time {
  color: #666;
  font-size: 0.9rem;
}

.blog-item h3 {
  font-family: 'Lato', sans-serif;
  font-size: 1.5rem;
  color: hsl(136, 35%, 25%);
  margin-bottom: 12px;
  font-weight: 700;
}

.blog-item h3 a {
  color: hsl(136, 35%, 25%);
  text-decoration: none;
  transition: color 0.3s;
}

.blog-item h3 a:hover {
  color: hsl(136, 35%, 40%);
}

.blog-excerpt {
  color: #444;
  line-height: 1.7;
  margin-bottom: 15px;
  font-size: 0.95rem;
}

.blog-read-more {
  color: hsl(136, 35%, 40%);
  text-decoration: none;
  font-weight: 600;
  font-family: 'Lato', sans-serif;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: gap 0.3s;
}

.blog-read-more:hover {
  gap: 10px;
  color: hsl(136, 35%, 25%);
}

.blog-cta {
  text-align: center;
  margin-top: 50px;
}

.blog-cta .btn {
  background: hsl(136, 35%, 40%);
  color: white;
  padding: 14px 40px;
  border-radius: 6px;
  text-decoration: none;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  display: inline-block;
  transition: all 0.3s;
  border: 2px solid hsl(136, 35%, 40%);
}

.blog-cta .btn:hover {
  background: hsl(136, 35%, 25%);
  border-color: hsl(136, 35%, 25%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

@media (max-width: 768px) {
  #blog {
    padding: 60px 0;
  }
  
  #blog .section-header h2 {
    font-size: 2rem;
  }
  
  .blog-item {
    flex-direction: column;
    padding: 25px;
  }
  
  .blog-icon {
    width: 50px;
    height: 50px;
    font-size: 1.3rem;
  }
  
  .blog-meta {
    gap: 15px;
  }
  
  .blog-item h3 {
    font-size: 1.3rem;
  }
}

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

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

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

.statistics-header h2 {
  font-family: 'Lato', sans-serif;
  font-size: 2.8rem;
  font-weight: 900;
  color: #222;
  margin-bottom: 15px;
}

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

.stats-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 35px;
  padding: 0 20px;
}

.stat-item {
  background: white;
  border-radius: 12px;
  padding: 35px 25px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  min-width: 180px;
  flex: 1;
  max-width: 220px;
}

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

.stat-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, hsl(136, 35%, 40%) 0%, hsl(136, 35%, 25%) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: #fff;
}

.stat-number {
  font-family: 'Lato', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: hsl(136, 35%, 40%);
  margin-bottom: 8px;
  line-height: 1.2;
}

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

@media (max-width: 992px) {
  .statistics-header h2 {
    font-size: 2.3rem;
  }
  
  .stat-item {
    min-width: 160px;
    max-width: 200px;
  }
}

@media (max-width: 768px) {
  #statistics {
    padding: 60px 0;
  }
  
  .statistics-header h2 {
    font-size: 2rem;
  }
  
  .statistics-header p {
    font-size: 1rem;
  }
  
  .stats-container {
    gap: 25px;
  }
  
  .stat-item {
    min-width: 140px;
    max-width: 180px;
    padding: 28px 18px;
  }
  
  .stat-icon {
    width: 60px;
    height: 60px;
    font-size: 28px;
  }
  
  .stat-number {
    font-size: 2rem;
  }
}

@media (max-width: 576px) {
  .stat-item {
    flex: 1 1 calc(50% - 25px);
    min-width: unset;
  }
}

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

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

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

.advantages-section .section-title {
  font-family: 'Lato', sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: hsl(136, 35%, 25%);
  margin-bottom: 15px;
}

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

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

.advantage-item.reverse {
  flex-direction: row-reverse;
}

.advantage-icon-wrapper {
  flex-shrink: 0;
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, hsl(136, 35%, 40%) 0%, hsl(136, 35%, 50%) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(0,0,0,0.12);
  transition: all 0.4s ease;
}

.advantage-item:hover .advantage-icon-wrapper {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 12px 35px rgba(0,0,0,0.18);
}

.advantage-icon-wrapper i {
  font-size: 3rem;
  color: white;
}

.advantage-content {
  flex: 1;
  background: white;
  padding: 35px 40px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  border-left: 4px solid hsl(136, 35%, 65%);
}

.advantage-item.reverse .advantage-content {
  border-left: none;
  border-right: 4px solid hsl(136, 35%, 65%);
}

.advantage-item:hover .advantage-content {
  box-shadow: 0 10px 35px rgba(0,0,0,0.15);
  transform: translateY(-5px);
}

.advantage-content h3 {
  font-family: 'Lato', sans-serif;
  font-size: 1.7rem;
  font-weight: 700;
  color: hsl(136, 35%, 25%);
  margin-bottom: 18px;
}

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

@media (max-width: 992px) {
  .advantage-item,
  .advantage-item.reverse {
    flex-direction: column;
    text-align: center;
  }
  
  .advantage-item.reverse .advantage-content {
    border-right: none;
    border-left: 4px solid hsl(136, 35%, 65%);
  }
  
  .advantage-icon-wrapper {
    width: 100px;
    height: 100px;
  }
  
  .advantage-icon-wrapper i {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .advantages-section {
    padding: 60px 0;
  }
  
  .advantages-section .section-title {
    font-size: 2.2rem;
  }
  
  .advantage-content {
    padding: 25px 30px;
  }
  
  .advantage-content h3 {
    font-size: 1.4rem;
  }
}

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

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

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

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

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

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

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

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

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

.about-text {
    flex: 1;
    text-align: center;
}

.about-text h3 {
    font-family: 'Lato', sans-serif;
    font-size: 2rem;
    color: hsl(136, 35%, 40%);
    margin-bottom: 25px;
    font-weight: 700;
}

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

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

.mission-box {
    background: hsl(136, 35%, 95%);
    padding: 45px 35px;
    border-radius: 10px;
    margin-top: 50px;
    text-align: center;
}

.mission-box h3 {
    font-family: 'Lato', sans-serif;
    font-size: 2.2rem;
    color: hsl(136, 35%, 25%);
    margin-bottom: 30px;
    font-weight: 700;
}

.mission-box p {
    font-size: 1.08rem;
    color: #333;
    line-height: 1.85;
    max-width: 900px;
    margin: 0 auto 20px;
}

@media (max-width: 992px) {
    .about-content {
        flex-direction: column;
    }
    
    .about-content.reverse {
        flex-direction: column;
    }
    
    .about-image {
        flex: 0 0 100%;
        max-width: 500px;
    }
    
    .about-header h2 {
        font-size: 2.3rem;
    }
    
    .about-text h3 {
        font-size: 1.7rem;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 50px 0;
    }
    
    .about-header h2 {
        font-size: 2rem;
    }
    
    .about-header p {
        font-size: 1rem;
    }
    
    .about-text h3 {
        font-size: 1.5rem;
    }
    
    .about-text p {
        font-size: 0.98rem;
    }
    
    .mission-box {
        padding: 30px 20px;
    }
    
    .mission-box h3 {
        font-size: 1.8rem;
    }
}

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

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

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

.faq-header h2 {
    font-family: 'Lato', sans-serif;
    font-size: 2.8rem;
    font-weight: 900;
    color: hsl(136, 35%, 25%);
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

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

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

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

.faq-question {
    font-family: 'Lato', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: hsl(136, 35%, 40%);
    margin-bottom: 15px;
    display: flex;
    align-items: start;
}

.faq-question::before {
    content: "Q";
    display: inline-block;
    width: 35px;
    height: 35px;
    background: hsl(136, 35%, 40%);
    color: #fff;
    border-radius: 50%;
    text-align: center;
    line-height: 35px;
    margin-right: 15px;
    flex-shrink: 0;
    font-weight: 900;
}

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

.faq-answer strong {
    color: hsl(136, 35%, 25%);
    font-weight: 700;
}

@media (max-width: 768px) {
    .faq-section {
        padding: 50px 0;
    }
    
    .faq-header h2 {
        font-size: 2.2rem;
    }
    
    .faq-card {
        padding: 20px;
        margin-bottom: 20px;
    }
    
    .faq-question {
        font-size: 1.15rem;
    }
    
    .faq-answer {
        font-size: 0.95rem;
        padding-left: 0;
        margin-top: 10px;
    }
    
    .faq-question::before {
        width: 30px;
        height: 30px;
        line-height: 30px;
        margin-right: 12px;
    }
}

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

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

.portfolio-section .section-title {
font-family: 'Lato', sans-serif;
  font-size: 2.5rem;
    font-weight: 700;
  color: hsl(136, 35%, 25%);
  margin-bottom: 15px;
    text-align: center;
}

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

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

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

.portfolio-card-header {
  background: linear-gradient(135deg, hsl(136, 35%, 40%) 0%, hsl(136, 35%, 50%) 100%);
padding: 40px 25px;
    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%);
    transform: rotate(45deg);
}

.portfolio-card-category {
  font-family: 'Lato', sans-serif;
    font-size: 0.85rem;
  text-transform: uppercase;
    letter-spacing: 1.5px;
  color: rgba(255,255,255,0.9);
    margin-bottom: 10px;
  font-weight: 600;
}

.portfolio-card-title {
font-family: 'Lato', sans-serif;
    font-size: 1.6rem;
  font-weight: 700;
    color: #fff;
  margin: 0;
}

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

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

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

.portfolio-card-date {
  font-size: 0.9rem;
color: #777;
    font-style: italic;
}

.portfolio-card-tech {
font-size: 0.85rem;
    color: hsl(136, 35%, 40%);
  font-weight: 600;
}

.modal-header {
  background: linear-gradient(135deg, hsl(136, 35%, 40%) 0%, hsl(136, 35%, 50%) 100%);
    color: white;
  border: none;
}

.modal-title {
font-family: 'Lato', sans-serif;
    font-weight: 700;
}

.modal-body {
  padding: 35px;
}

.modal-body h5 {
font-family: 'Lato', sans-serif;
    color: hsl(136, 35%, 25%);
  margin-top: 25px;
    margin-bottom: 15px;
  font-weight: 700;
}

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

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

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

.modal-body ul li::before {
content: '✓';
    position: absolute;
  left: 0;
    color: hsl(136, 35%, 40%);
  font-weight: bold;
}

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

@media (max-width: 768px) {
.portfolio-section {
    padding: 60px 0;
}
    
  .portfolio-section .section-title {
font-size: 2rem;
  }
    
  .portfolio-card-title {
    font-size: 1.4rem;
}
}

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

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

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

.services-section .section-title {
font-family: 'Lato', sans-serif;
font-size: 2.8rem;
font-weight: 700;
color: hsl(136, 35%, 25%);
margin-bottom: 18px;
letter-spacing: -0.5px;
}

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

.service-card {
background: white;
border-radius: 12px;
padding: 35px 28px;
height: 100%;
transition: all 0.35s ease;
border: 1px solid #e9ecef;
box-shadow: 0 2px 8px rgba(0,0,0,0.04);
display: flex;
flex-direction: column;
}

.service-card:hover {
transform: translateY(-8px);
box-shadow: 0 12px 35px rgba(62, 107, 79, 0.15);
border-color: hsl(136, 35%, 65%);
}

.service-icon {
width: 70px;
height: 70px;
background: linear-gradient(135deg, hsl(136, 35%, 40%) 0%, hsl(136, 35%, 50%) 100%);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
margin-bottom: 24px;
transition: all 0.3s ease;
}

.service-card:hover .service-icon {
background: linear-gradient(135deg, hsl(136, 35%, 25%) 0%, hsl(136, 35%, 40%) 100%);
transform: rotate(360deg);
}

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

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

.service-description {
font-size: 0.98rem;
color: #666;
line-height: 1.75;
margin-bottom: 22px;
flex-grow: 1;
}

.service-price {
font-family: 'Lato', sans-serif;
font-size: 1.8rem;
font-weight: 900;
color: hsl(136, 35%, 40%);
margin-bottom: 8px;
}

.service-price-note {
font-size: 0.88rem;
color: #888;
font-style: italic;
}

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

.services-section .section-title {
font-size: 2.2rem;
}

.service-card {
padding: 30px 24px;
margin-bottom: 25px;
}
}

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

.service-icon {
width: 60px;
height: 60px;
}

.service-icon i {
font-size: 28px;
}
}

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

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

.contact-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: hsl(136, 35%, 65%);
  opacity: 0.08;
  border-radius: 50%;
  z-index: 0;
}

.contact-section::after {
content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: hsl(136, 35%, 40%);
  opacity: 0.05;
  border-radius: 50%;
  z-index: 0;
}

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

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

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

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

.contact-content {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.contact-info {
  flex: 1;
  min-width: 280px;
}

.contact-form-wrapper {
flex: 1.5;
  min-width: 320px;
  background: white;
  padding: 45px 40px;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

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

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

.info-card h3 {
  font-family: 'Lato', sans-serif;
  font-size: 1.4rem;
  color: hsl(136, 35%, 40%);
  margin-bottom: 15px;
  font-weight: 600;
}

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

.info-card .icon {
  display: inline-block;
  width: 45px;
  height: 45px;
  background: hsl(136, 35%, 65%);
  border-radius: 50%;
  text-align: center;
  line-height: 45px;
  color: white;
  font-size: 1.3rem;
  margin-bottom: 15px;
}

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

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

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

.form-control {
  width: 100%;
  padding: 13px 16px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-family: 'Merriweather', serif;
  font-size: 0.95rem;
  color: #333;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  background: #fafafa;
}

.form-control:focus {
  outline: none;
  border-color: hsl(136, 35%, 40%);
  box-shadow: 0 0 0 3px rgba(74, 138, 93, 0.1);
  background: white;
}

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

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

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

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

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

.form-check-label a {
  color: hsl(136, 35%, 40%);
  text-decoration: underline;
}

.form-check-label a:hover {
  color: hsl(136, 35%, 25%);
}

.submit-btn {
  background: hsl(136, 35%, 40%);
  color: white;
  border: none;
  padding: 15px 50px;
  font-family: 'Lato', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.submit-btn:hover {
  background: hsl(136, 35%, 25%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(74, 138, 93, 0.3);
}

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

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

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

.gdpr-notice a {
  color: hsl(136, 35%, 40%);
  text-decoration: underline;
}

.gdpr-notice a:hover {
  color: hsl(136, 35%, 25%);
}

.process-info {
  background: linear-gradient(135deg, hsl(136, 35%, 40%) 0%, hsl(136, 35%, 25%) 100%);
  color: white;
  padding: 35px;
  border-radius: 10px;
  margin-top: 25px;
}

.process-info h4 {
  font-family: 'Lato', sans-serif;
  font-size: 1.3rem;
  margin-bottom: 18px;
  font-weight: 600;
}

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

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

.process-info ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: hsl(136, 35%, 65%);
  font-weight: bold;
  font-size: 1.2rem;
}

@media (max-width: 991px) {
  .contact-content {
    flex-direction: column;
  }
  
  .contact-form-wrapper {
    order: -1;
  }
}

@media (max-width: 768px) {
  .contact-section {
    padding: 60px 0;
  }
  
  .section-header h2 {
    font-size: 2.2rem;
  }
  
  .contact-form-wrapper {
    padding: 30px 25px;
  }
  
  .submit-btn {
    padding: 13px 40px;
  }
}

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

.newsletter-section {
  background: linear-gradient(135deg, hsl(136, 35%, 40%) 0%, hsl(136, 35%, 25%) 100%);
  padding: 80px 20px;
  font-family: 'Merriweather', serif;
}

.newsletter-container {
  max-width: 920px;
  margin: 0 auto;
  background: white;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
  overflow: hidden;
}

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

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

.newsletter-info h2 {
  font-family: 'Lato', sans-serif;
  font-size: 2.2em;
  font-weight: 900;
  color: #222;
  margin-bottom: 20px;
  line-height: 1.2;
}

.newsletter-info p {
  color: #444;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 18px;
}

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

.benefits-list li {
  color: #333;
  padding: 10px 0;
  padding-left: 30px;
  position: relative;
  font-size: 15px;
}

.benefits-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: hsl(136, 35%, 40%);
  font-weight: bold;
  font-size: 20px;
}

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

.newsletter-form-wrapper h3 {
  font-family: 'Lato', sans-serif;
  font-size: 1.6em;
  color: #222;
  margin-bottom: 15px;
  font-weight: 700;
}

.newsletter-form-wrapper .subtitle {
  color: #555;
  font-size: 14px;
  margin-bottom: 30px;
  line-height: 1.6;
}

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

.form-group {
  display: flex;
  flex-direction: column;
}

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

.form-group input[type="email"] {
  padding: 14px 18px;
  border: 2px solid #ddd;
  border-radius: 8px;
  font-size: 15px;
  font-family: 'Merriweather', serif;
  transition: all 0.3s ease;
  color: #333;
}

.form-group input[type="email"]:focus {
  outline: none;
  border-color: hsl(136, 35%, 40%);
  box-shadow: 0 0 0 3px rgba(76, 137, 91, 0.1);
}

.subscribe-btn {
  background: hsl(136, 35%, 40%);
  color: white;
  padding: 16px 32px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 700;
  font-family: 'Lato', sans-serif;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.subscribe-btn:hover {
  background: hsl(136, 35%, 25%);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(76, 137, 91, 0.3);
}

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

.privacy-note {
  font-size: 12px;
  color: #666;
  margin-top: 15px;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .newsletter-section {
    padding: 50px 15px;
  }
  
  .newsletter-content {
    grid-template-columns: 1fr;
  }
  
  .newsletter-info {
    padding: 40px 30px;
  }
  
  .newsletter-form-wrapper {
    padding: 40px 30px;
  }
  
  .newsletter-info h2 {
    font-size: 1.8em;
  }
}

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

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

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

#testimonials .section-title {
font-family: 'Lato', sans-serif;
  font-size: 2.8rem;
  font-weight: 900;
  color: hsl(136, 35%, 25%);
  margin-bottom: 15px;
}

#testimonials .section-subtitle {
  font-size: 1.1rem;
  color: #666;
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.7;
}

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

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

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

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

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

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

.client-info p {
  font-size: 0.9rem;
  color: #777;
  margin: 0;
}

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

.rating i {
  color: hsl(136, 35%, 40%);
  font-size: 16px;
}

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

.testimonial-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 15px;
  border-top: 1px solid #f0f0f0;
}

.testimonial-date {
  font-size: 0.85rem;
  color: #999;
  font-style: italic;
}

.verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.8rem;
  color: hsl(136, 35%, 40%);
  font-weight: 600;
}

.verified-badge i {
  font-size: 14px;
}

@media (max-width: 768px) {
  #testimonials {
    padding: 60px 0;
  }
  
  #testimonials .section-title {
    font-size: 2.2rem;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .testimonial-card.large {
    grid-column: span 1;
  }
  
  .testimonial-card {
    padding: 25px;
  }
}

@media (max-width: 991px) and (min-width: 769px) {
  .testimonial-card.large {
    grid-column: span 1;
  }
}

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

.promo-offer-section {
  font-family: 'Merriweather', serif;
    background: linear-gradient(135deg, hsl(136, 35%, 40%) 0%, hsl(136, 35%, 25%) 100%);
  padding: 80px 0;
    position: relative;
  overflow: hidden;
}

.promo-offer-section::before {
  content: '';
    position: absolute;
  top: -50%;
    right: -10%;
  width: 500px;
    height: 500px;
  background: rgba(255,255,255,0.05);
    border-radius: 50%;
}

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

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

.promo-badge {
  display: inline-block;
    background: hsl(136, 35%, 65%);
  color: #222;
    padding: 8px 24px;
  border-radius: 25px;
    font-family: 'Lato', sans-serif;
  font-weight: 700;
    font-size: 0.9rem;
  letter-spacing: 1px;
    text-transform: uppercase;
  margin-bottom: 20px;
}

.promo-title {
    font-family: 'Lato', sans-serif;
  color: white;
    font-size: 3rem;
  font-weight: 900;
    margin-bottom: 25px;
  line-height: 1.2;
}

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

.promo-deadline-box {
    background: white;
  border-radius: 15px;
    padding: 35px 40px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    margin: 40px auto;
  max-width: 500px;
}

.deadline-label {
    font-family: 'Lato', sans-serif;
  color: #666;
    font-size: 0.95rem;
  text-transform: uppercase;
    letter-spacing: 1.5px;
  margin-bottom: 12px;
    font-weight: 600;
}

.deadline-date {
    font-family: 'Lato', sans-serif;
  color: hsl(136, 35%, 40%);
    font-size: 2.5rem;
  font-weight: 900;
    display: flex;
  align-items: center;
    justify-content: center;
  gap: 15px;
}

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

.promo-features {
    list-style: none;
  padding: 0;
    margin: 50px auto;
  max-width: 800px;
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.promo-features li {
    background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
    padding: 25px;
  border-radius: 12px;
    display: flex;
  align-items: flex-start;
    gap: 15px;
  color: white;
    transition: transform 0.3s ease, background 0.3s ease;
}

.promo-features li:hover {
    transform: translateY(-5px);
  background: rgba(255,255,255,0.15);
}

.feature-icon {
    font-size: 1.8rem;
  color: hsl(136, 35%, 65%);
    flex-shrink: 0;
}

.feature-text {
    font-size: 1rem;
  line-height: 1.6;
}

.promo-cta-btn {
    display: inline-block;
  background: hsl(136, 35%, 65%);
    color: #222;
  padding: 18px 50px;
    font-family: 'Lato', sans-serif;
  font-weight: 700;
    font-size: 1.1rem;
  border-radius: 50px;
    text-decoration: none;
  text-transform: uppercase;
    letter-spacing: 1px;
  transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
  margin-top: 20px;
}

.promo-cta-btn:hover {
    background: #fff;
  color: hsl(136, 35%, 40%);
    transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    text-decoration: none;
}

.discount-highlight {
    background: hsl(136, 35%, 65%);
  color: #222;
    padding: 5px 12px;
  border-radius: 8px;
    font-weight: 700;
  display: inline-block;
}

@media (max-width: 768px) {
    .promo-title {
      font-size: 2.2rem;
  }
    
  .promo-description {
      font-size: 1rem;
  }
    
  .deadline-date {
      font-size: 2rem;
  }
    
  .promo-features {
      grid-template-columns: 1fr;
  }
    
  .promo-deadline-box {
      padding: 25px 20px;
  }
}

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

.disclaimer-section {
  background: #f8f9fa;
  padding: 60px 0;
  font-family: 'Merriweather', serif;
}

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

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

.disclaimer-icon {
  font-size: 42px;
  color: hsl(136, 35%, 40%);
  margin-bottom: 18px;
}

.disclaimer-title {
  font-family: 'Lato', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #222;
  margin: 0;
}

.disclaimer-content {
  background: white;
  padding: 40px 35px;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  border-left: 4px solid hsl(136, 35%, 40%);
}

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

@media (max-width: 768px) {
  .disclaimer-section {
    padding: 45px 0;
  }
  
  .disclaimer-title {
    font-size: 1.6rem;
  }
  
  .disclaimer-content {
    padding: 28px 22px;
  }
  
  .disclaimer-text {
    font-size: 14px;
    text-align: left;
  }
}

.privacy-policy {
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        max-width: 1200px;
        margin: 0 auto;
        padding: 40px 20px;
        background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
        line-height: 1.8;
        color: #2c3e50;
    }
    
    .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: 60px;
        border-radius: 20px;
        box-shadow: 0 5px 30px rgba(0,0,0,0.08);
    }
    
    .privacy-intro {
        background: #f8f9fa;
        padding: 30px;
        border-left: 5px solid #667eea;
        border-radius: 10px;
        margin-bottom: 40px;
        font-size: 1.1em;
    }
    
    .privacy-section {
        margin-bottom: 50px;
    }
    
    .privacy-section h2 {
        color: #667eea;
        font-size: 2em;
        margin-bottom: 25px;
        padding-bottom: 15px;
        border-bottom: 3px solid #e0e7ff;
        font-weight: 600;
    }
    
    .privacy-section h3 {
        color: #764ba2;
        font-size: 1.5em;
        margin: 30px 0 20px 0;
        font-weight: 600;
    }
    
    .privacy-section h4 {
        color: #4a5568;
        font-size: 1.2em;
        margin: 25px 0 15px 0;
        font-weight: 600;
    }
    
    .data-category {
        background: #f7fafc;
        padding: 25px;
        margin: 20px 0;
        border-radius: 12px;
        border-left: 4px solid #667eea;
        transition: transform 0.3s ease;
    }
    
    .data-category:hover {
        transform: translateX(10px);
        box-shadow: 0 5px 20px rgba(102, 126, 234, 0.1);
    }
    
    .data-category strong {
        color: #667eea;
        font-size: 1.15em;
        display: block;
        margin-bottom: 10px;
    }
    
    .rights-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 25px;
        margin: 30px 0;
    }
    
    .right-card {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        padding: 30px;
        border-radius: 15px;
        color: #ffffff;
        box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        transition: transform 0.3s ease;
    }
    
    .right-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    }
    
    .right-card h4 {
        color: #ffffff;
        margin-top: 0;
        font-size: 1.3em;
    }
    
    .platform-box {
        background: #edf2f7;
        padding: 25px;
        margin: 20px 0;
        border-radius: 12px;
        border: 2px solid #cbd5e0;
    }
    
    .platform-box h4 {
        color: #2d3748;
        margin-top: 0;
    }
    
    .highlight-box {
        background: #fff5f5;
        border-left: 5px solid #fc8181;
        padding: 25px;
        margin: 25px 0;
        border-radius: 8px;
    }
    
    .highlight-box strong {
        color: #c53030;
        display: block;
        margin-bottom: 10px;
        font-size: 1.1em;
    }
    
    ul, ol {
        margin: 15px 0;
        padding-left: 30px;
    }
    
    li {
        margin: 12px 0;
        line-height: 1.8;
    }
    
    .company-info {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        color: #ffffff;
        padding: 40px;
        border-radius: 15px;
        margin-top: 50px;
        text-align: center;
    }
    
    .company-info h3 {
        color: #ffffff;
        margin-top: 0;
    }
    
    @media (max-width: 768px) {
        .privacy-content {
            padding: 30px 20px;
        }
        
        .privacy-header h1 {
            font-size: 2em;
        }
        
        .rights-grid {
            grid-template-columns: 1fr;
        }
    }

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    min-height: 100vh;
    padding: 20px 0;
    color: #2c3e50;
  }
  
  .header-section {
    background: linear-gradient(135deg, #ed1c24 0%, #dc143c 100%);
    color: white;
    padding: 60px 20px;
    text-align: center;
    margin-bottom: 40px;
    box-shadow: 0 4px 20px rgba(237, 28, 36, 0.3);
  }
  
  .header-section h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
  }
  
  .header-section .subtitle {
    font-size: 1.2rem;
    opacity: 0.95;
    margin-bottom: 20px;
  }
  
  .sg-badge {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    padding: 10px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    border: 2px solid rgba(255,255,255,0.4);
    backdrop-filter: blur(10px);
  }
  
  .entity-banner {
    background: linear-gradient(135deg, hsl(136, 35%, 40%) 0%, hsl(136, 35%, 25%) 100%);
    color: white;
    padding: 40px 20px;
    text-align: center;
    margin: -20px auto 40px;
    max-width: 1200px;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
  }
  
  .entity-banner h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 10px;
  }
  
  .entity-banner .company-type {
    font-size: 1.1rem;
    opacity: 0.9;
    letter-spacing: 2px;
    text-transform: uppercase;
  }
  
  .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.5rem;
    font-weight: 700;
    color: hsl(136, 35%, 30%);
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 3px solid hsl(136, 35%, 65%);
  }
  
  .info-row {
    display: flex;
    padding: 15px 0;
    border-bottom: 1px solid #ecf0f1;
    align-items: center;
  }
  
  .info-row:last-child {
    border-bottom: none;
  }
  
  .info-label {
    flex: 0 0 40%;
    font-weight: 600;
    color: #34495e;
    font-size: 0.95rem;
  }
  
  .info-value {
    flex: 0 0 60%;
    color: #2c3e50;
    font-size: 0.95rem;
  }
  
  .status-active {
    color: #27ae60;
    font-weight: 700;
  }
  
  .status-active::before {
    content: '✓ ';
    font-weight: 900;
  }
  
  .excellence-footer {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 50px 20px;
    text-align: center;
    margin-top: 40px;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(102, 126, 234, 0.3);
  }
  
  .excellence-footer h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
  }
  
  .excellence-footer p {
    font-size: 1.05rem;
    line-height: 1.8;
    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: 5px;
      padding-left: 0;
    }
  }
  
  .container {
    max-width: 1200px;
  }

.terms-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 60px 20px;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
        color: #2c3e50;
        line-height: 1.8;
    }
    
    .terms-header {
        text-align: center;
        margin-bottom: 50px;
        padding-bottom: 30px;
        border-bottom: 3px solid #27ae60;
    }
    
    .terms-header h1 {
        font-size: 2.8em;
        color: #27ae60;
        margin-bottom: 15px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 2px;
    }
    
    .effective-date {
        font-size: 1.1em;
        color: #7f8c8d;
        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: 25px;
        border-left: 4px solid #27ae60;
        background: #f8f9fa;
        border-radius: 8px;
        transition: all 0.3s ease;
    }
    
    .terms-section:hover {
        transform: translateX(5px);
        box-shadow: -5px 5px 15px rgba(39, 174, 96, 0.2);
    }
    
    .terms-section h2 {
        color: #27ae60;
        font-size: 1.8em;
        margin-bottom: 20px;
        font-weight: 600;
        display: flex;
        align-items: center;
    }
    
    .terms-section h2:before {
        content: "■";
        margin-right: 15px;
        font-size: 0.8em;
    }
    
    .terms-section h3 {
        color: #34495e;
        font-size: 1.3em;
        margin-top: 25px;
        margin-bottom: 15px;
        font-weight: 600;
    }
    
    .terms-section p {
        margin-bottom: 15px;
        text-align: justify;
        color: #555;
    }
    
    .terms-section ul {
        margin: 20px 0;
        padding-left: 25px;
    }
    
    .terms-section li {
        margin-bottom: 12px;
        color: #555;
        position: relative;
        padding-left: 10px;
    }
    
    .terms-section li:before {
        content: "→";
        position: absolute;
        left: -15px;
        color: #27ae60;
        font-weight: bold;
    }
    
    .highlight-box {
        background: #e8f5e9;
        padding: 20px;
        border-radius: 8px;
        margin: 20px 0;
        border: 2px solid #27ae60;
    }
    
    .warning-box {
        background: #fff3cd;
        padding: 20px;
        border-radius: 8px;
        margin: 20px 0;
        border-left: 5px solid #ffc107;
    }
    
    strong {
        color: #27ae60;
        font-weight: 600;
    }
    
    @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;
        }
    }