:root {
    --primary-brand: #2ECC71;
    --primary-gradient: linear-gradient(135deg, #2ECC71 0%, #27AE60 100%);
    --background-main: #FFFFFF;
    --background-alt: #F9FBF9;
    --background-accent: #E8F5E9;
    --text-primary-light-bg: #1A1D1A;
    --text-secondary-light-bg: #4B5563;
    --text-muted-light-bg: #9CA3AF;
    --border-color: #E5E7EB;
    --status-success: #10B981;
    --status-info: #3B82F6;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--background-main);
    color: var(--text-primary-light-bg);
    font-weight: 400;
    line-height: 1.6;
    overflow-x: hidden;
}

.text-muted {
    color: var(--text-muted-light-bg) !important;
}

.main-heading {
    font-weight: 700;
    letter-spacing: -0.02em;
}

.btn-primary-custom {
    background: var(--primary-gradient);
    color: #fff;
    border-radius: 50px;
    padding: 12px 32px;
    border: none;
    font-weight: 600;
    box-shadow: 0 4px 14px 0 rgba(46, 204, 113, 0.39);
}

.btn-secondary-custom {
    background: transparent;
    color: var(--primary-brand);
    border: 1.5px solid var(--primary-brand);
    border-radius: 50px;
    padding: 12px 32px;
    font-weight: 600;
}

.card-bento {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    padding: 24px;
}

.skew-section {
    clip-path: polygon(0 2%, 100% 0, 100% 98%, 0 100%);
}

.video-bg-container {
    position: relative;
    overflow: hidden;
}

.video-bg-container video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: -1;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.85);
    z-index: 0;
}

/* ===== header ===== */
.header-section {
    background-color: #FFFFFF;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    z-index: 1050;
    border-bottom: 1px solid #E5E7EB;
}

.header-section .navbar {
    padding: 1rem 0;
    background-color: #FFFFFF !important;
}

.header-section .header-logo {
    max-width: 45px;
    height: auto;
    object-fit: contain;
}

.header-section .brand-text {
    font-weight: 700;
    font-size: 1.5rem;
    color: #1A1D1A;
    letter-spacing: -0.5px;
}

.header-section .nav-link {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    color: #4B5563 !important;
    padding: 0.5rem 1.25rem !important;
    transition: color 0.2s ease;
}

.header-section .nav-link:hover {
    color: #2ECC71 !important;
}

.header-section .btn-primary-custom {
    background: linear-gradient(135deg, #2ECC71 0%, #27AE60 100%);
    color: #FFFFFF !important;
    border: none;
    padding: 0.75rem 1.75rem;
    font-weight: 600;
    font-size: 1rem;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.header-section .btn-primary-custom:hover {
    opacity: 0.9;
    color: #FFFFFF !important;
}

@media (max-width: 991.98px) {
    .header-section .navbar-collapse {
        background-color: #FFFFFF;
        padding: 1.5rem 0;
        border-top: 1px solid #E5E7EB;
        margin-top: 1rem;
    }

    .header-section .nav-link {
        padding: 0.75rem 0 !important;
        font-size: 1.1rem;
    }

    .header-section .btn-primary-custom {
        width: 100%;
        margin-top: 1rem;
        text-align: center;
    }
}

/* ===== hero ===== */
.hero-video-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 160px;
    overflow: hidden;
    background-color: #1A1D1A;
}

.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-video-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(26, 29, 26, 0.8) 0%, rgba(26, 29, 26, 0.4) 50%, rgba(26, 29, 26, 0.8) 100%);
}

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

.hero-headline {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.hero-lead {
    font-size: 1.25rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.hero-floating-panel {
    background: #FFFFFF;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    margin-top: 60px;
    overflow: hidden;
    border: 1px solid rgba(229, 231, 187, 0.1);
}

.hero-feature-item {
    border-right: 1px solid #E5E7EB;
}

.hero-feature-item:last-child {
    border-right: none;
}

.hero-feature-card {
    padding: 32px;
    height: 100%;
    transition: background-color 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-feature-card:hover {
    background-color: #F9FBF9;
}

.hero-feature-img-wrapper {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 20px;
}

.hero-feature-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1A1D1A;
    margin-bottom: 12px;
}

.hero-feature-desc {
    font-size: 0.95rem;
    color: #4B5563;
    line-height: 1.5;
    margin-bottom: 20px;
    flex-grow: 1;
}

.hero-feature-link {
    color: #2ECC71;
    font-weight: 600;
    text-decoration: none;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
}

.hero-feature-link:hover {
    text-decoration: underline;
}

@media (max-width: 767px) {
    .hero-video-section {
        padding: 80px 0 100px;
    }

    .hero-floating-panel {
        border-radius: 16px;
    }

    .hero-feature-item {
        border-right: none;
        border-bottom: 1px solid #E5E7EB;
    }

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

    .hero-feature-card {
        padding: 24px;
    }

    .hero-headline {
        font-size: 1.75rem;
    }

    .hero-lead {
        font-size: 1rem;
    }
}

/* ===== about_preview ===== */
.about-preview-section {
    position: relative;
    background-color: #FFFFFF;
    overflow: hidden;
    z-index: 1;
}

.about-preview-skew-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #F9FBF9;
    transform: skewY(-2deg);
    transform-origin: top left;
    z-index: -1;
}

.about-preview-section .about-preview-subtitle {
    color: #2ECC71;
    letter-spacing: 2px;
    font-size: 0.875rem;
}

.about-preview-section .about-preview-title {
    color: #1A1D1A;
    font-weight: 700;
    font-size: 2.25rem;
    line-height: 1.2;
}

.about-preview-section .about-preview-text {
    color: #4B5563;
    font-size: 1.125rem;
    line-height: 1.6;
}

.about-preview-section .btn-primary-custom {
    background: linear-gradient(135deg, #2ECC71 0%, #27AE60 100%);
    color: #FFFFFF;
    border: none;
    transition: box-shadow 0.3s ease;
}

.about-preview-section .btn-primary-custom:hover {
    box-shadow: 0 10px 20px rgba(46, 204, 113, 0.2);
    color: #FFFFFF;
}

.about-preview-section .btn-outline-custom {
    border: 1.5px solid #2ECC71;
    color: #2ECC71;
    background: transparent;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.about-preview-section .btn-outline-custom:hover {
    background-color: #F1F8F1;
    color: #27AE60;
    border-color: #27AE60;
}

.about-preview-section .about-preview-image-wrapper {
    position: relative;
    padding-right: 2rem;
    padding-bottom: 2rem;
}

.about-preview-section .about-preview-image-card img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border: 1px solid #E5E7EB;
}

.about-preview-section .about-preview-accent-box {
    position: absolute;
    bottom: 0;
    right: 0;
    background: #1A1D1A;
    color: #FFFFFF;
    border-left: 4px solid #2ECC71;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    min-width: 180px;
}

@media (max-width: 767.98px) {
    .about-preview-section .about-preview-title {
        font-size: 1.75rem;
    }

    .about-preview-section .about-preview-image-card img {
        height: 300px;
    }

    .about-preview-section .about-preview-actions .btn {
        width: 100%;
    }

    .about-preview-section .about-preview-image-wrapper {
        padding-right: 0;
        padding-bottom: 0;
        margin-bottom: 2rem;
    }
}

/* ===== services_preview ===== */
.services-preview-section {
    background-color: #FFFFFF;
    font-family: 'Inter', sans-serif;
    overflow: hidden;
}

.services-preview-section .services-preview-title {
    color: #1A1D1A;
    font-weight: 700;
    font-size: 2.25rem;
}

.services-preview-section .services-preview-subtitle {
    color: #4B5563;
    max-width: 700px;
    font-size: 1.125rem;
    line-height: 1.6;
}

.services-preview-section .service-card {
    background: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    transition: border-color 0.2s ease, background-color 0.2s ease;
}

.services-preview-section .service-card:hover {
    border-color: #2ECC71;
    background-color: #F1F8F1;
}

.services-preview-section .service-card-img-wrapper {
    height: 200px;
    width: 100%;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
}

.services-preview-section .service-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.services-preview-section .service-card-body {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.services-preview-section .service-card-title {
    color: #1A1D1A;
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.services-preview-section .service-card-text {
    color: #4B5563;
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
    hyphens: auto;
}

.services-preview-section .btn-primary {
    background: linear-gradient(135deg, #2ECC71 0%, #27AE60 100%);
    border: none;
    color: #FFFFFF;
    padding: 12px 24px;
    font-weight: 600;
    font-size: 1rem;
}

.services-preview-section .btn-primary:hover {
    opacity: 0.9;
    color: #FFFFFF;
}

.services-preview-section .btn-secondary-custom {
    display: inline-block;
    padding: 12px 32px;
    border: 1.5px solid #2ECC71;
    border-radius: 50px;
    color: #27AE60;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.2s ease;
}

.services-preview-section .btn-secondary-custom:hover {
    background-color: #E8F5E9;
    color: #27AE60;
}

@media (max-width: 767px) {
    .services-preview-section .services-preview-title {
        font-size: 1.5rem;
    }

    .services-preview-section .services-preview-subtitle {
        font-size: 1rem;
    }

    .services-preview-section .service-card-title {
        font-size: 1.25rem;
    }
}

/* ===== benefits ===== */
.benefits-block-unique {
    position: relative;
    background-color: #FFFFFF;
    overflow: hidden;
    font-family: 'Inter', sans-serif;
}

.benefits-block-unique .skewed-bg-element {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #F9FBF9;
    clip-path: polygon(0 4%, 100% 0, 100% 96%, 0 100%);
    z-index: 0;
}

.benefits-block-unique .container {
    position: relative;
    z-index: 1;
}

.benefits-block-unique .section-title {
    color: #1A1D1A;
    font-size: 2.25rem;
    line-height: 1.2;
}

.benefits-block-unique .section-subtitle {
    color: #4B5563;
    font-size: 1.125rem;
    line-height: 1.6;
}

.benefits-block-unique .benefit-card {
    background: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.benefits-block-unique .benefit-card:hover {
    border-color: #2ECC71;
}

.benefits-block-unique .benefit-index {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2ECC71;
    opacity: 0.2;
    display: block;
    margin-bottom: 16px;
}

.benefits-block-unique .benefit-card-title {
    color: #1A1D1A;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.3;
}

.benefits-block-unique .benefit-card-text {
    color: #4B5563;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0;
}

.benefits-block-unique .btn-primary-custom {
    background: linear-gradient(135deg, #2ECC71 0%, #27AE60 100%);
    color: #FFFFFF;
    border-radius: 50px;
    font-weight: 600;
    display: inline-block;
    transition: opacity 0.3s ease;
    border: none;
}

.benefits-block-unique .btn-primary-custom:hover {
    opacity: 0.9;
    color: #FFFFFF;
}

@media (max-width: 767.98px) {
    .benefits-block-unique .section-title {
        font-size: 1.5rem;
    }

    .benefits-block-unique .section-subtitle {
        font-size: 1rem;
    }

    .benefits-block-unique .benefit-card {
        padding: 24px;
    }

    .benefits-block-unique .skewed-bg-element {
        clip-path: polygon(0 2%, 100% 0, 100% 98%, 0 100%);
    }
}

/* ===== footer ===== */
.footer-block {
    font-family: 'Inter', sans-serif;
    background-color: #FFFFFF;
}

.footer-block .text-primary-brand {
    color: #2ECC71;
}

.footer-block .footer-links a:hover {
    color: #2ECC71 !important;
}

.footer-block .footer-contact a:hover {
    color: #2ECC71 !important;
}

.footer-block .footer-links li a,
.footer-block .footer-contact li,
.footer-block .footer-contact a {
    transition: color 0.2s ease-in-out;
}

@media (max-width: 767.98px) {
    .footer-block .footer-brand {
        text-align: center;
    }

    .footer-block .footer-brand img {
        margin-left: auto;
        margin-right: auto;
    }

    .footer-block h4 {
        margin-top: 1rem;
    }
}

/* ===== PAGE: privacy ===== */
.policy-page-content {
  padding: 80px 0;
  background-color: #FFFFFF;
  font-family: 'Inter', sans-serif;
}

.policy-page-content .privacy-inner-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.policy-page-content .privacy-card {
  background: #FFFFFF;
  padding: 40px;
  border: 1px solid #E5E7EB;
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.policy-page-content .privacy-update-date {
  color: #9CA3AF;
  font-size: 0.875rem;
  margin-bottom: 2rem;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.policy-page-content h2 {
  color: #1A1D1A;
  font-size: 2.25rem;
  font-weight: 700;
  margin-top: 3rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  border-left: 4px solid #2ECC71;
  padding-left: 20px;
}

.policy-page-content h3 {
  color: #1A1D1A;
  font-size: 1.5rem;
  font-weight: 600;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.policy-page-content p {
  color: #4B5563;
  font-size: 1.125rem;
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.policy-page-content ul {
  margin-bottom: 2rem;
  padding-left: 1.5rem;
}

.policy-page-content li {
  color: #4B5563;
  font-size: 1.125rem;
  line-height: 1.8;
  margin-bottom: 0.75rem;
  position: relative;
}

.policy-page-content li strong {
  color: #1A1D1A;
}

@media (max-width: 768px) {
  .policy-page-content {
    padding: 40px 0;
  }
  
  .policy-page-content .privacy-card {
    padding: 24px;
    border-radius: 12px;
    border: none;
    box-shadow: none;
  }

  .policy-page-content h2 {
    font-size: 16px;
    margin-top: 2rem;
    hyphens: auto;
  }

  .policy-page-content h3 {
    font-size: 14px;
  }

  .policy-page-content p, 
  .policy-page-content li {
    font-size: 1rem;
    line-height: 1.6;
  }
}

/* ===== PAGE: terms ===== */
.policy-page-content {
  padding: 80px 0;
  background-color: #FFFFFF;
  color: #1A1D1A;
  line-height: 1.6;
}
.policy-page-content .terms-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
}
.policy-page-content h2 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: #27AE60;
  margin: 40px 0 20px 0;
  border-bottom: 2px solid #E8F5E9;
  padding-bottom: 10px;
}
.policy-page-content p {
  font-size: 1.125rem;
  margin-bottom: 24px;
  color: #4B5563;
}
.policy-page-content .terms-intro {
  font-size: 1.25rem;
  font-weight: 500;
  color: #1A1D1A;
  margin-bottom: 48px;
}
.policy-page-content ul {
  margin-bottom: 24px;
  padding-left: 20px;
}
.policy-page-content li {
  margin-bottom: 12px;
  color: #4B5563;
  position: relative;
  list-style-type: none;
}
.policy-page-content li::before {
  content: "\F26E";
  font-family: "bootstrap-icons";
  position: absolute;
  left: -25px;
  color: #2ECC71;
}
.policy-page-content .terms-footer-note {
  margin-top: 60px;
  padding: 24px;
  background: #F9FBF9;
  border-radius: 12px;
  border: 1px solid #E5E7EB;
}
.policy-page-content .terms-footer-note p {
  margin-bottom: 0;
  font-size: 0.875rem;
  color: #9CA3AF;
  font-style: italic;
}
@media (max-width: 767px) {
  .policy-page-content {
    padding: 40px 0;
  }
  .policy-page-content h2 {
    font-size: 1.25rem;
  }
  .policy-page-content p {
    font-size: 1rem;
  }
  .policy-page-content .terms-intro {
    font-size: 1.1rem;
  }
}

/* ===== PAGE: disclaimer ===== */
.policy-page-content { padding: 40px 20px; color: #1A1D1A; background-color: #FFFFFF; font-family: 'Inter', sans-serif; line-height: 1.6; } .policy-page-content .disclaimer-container { max-width: 900px; margin: 0 auto; } .policy-page-content .disclaimer-header { margin-bottom: 40px; border-bottom: 1px solid #E5E7EB; padding-bottom: 20px; } .policy-page-content .disclaimer-main-title { color: #1A1D1A; font-weight: 700; font-size: 2.25rem; margin-bottom: 10px; line-height: 1.2; } .policy-page-content .disclaimer-update-date { color: #9CA3AF; font-size: 0.875rem; font-style: italic; } .policy-page-content h3 { color: #27AE60; font-weight: 600; font-size: 1.5rem; margin-top: 32px; margin-bottom: 16px; line-height: 1.3; } .policy-page-content p { margin-bottom: 1.25rem; font-size: 1.125rem; text-align: justify; hyphens: auto; } .policy-page-content ul { padding-left: 1.5rem; margin-bottom: 1.5rem; list-style-type: none; } .policy-page-content li { position: relative; margin-bottom: 0.75rem; font-size: 1.125rem; padding-left: 1.5rem; } .policy-page-content li::before { content: '\F26E'; font-family: 'Bootstrap Icons'; position: absolute; left: 0; color: #2ECC71; font-weight: bold; } @media (max-width: 768px) { .policy-page-content { padding: 30px 15px; } .policy-page-content .disclaimer-main-title { font-size: 18px; } .policy-page-content h3 { font-size: 16px; margin-top: 24px; } .policy-page-content p, .policy-page-content li { font-size: 14px; text-align: left; } }

/* ===== PAGE: cookies ===== */
.policy-page-content { padding: 60px 0; background-color: #FFFFFF; font-family: 'Inter', sans-serif; color: #1A1D1A; line-height: 1.6; } .policy-page-content .container-custom { max-width: 960px; margin: 0 auto; padding: 0 24px; } .policy-page-content h1 { font-weight: 700; font-size: 3rem; color: #1A1D1A; margin-bottom: 1rem; line-height: 1.2; } .policy-page-content h2 { font-weight: 700; font-size: 1.5rem; color: #27AE60; margin-top: 2.5rem; margin-bottom: 1.25rem; line-height: 1.3; } .policy-page-content h3 { font-weight: 600; font-size: 1.25rem; color: #1A1D1A; margin-bottom: 1rem; } .policy-page-content p { margin-bottom: 1.25rem; font-size: 1.125rem; color: #4B5563; } .policy-page-content .lead { font-size: 1.25rem; color: #4B5563; margin-bottom: 0.5rem; } .policy-page-content .cookie-card { height: 100%; padding: 24px; background: #FFFFFF; border: 1px solid #E5E7EB; border-radius: 16px; box-shadow: 0 10px 30px rgba(0,0,0,0.04); transition: border-color 0.2s ease; } .policy-page-content .cookie-card:hover { border-color: #2ECC71; } .policy-page-content .browser-links { list-style: none; padding-left: 0; display: flex; flex-wrap: wrap; gap: 15px; margin-top: 1rem; } .policy-page-content .browser-links li a { color: #27AE60; text-decoration: none; font-weight: 500; padding: 8px 16px; border: 1.5px solid #27AE60; border-radius: 50px; transition: background 0.2s ease, color 0.2s ease; } .policy-page-content .browser-links li a:hover { background: #2ECC71; color: #FFFFFF; } .policy-page-content .contact-highlight { background-color: #E8F5E9; padding: 32px; border-radius: 20px; margin-top: 40px; } .policy-page-content .contact-highlight h2 { margin-top: 0; } @media (max-width: 767px) { .policy-page-content { padding: 40px 0; } .policy-page-content h1 { font-size: 18px !important; } .policy-page-content h2 { font-size: 16px !important; } .policy-page-content h3 { font-size: 14px !important; } .policy-page-content p, .policy-page-content li { font-size: 14px; } .policy-page-content .browser-links { flex-direction: column; } .policy-page-content .browser-links li a { display: block; text-align: center; } }

/* ===== PAGE: about ===== */
.about-content-block .text-primary-brand {
  color: #2ECC71 !important;
}
.about-content-block .text-secondary-light {
  color: #4B5563;
}
.about-content-block .btn-primary-gradient {
  background: linear-gradient(135deg, #2ECC71 0%, #27AE60 100%);
  border: none;
  color: #FFFFFF;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(46, 204, 113, 0.2);
}
.about-content-block .about-image-wrapper .skewed-bg-element {
  position: absolute;
  top: -20px;
  right: -20px;
  bottom: 20px;
  left: 20px;
  background-color: #E8F5E9;
  z-index: 1;
  border-radius: 24px;
  transform: skew(-2deg);
}
.bg-alt {
  background-color: #F9FBF9;
}
.team-section-block .text-primary-brand {
  color: #2ECC71 !important;
}
.team-section-block .divider-line {
  width: 60px;
  height: 4px;
  background: linear-gradient(135deg, #2ECC71 0%, #27AE60 100%);
  border-radius: 2px;
}
.team-card {
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #E5E7EB !important;
}
.team-card:hover {
  border-color: #2ECC71 !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04) !important;
}
@media (max-width: 768px) {
  .about-content-block .about-image-wrapper .skewed-bg-element {
    display: none;
  }
  .about-content-block h2 {
    font-size: 1.5rem !important;
  }
  .team-section-block h2 {
    font-size: 1.5rem !important;
  }
}

/* ===== PAGE: services ===== */
.services-section {
  background-color: #F9FBF9;
  color: #1A1D1A;
  overflow: hidden;
}
.services-section .services-section__title {
  font-weight: 700;
  color: #1A1D1A;
  font-size: 2.25rem;
  line-height: 1.2;
}
.services-section .services-section__subtitle {
  color: #4B5563;
  font-size: 1.125rem;
  max-width: 700px;
  margin-bottom: 1.5rem;
}
.services-section .services-section__divider {
  width: 60px;
  height: 4px;
  background: linear-gradient(135deg, #2ECC71 0%, #27AE60 100%);
  margin: 0 auto;
  border-radius: 2px;
}
.services-section .services-section__card {
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: 24px;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 30px rgba(0,0,0,0.04);
  transition: border-color 0.3s ease, background-color 0.3s ease;
}
.services-section .services-section__card:hover {
  border-color: #2ECC71;
  background-color: #F1F8F1;
}
.services-section .services-section__image-wrapper {
  position: relative;
  height: 200px;
  width: 100%;
  overflow: hidden;
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
}
.services-section .services-section__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.services-section .services-section__price {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: #2ECC71;
  color: #FFFFFF;
  padding: 6px 16px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: 0 4px 10px rgba(46, 204, 113, 0.3);
}
.services-section .services-section__content {
  padding: 24px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.services-section .services-section__item-title {
  font-weight: 700;
  color: #1A1D1A;
  font-size: 1.5rem;
  margin-bottom: 12px;
}
.services-section .services-section__item-text {
  color: #4B5563;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 24px;
  flex-grow: 1;
}
.services-section .services-section__btn {
  background: linear-gradient(135deg, #2ECC71 0%, #27AE60 100%);
  color: #FFFFFF !important;
  border-radius: 50px;
  font-weight: 600;
  padding: 12px 24px;
  border: none;
  text-transform: none;
  box-shadow: none;
}
.services-section .services-section__btn:hover {
  box-shadow: 0 8px 15px rgba(46, 204, 113, 0.2);
  opacity: 0.9;
}
.services-section .services-section__load-more {
  border: 1.5px solid #2ECC71;
  background: transparent;
  color: #2ECC71 !important;
  border-radius: 50px;
  padding: 14px 40px;
  font-weight: 600;
  text-transform: none;
  box-shadow: none;
}
.services-section .services-section__load-more:hover {
  background: #E8F5E9;
}
@media (max-width: 767px) {
  .services-section .services-section__title { font-size: 1.5rem; }
  .services-section .services-section__subtitle { font-size: 1rem; }
  .services-section .services-section__item-title { font-size: 1.25rem; }
}

/* ===== PAGE: blog ===== */
.blog-list-section { background-color: #FFFFFF; font-family: 'Inter', sans-serif; }
.blog-list-section .card { transition: transform 0.3s ease, box-shadow 0.3s ease; border: 1px solid #E5E7EB !important; border-radius: 12px; }
.blog-list-section .card:hover { transform: translateY(-5px); box-shadow: 0 10px 30px rgba(0,0,0,0.08) !important; }
.blog-list-section .btn-primary { background: linear-gradient(135deg, #2ECC71 0%, #27AE60 100%); border: none; box-shadow: 0 4px 14px 0 rgba(46, 204, 113, 0.39); }
.blog-list-section .btn-primary:hover { background: linear-gradient(135deg, #27AE60 0%, #219150 100%); }
.blog-list-section .badge.bg-primary { background-color: #2ECC71 !important; font-weight: 500; font-size: 0.75rem; padding: 0.5rem 1rem; }
.blog-list-section .text-primary { color: #2ECC71 !important; }
.blog-list-section .bg-light { background-color: #F9FBF9 !important; }
.blog-list-section h1, .blog-list-section h2, .blog-list-section h3, .blog-list-section h4 { color: #1A1D1A; }
.blog-list-section .text-secondary { color: #4B5563 !important; line-height: 1.6; }
.blog-list-section .object-fit-cover { object-fit: cover; }

/* ===== PAGE: contact ===== */
.contact-section { background-color: #FFFFFF; font-family: 'Inter', sans-serif; } .contact-section .contact-section-title { color: #1A1D1A; font-weight: 700; font-size: 2.25rem; margin-bottom: 1rem; } .contact-section .contact-section-subtitle { color: #4B5563; font-size: 1.125rem; max-width: 700px; margin: 0 auto; line-height: 1.6; } .contact-section .contact-card { background: #FFFFFF; border: 1px solid #E5E7EB; border-radius: 20px; padding: 32px; box-shadow: 0 10px 30px rgba(0,0,0,0.04); text-align: center; } .contact-section .contact-icon-wrapper { width: 64px; height: 64px; background-color: #E8F5E9; color: #2ECC71; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto; font-size: 1.5rem; } .contact-section .contact-card-title { font-size: 1.5rem; font-weight: 700; color: #1A1D1A; margin-bottom: 1rem; } .contact-section .contact-card-text { color: #4B5563; font-size: 1.05rem; line-height: 1.6; margin-bottom: 0; } .contact-section .contact-link { color: #2ECC71; font-weight: 600; text-decoration: none; } .contact-section .contact-link:hover { color: #27AE60; } .contact-section .contact-wa-btn { background: linear-gradient(135deg, #2ECC71 0%, #27AE60 100%); color: #FFFFFF; padding: 12px 24px; border-radius: 50px; font-weight: 600; text-decoration: none; font-size: 0.95rem; border: none; } .contact-section .contact-wa-btn:hover { box-shadow: 0 4px 15px rgba(46, 204, 113, 0.3); color: #FFFFFF; } .map-section .map-wrapper { position: relative; height: 450px; width: 100%; filter: grayscale(10%); } .map-section .contact-map-iframe { width: 100%; height: 100%; border: 0; display: block; } @media (max-width: 768px) { .contact-section .contact-section-title { font-size: 1.5rem; } .contact-section .contact-section-subtitle { font-size: 0.95rem; } .contact-section .contact-card { padding: 24px; } .map-section .map-wrapper { height: 300px; } }

.comment-card {
    background-color: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    transition: border-color 0.2s ease;
}

.comment-card:hover {
    border-color: #2ECC71;
}

.avatar-initials {
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    color: #FFFFFF;
    background: linear-gradient(135deg, #2ECC71 0%, #27AE60 100%);
    border-radius: 50%;
    object-fit: cover;
}

.main-avatar {
    width: 56px;
    height: 56px;
    min-width: 56px;
    font-size: 1.25rem;
}

.author-name {
    color: #1A1D1A;
    font-weight: 700;
    font-size: 1.125rem;
}

.comment-date {
    color: #9CA3AF;
    font-size: 0.875rem;
}

.comment-content {
    color: #4B5563;
    line-height: 1.6;
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.btn-comment-action {
    background: transparent;
    border: none;
    padding: 0;
    color: #2ECC71;
    font-weight: 500;
    font-size: 0.875rem;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.btn-comment-action:hover {
    color: #27AE60;
}

.reply-comment-container {
    margin-top: -16px;
    border-left: 2px solid #E5E7EB;
    padding-left: 1rem;
}

.reply-comment-container .comment-card {
    background-color: #F9FBF9;
    border: 1px solid #E5E7EB;
    border-left: 4px solid #2ECC71;
    border-radius: 12px;
}

.reply-avatar {
    width: 40px;
    height: 40px;
    min-width: 40px;
    font-size: 0.875rem;
}

.badge.bg-accent {
    background-color: #E8F5E9;
    color: #27AE60;
    font-weight: 600;
    font-size: 0.75rem;
    border-radius: 4px;
    padding: 4px 8px;
}

.comment-content.small {
    font-size: 1rem;
    color: #4B5563;
}

.border-start-accent {
    border-left: 4px solid #2ECC71 !important;
}


/* ===== PAGE TEMPLATE: services-list ===== */
.header-section {
    background-color: #FFFFFF;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    z-index: 1050;
    border-bottom: 1px solid #E5E7EB;
}

.header-section .navbar-brand .header-logo {
    max-width: 45px;
}

.header-section .brand-text {
    font-weight: 700;
    font-size: 1.5rem;
    color: #1A1D1A;
}

.header-section .nav-link {
    color: #4B5563 !important;
    font-weight: 500;
    transition: color 0.2s;
}

.header-section .nav-link:hover {
    color: #2ECC71 !important;
}

.btn-primary-custom {
    background: linear-gradient(135deg, #2ECC71 0%, #27AE60 100%);
    color: #FFFFFF !important;
    border: none;
    padding: 0.75rem 1.75rem;
    font-weight: 600;
    transition: opacity 0.2s;
}

.btn-primary-custom:hover {
    opacity: 0.9;
}

.service-detail-wrapper .content-card {
    background: #FFFFFF;
    border-radius: 24px;
    border: 1px solid #E5E7EB;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
}

.service-detail-wrapper .rich-text-content h2 {
    color: #1A1D1A;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.service-detail-wrapper .rich-text-content p {
    color: #4B5563;
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.service-detail-wrapper .bg-success-soft {
    background-color: #E8F5E9;
}

.service-detail-wrapper .bg-accent {
    background-color: #F9FBF9;
}

.service-detail-wrapper .icon-box-small {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #E8F5E9;
    border-radius: 10px;
}

.service-detail-wrapper .related-img {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    object-fit: cover;
}

.service-detail-wrapper .group-hover-green:hover {
    color: #2ECC71 !important;
}


.service-detail-wrapper .avatar-initials {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #FFFFFF;
}

.service-detail-wrapper .main-avatar {
    background-color: #2ECC71;
}

.service-detail-wrapper .reply-avatar {
    background-color: #27AE60;
}

.service-detail-wrapper .comment-card {
    border: 1px solid #E5E7EB;
    border-radius: 16px;
    background: #FFFFFF;
}

.service-detail-wrapper .border-start-accent {
    border-left: 4px solid #2ECC71 !important;
}

.service-detail-wrapper .author-name {
    font-weight: 700;
    color: #1A1D1A;
}

.service-detail-wrapper .comment-date {
    font-size: 0.8rem;
    color: #9CA3AF;
}

.service-detail-wrapper .comment-content {
    color: #4B5563;
    line-height: 1.6;
}

.service-detail-wrapper .btn-comment-action {
    background: none;
    border: none;
    padding: 0;
    font-size: 0.85rem;
    color: #9CA3AF;
    font-weight: 600;
}

.service-detail-wrapper .btn-comment-action:hover {
    color: #2ECC71;
}

.service-detail-wrapper .cursor-pointer {
    cursor: pointer;
}

.service-detail-wrapper .bi-star.active {
    color: #FFC107;
}

.footer-block .text-primary-brand {
    color: #2ECC71;
}

.footer-block .footer-links a:hover {
    color: #2ECC71 !important;
}

@media (max-width: 768px) {
    .service-detail-wrapper .reply-comment-container {
        margin-left: 1.5rem !important;
    }

    .service-detail-wrapper .detail-hero-section {
        min-height: 300px;
    }
}

/* ===== PAGE TEMPLATE: blog-list ===== */
.header-section {
    background-color: #FFFFFF;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    z-index: 1050;
    border-bottom: 1px solid #E5E7EB;
}

.header-section .navbar {
    padding: 1rem 0;
    background-color: #FFFFFF !important;
}

.header-section .header-logo {
    max-width: 45px;
    height: auto;
    object-fit: contain;
}

.header-section .brand-text {
    font-weight: 700;
    font-size: 1.5rem;
    color: #1A1D1A;
    letter-spacing: -0.5px;
}

.header-section .nav-link {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    color: #4B5563 !important;
    padding: 0.5rem 1.25rem !important;
    transition: color 0.2s ease;
}

.header-section .nav-link:hover {
    color: #2ECC71 !important;
}

.header-section .btn-primary-custom {
    background: linear-gradient(135deg, #2ECC71 0%, #27AE60 100%);
    color: #FFFFFF !important;
    border: none;
    padding: 0.75rem 1.75rem;
    font-weight: 600;
    font-size: 1rem;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.header-section .btn-primary-custom:hover {
    opacity: 0.9;
    color: #FFFFFF !important;
}

.blog-hero-section {
    padding: 120px 0 80px;
    position: relative;
    color: #FFFFFF;
}

.blog-detail-content {
    background-color: #F9FBF9;
}

.article-body {
    color: #1A1D1A;
    line-height: 1.8;
    font-size: 1.125rem;
}

.article-body h2,
.article-body h3 {
    color: #1A1D1A;
    font-weight: 700;
    margin: 2rem 0 1rem;
}

.article-body p {
    margin-bottom: 1.5rem;
}

.avatar-initials {
    width: 50px;
    height: 50px;
    background-color: #E8F5E9;
    color: #2ECC71;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    border-radius: 50%;
    border: 2px solid #2ECC71;
}

.comment-card {
    background-color: #FFFFFF;
    border: 1px solid #E5E7EB;
}

.border-start-accent {
    border-left: 4px solid #2ECC71 !important;
}

.btn-comment-action {
    background: none;
    border: none;
    color: #4B5563;
    font-size: 0.875rem;
    padding: 0;
    transition: color 0.2s;
}

.btn-comment-action:hover {
    color: #2ECC71;
}

.btn-comment-action.active {
    color: #2ECC71;
    font-weight: 600;
}

.sidebar-sticky {
    position: sticky;
    top: 100px;
}

.footer-block .text-primary-brand {
    color: #2ECC71;
}

.footer-block .footer-links a:hover {
    color: #2ECC71 !important;
}

.footer-block .footer-contact a:hover {
    color: #2ECC71 !important;
}

@media (max-width: 991.98px) {
    .header-section .navbar-collapse {
        background-color: #FFFFFF;
        padding: 1.5rem 0;
        border-top: 1px solid #E5E7EB;
        margin-top: 1rem;
    }
}

@media (max-width: 767px) {
    .blog-hero-section {
        padding: 80px 15px 40px;
    }

    .article-container {
        padding: 24px !important;
    }

    .reply-comment-container {
        margin-left: 1rem !important;
    }
}

/* ===== POLICY OVERRIDES ===== */
.policy-page-content {
    overflow-x: hidden;
}

.policy-page-content .terms-container,
.policy-page-content .privacy-inner-wrap,
.policy-page-content .disclaimer-container,
.policy-page-content .container-custom {
    max-width: 920px;
    margin: 0 auto;
    padding: 0 24px;
    box-sizing: border-box;
}

.policy-page-content h1,
.policy-page-content h2,
.policy-page-content h3,
.policy-page-content p,
.policy-page-content li {
    overflow-wrap: anywhere;
    word-break: break-word;
    hyphens: auto;
}

.policy-page-content ul {
    list-style: none;
    padding-left: 0;
}

.policy-page-content li {
    position: relative;
    padding-left: 1.75rem;
}

.policy-page-content li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: #2ECC71;
    font-weight: 700;
}

.footer-block .row.align-items-center > .col-12.col-md-6.text-center.text-md-start {
    flex: 0 0 100%;
    max-width: 100%;
    text-align: center !important;
}

.footer-block .row.align-items-center > .col-12.col-md-6.text-center.text-md-end {
    display: none !important;
}
