:root {
    --primary-color: #7fa41d;
    --secondary-color: #ff7800;
    --text-white: #ffffff;
    --bg-light: #f9f9fc;
}

.sdh-header-wrapper {
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    box-shadow: 0 4px 6px -6px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1030;
}

.sdh-header-wrapper .top-bar {
    background-color: var(--primary-color);
    color: var(--text-white);
    padding: 10px 0;
    font-size: 14px;
}

.sdh-header-wrapper .top-bar-divider {
    width: 1px;
    height: 14px;
    background-color: var(--text-white);
    opacity: 0.6;
    margin: 0 15px;
}

.sdh-header-wrapper .top-logo {
    height: 35px;
    filter: brightness(0) invert(1);
    object-fit: contain;
}

.sdh-header-wrapper .main-navbar {
    background-color: var(--text-white);
    padding: 12px 0;
}

.sdh-header-wrapper .main-logo {
    height: 70px;
    width: auto;
    max-width: 100%;
}

.sdh-header-wrapper .nav-item {
    margin: 0 10px;
}

.sdh-header-wrapper .nav-link {
    color: #000 !important;
    font-weight: 700;
    font-size: 16px;
    transition: color 0.3s ease;
    padding: 8px 10px;
}

.sdh-header-wrapper .nav-link:hover,
.sdh-header-wrapper .nav-link:focus {
    color: var(--primary-color) !important;
}

.sdh-header-wrapper .btn-contact {
    background-color: var(--secondary-color);
    color: var(--text-white);
    font-weight: 700;
    padding: 10px 24px;
    border-radius: 50px;
    border: 2px solid var(--secondary-color);
    transition: all 0.3s ease;
}

.sdh-header-wrapper .btn-contact:hover {
    background-color: transparent;
    color: var(--primary-color);
}

@media (max-width: 991px) {
    .sdh-header-wrapper .top-bar {
        padding: 12px 15px;
    }

    .sdh-header-wrapper .top-bar-info {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .sdh-header-wrapper .top-bar-divider {
        display: none;
    }

    .sdh-header-wrapper .navbar-collapse {
        background-color: var(--text-white);
        padding: 15px;
        border-radius: 8px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        margin-top: 10px;
    }

    .sdh-header-wrapper .btn-contact {
        margin-top: 15px;
        width: 100%;
    }
}

.hero-banner-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.hero-banner-wrapper .hero-bg-img {
    object-fit: cover;
    object-position: center;
    min-height: 550px; 
    height: 100%;
    width: 100%;
}

.hero-banner-wrapper .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.hero-banner-wrapper .hero-title {
    font-size: 3.5rem;
    line-height: 1.2;
}

.hero-banner-wrapper .hero-description {
    font-size: 1.15rem;
    line-height: 1.6;
    max-width: 90%;
}

.hero-banner-wrapper .hero-rating .stars {
    color: var(--secondary-color); 
    font-size: 1.1rem;
}

.hero-banner-wrapper .hero-rating span {
    font-size: 1rem;
    opacity: 0.95;
}

.hero-banner-wrapper .btn-hero {
    background-color: var(--secondary-color);
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 700;
    padding: 10px 24px;
    border-radius: 10px; 
    border: 2px solid var(--secondary-color);
    letter-spacing: 1px;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 4px 15px rgba(255, 120, 0, 0.4);
    display: inline-block;
    text-decoration: none;
}

.hero-banner-wrapper .btn-hero:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #ffffff;
    transform: translateY(-3px); 
    box-shadow: 0 6px 20px rgba(127, 164, 29, 0.5);
}

.hero-banner-wrapper .feature-icon {
    width: 48px;
    height: 48px;
    background-color: var(--primary-color); 
    border: 1px solid var(--primary-color);
    border-radius: 50%;
    color: #ffffff;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.hero-banner-wrapper .feature-item:hover .feature-icon {
    color: #ffffff;
    transform: scale(1.05);
}

.hero-banner-wrapper .feature-text h6 {
    letter-spacing: 0.5px;
}

.hero-banner-wrapper .feature-text small {
    font-size: 0.85rem;
    display: block;
    margin-top: -3px;
}

@media (max-width: 991px) {
    .hero-banner-wrapper .hero-overlay {
        padding-top: 5rem;
        padding-bottom: 5rem;
    }
}

@media (max-width: 768px) {
    .hero-banner-wrapper .hero-title {
        font-size: 2.2rem;
        margin-bottom: 1rem !important;
    }
    
    .hero-banner-wrapper .hero-description {
        font-size: 1rem;
        max-width: 100%;
    }
    
    .hero-banner-wrapper .btn-hero {
        padding: 10px 25px;
        font-size: 1rem;
        margin-bottom: 2rem !important;
    }

    .hero-banner-wrapper .hero-features {
        gap: 1.2rem !important;
    }
}

.sdh-journey-section .sticky-content {
    position: sticky;
    top: 100px; 
}

.sdh-journey-section .journey-label {
    background-color: #ffffff;
    color: var(--primary-color);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 8px 18px;
    border-radius: 50px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.03);
}

.sdh-journey-section .journey-label i {
    font-size: 0.5rem;
    vertical-align: middle;
}

.sdh-journey-section .journey-title {
    font-size: 3rem;
    color: #111111;
    letter-spacing: -1px;
    line-height: 1.2;
}

.sdh-journey-section .journey-desc {
    font-size: 1.1rem;
    line-height: 1.8;
}

.sdh-journey-section .timeline-wrapper {
    position: relative;
}

.sdh-journey-section .timeline-item {
    position: relative;
    z-index: 2;
}

.sdh-journey-section .timeline-content h3 {
    color: #111111;
    font-size: 1.5rem;
}

.sdh-journey-section .timeline-content p {
    font-size: 1.05rem;
    line-height: 1.6;
}

.sdh-journey-section {
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

.sdh-journey-section .icon-wrapper {
    width: 60px;
    height: 60px;
    background-color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--primary-color);
    border: 2px solid #00000014;
    transition: all 0.3s ease;
    z-index: 2; 
}

.sdh-journey-section .timeline-line {
    width: 2px;
    background-color: #d1e2d6;
    margin-top: 10px;
    margin-bottom: 10px;
    z-index: 1;
}

.sdh-journey-section .timeline-item:hover .icon-wrapper {
    transform: scale(1.1);
    color: var(--secondary-color);
    border-color: var(--secondary-color);
    box-shadow: 0 8px 20px rgba(255, 120, 0, 0.15) !important;
}

@media (max-width: 991px) {
    .sdh-journey-section .journey-title {
        font-size: 2.2rem;
    }
    
    .sdh-journey-section .sticky-content {
        position: relative;
        top: 0;
        margin-bottom: 3rem;
    }
}

@media (max-width: 576px) {
    .sdh-journey-section .icon-wrapper {
        width: 50px;
        height: 50px;
        font-size: 1.1rem;
    }
    
    .sdh-journey-section .timeline-content h3 {
        font-size: 1.3rem;
    }
    
    .sdh-journey-section .timeline-content p {
        font-size: 0.95rem;
    }
    
    .sdh-journey-section .timeline-content {
        padding-left: 1rem !important;
    }
}

.sdh-promo-banners {
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
    background-color: #ffffff;
}

.sdh-promo-banners .section-title {
    font-size: 2.5rem;
    color: #000;
    letter-spacing: -1px;
}

.sdh-promo-banners .promo-card {
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    border: 1px solid rgba(0,0,0,0.03);
}

.sdh-promo-banners .promo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.sdh-promo-banners .bg-cream { background-color: #FDF7E7; }
.sdh-promo-banners .bg-light-blue { background-color: #EBF7FA; }

.sdh-promo-banners .promo-title {
    font-size: 1.6rem;
    color: #1a1a1a;
    line-height: 1.3;
    letter-spacing: -0.5px;
}

.sdh-promo-banners .promo-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555555 !important;
}

.sdh-promo-banners .promo-watermark-img {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 140px; 
    opacity: 0.15; 
    z-index: 0;
    pointer-events: none;
    transition: transform 0.6s ease, opacity 0.6s ease;
}

.sdh-promo-banners .promo-card:hover .promo-watermark-img {
    transform: scale(1.15) rotate(10deg);
    opacity: 0.25;
}

.sdh-promo-banners .btn-promo-filled {
    background-color: var(--secondary-color);
    color: #ffffff;
    font-weight: 600;
    padding: 10px 24px;
    border-radius: 50px;
    border: 2px solid var(--secondary-color);
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.sdh-promo-banners .btn-promo-filled .btn-icon {
    transition: transform 0.3s ease;
}

.sdh-promo-banners .btn-promo-filled:hover {
    background-color: #e66a00; 
    border-color: #e66a00;
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(255, 120, 0, 0.3);
}

.sdh-promo-banners .btn-promo-filled:hover .btn-icon {
    transform: translateX(5px);
}

.sdh-promo-banners .promo-product-img {
    max-height: 240px; 
    object-fit: contain;
    transition: transform 0.4s ease;
}

.sdh-promo-banners .promo-card:hover .promo-product-img {
    transform: scale(1.05); 
}

@media (max-width: 991px) {
    .sdh-promo-banners .promo-title { font-size: 1.4rem; }
    .sdh-promo-banners .section-title { font-size: 2rem; }
}

@media (max-width: 575px) {
    .sdh-promo-banners .promo-card { text-align: center; }
    .sdh-promo-banners .promo-watermark-img { width: 100px; top: 15px; right: 15px; }
    .sdh-promo-banners .promo-product-img { max-height: 200px; margin: 0 auto; }
    .sdh-promo-banners .col-sm-5 { justify-content: center !important; padding-bottom: 20px !important; }
}

.testimonials-section {
    background-color: var(--bg-light);
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

.testimonials-section .section-title {
    font-size: 2.5rem;
    color: #000;
    letter-spacing: -1px;
}

.testimonial-masonry-grid {
    column-count: 3;
    column-gap: 1.5rem;
    width: 100%;
}

.testimonial-card {
    break-inside: avoid;
    margin-bottom: 1.5rem; 
    background-color: var(--text-white);
    border-radius: 1rem;
    padding: 2rem;
    border: 1px solid #eee;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: inline-block;
    width: 100%;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.testimonial-card .stars {
    color: var(--secondary-color);
    font-size: 1rem;
    letter-spacing: 2px;
}

.testimonial-card .review-text {
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
    font-style: italic;
}

.testimonial-card .divider {
    border-top: 1px solid #eee;
    opacity: 1;
    margin: 1.5rem 0;
}

.testimonial-card .author-avatar {
    width: 45px;
    height: 45px;
    object-fit: cover;
}

@media (max-width: 991px) {
    .testimonial-masonry-grid { 
        column-count: 2; 
    }
    .testimonials-section .section-title { 
        font-size: 2rem; 
    }
}

@media (max-width: 768px) {
    .testimonial-masonry-grid { 
        column-count: 1; 
    }
}

.sdh-about-section {
    background-color: #ffffff;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

.sdh-about-section .section-title {
    font-size: 2.5rem;
    color: #111111;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.about-label {
    background-color: rgba(127, 164, 29, 0.1);
    color: var(--primary-color);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 8px 18px;
    border-radius: 50px;
}

.sdh-about-section .about-text-content p {
    font-size: 1.05rem;
    line-height: 1.7;
    text-align: justify;
}

.sdh-about-section .about-text-content strong {
    color: #111111;
    font-weight: 700;
}

.sdh-about-section .about-image-wrapper {
    z-index: 1;
}

.sdh-about-section .about-decoration {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 80%;
    height: 100%;
    background-color: var(--primary-color);
    border-radius: 1rem;
    z-index: 0;
    opacity: 0.1;
}

.sdh-about-section img {
    border: 5px solid #ffffff;
}

.sdh-about-section .experience-badge {
    position: absolute;
    bottom: -20px;
    right: -10px;
    background: var(--secondary-color);
    padding: 20px 25px;
    border-radius: 12px;
    z-index: 3;
}

.sdh-about-section .badge-icon {
    font-size: 2.5rem;
    color: #ffffff;
}

.sdh-about-section .stat-item {
    border-left: 3px solid rgba(127, 164, 29, 0.3);
    padding-left: 15px;
}

.sdh-about-section .stat-number {
    color: var(--primary-color);
    font-size: 2rem;
}

@media (max-width: 991px) {
    .sdh-about-section .section-title {
        font-size: 2.2rem;
    }
    
    .sdh-about-section .about-decoration {
        top: 20px;
        left: 20px;
        width: 100%;
        height: 90%;
    }
    
    .sdh-about-section .experience-badge {
        bottom: 10px;
        right: 10px;
        padding: 15px 20px;
    }
}

@media (max-width: 576px) {
    .sdh-about-section .stat-number {
        font-size: 1.5rem;
    }
    .sdh-about-section .stat-item {
        padding-left: 10px;
        margin-bottom: 15px;
    }
    .sdh-about-section .experience-badge {
        display: none;
    }
}

.sdh-stats-bg {
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
    overflow: hidden;
    line-height: 1.2;
}

.sdh-stats-bg .stats-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: 0;
}

.sdh-stats-bg .stats-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(11, 97, 46, 0.9) 0%, rgba(127, 164, 29, 0.8) 100%);
    z-index: 1;
}

.sdh-stats-bg .stat-item {
    transition: transform 0.3s ease;
}

.sdh-stats-bg .stat-item:hover {
    transform: translateY(-3px);
}

.sdh-stats-bg .number-wrapper {
    position: relative;
    display: inline-block;
}

.sdh-stats-bg .stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.sdh-stats-bg .crown-icon {
    position: absolute;
    top: -0.2em;
    right: -0.6em;
    font-size: 1.2rem;
    color: gold;
    transform: rotate(18deg);
    text-shadow: 1px 1px 2px rgba(0,0,0,0.4);
    transition: transform 0.3s ease;
}

.sdh-stats-bg .stat-item:hover .crown-icon {
    transform: rotate(0deg) translateY(-3px) scale(1.1);
}

.sdh-stats-bg .stat-label {
    letter-spacing: 1px;
    opacity: 0.9;
    font-size: 0.85rem;
}

@media (max-width: 991px) {
    .sdh-stats-bg .stat-number {
        font-size: 2.2rem;
    }
    .sdh-stats-bg .crown-icon {
        font-size: 1rem;
    }
    .sdh-stats-bg .stat-label {
        font-size: 0.8rem;
    }
}

@media (max-width: 575px) {
    .sdh-stats-bg {
        padding-top: 0.5rem !important;
        padding-bottom: 0.5rem !important;
    }
    .sdh-stats-bg .stat-number {
        font-size: 1.8rem;
    }
    .sdh-stats-bg .crown-icon {
        font-size: 0.8rem;
        right: -0.5em;
    }
    .sdh-stats-bg .stat-label {
        font-size: 0.7rem;
        letter-spacing: 0.5px;
    }
}

.sdh-footer {
    background-color: #f3f8f5;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
    color: #333333;
}

.sdh-footer .footer-logo {
    height: 70px;
    object-fit: contain;
}

.sdh-footer .footer-desc {
    line-height: 1.6;
    font-size: 0.95rem;
    max-width: 90%;
}

@media (min-width: 992px) {
    .sdh-footer .footer-col-left::after {
        content: '';
        position: absolute;
        top: 15%;
        right: 0;
        width: 1px;
        height: 70%;
        background-color: rgba(0, 0, 0, 0.08);
    }
}

.sdh-footer .social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: #ffffff;
    color: #333333;
    border-radius: 8px;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.sdh-footer .social-icon:hover {
    background-color: var(--primary-color);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(127, 164, 29, 0.2);
}

.sdh-footer .footer-heading {
    color: #111111;
    font-size: 1.3rem;
    letter-spacing: -0.5px;
}

.sdh-footer .footer-links li {
    margin-bottom: 0.9rem;
}

.sdh-footer .footer-links a,
.sdh-footer .footer-contact a {
    color: #6c757d;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.sdh-footer .footer-links a:hover,
.sdh-footer .footer-contact a:hover {
    color: var(--primary-color);
}

.sdh-footer .footer-contact li {
    color: #6c757d;
    font-size: 0.95rem;
    align-items: flex-start;
}

.sdh-footer .footer-contact i {
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

.sdh-footer .footer-divider {
    border-color: rgba(0, 0, 0, 0.08);
}

.sdh-footer .footer-bottom-links a {
    color: #6c757d;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.sdh-footer .footer-bottom-links a:hover {
    color: var(--primary-color);
}

.sdh-blog-section {
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

.sdh-blog-section .section-title {
    font-size: 2.2rem;
    color: var(--text-dark);
    line-height: 1.3;
    letter-spacing: -0.5px;
}

.sdh-blog-section .blog-card {
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
}

.sdh-blog-section .blog-card:hover {
    transform: translateY(-5px);
}

.sdh-blog-section .blog-image-wrapper {
    overflow: hidden;
    background-color: #000;
}

.sdh-blog-section .blog-image-wrapper img {
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s ease;
    opacity: 0.95;
}

.sdh-blog-section .blog-card:hover .blog-image-wrapper img {
    transform: scale(1.05);
    opacity: 1;
}

.sdh-blog-section .blog-content {
    margin: -60px 20px 0; 
    position: relative;
    z-index: 2;
    padding: 25px 20px 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.sdh-blog-section .blog-meta {
    font-size: 0.85rem;
}

.sdh-blog-section .separator {
    color: #ccc;
    font-size: 0.8rem;
}

.sdh-blog-section .blog-title {
    font-size: 1.35rem;
    color: var(--text-dark);
    margin-top: 10px;
    margin-bottom: 15px;
    line-height: 1.4;
    transition: color 0.3s ease;
    min-height: 55px; 
}

.sdh-blog-section .blog-card:hover .blog-title {
    color: var(--primary-color);
}

.sdh-blog-section .title-divider {
    width: 35px;
    height: 3px;
    background-color: var(--primary-color);
    margin-bottom: 15px;
}

.sdh-blog-section .content-divider {
    border-color: rgba(0,0,0,0.08);
    margin: auto 0 15px 0;
}

.sdh-blog-section .read-more {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.sdh-blog-section .read-more:hover {
    color: var(--primary-color);
}

.sdh-blog-section .comments {
    font-size: 0.9rem;
}

.sdh-blog-section .icon-green {
    color: var(--primary-color);
}

.sdh-blog-section .icon-orange {
    color: var(--secondary-color);
}

@media (max-width: 991px) {
    .sdh-blog-section .section-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .sdh-blog-section .blog-content {
        margin: -40px 15px 0;
        padding: 20px 15px;
    }
}

.sdh-products-section {
    background-color: var(--bg-light);
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

.sdh-products-section .product-label {
    color: var(--secondary-color);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.sdh-products-section .section-title {
    font-size: 2.2rem;
    color: var(--text-dark);
    letter-spacing: -0.5px;
}

.title-divider {
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

.sdh-products-section .product-card {
    border-radius: 12px;
    border: 1px solid rgba(0,0,0,0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.sdh-products-section .product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.08) !important;
}

.sdh-products-section .product-img-wrapper {
    padding: 30px 20px 10px;
    background: radial-gradient(circle, rgba(127,164,29,0.05) 0%, rgba(255,255,255,0) 70%);
}

.sdh-products-section .product-img-wrapper img {
    height: 180px;
    width: auto;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.sdh-products-section .product-card:hover .product-img-wrapper img {
    transform: scale(1.1);
}

.sdh-products-section .product-title {
    font-size: 1.25rem;
    color: var(--text-dark);
    transition: color 0.3s ease;
}

.sdh-products-section .product-card:hover .product-title {
    color: var(--primary-color);
}

.sdh-products-section .product-desc {
    line-height: 1.6;
    margin-bottom: 0;
}

.sdh-products-section .btn-product {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    font-weight: 600;
    border-radius: 50px;
    padding: 10px 20px;
    transition: all 0.3s ease;
    width: 100%;
}

.sdh-products-section .btn-product:hover {
    background-color: var(--primary-color);
    color: #ffffff;
    border-color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(127, 164, 29, 0.3);
}

@media (max-width: 991px) {
    .sdh-products-section .section-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 767px) {
    .sdh-products-section .product-img-wrapper img {
        height: 150px;
    }
}

.sdh-why-section {
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

.sdh-why-section .section-title {
    font-size: 2.5rem;
    color: var(--text-dark);
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.sdh-why-section .why-label {
    background-color: rgba(255, 120, 0, 0.1);
    color: var(--secondary-color);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 8px 18px;
    border-radius: 50px;
}

.sdh-why-section .feature-row {
    transition: transform 0.3s ease;
    padding: 15px;
    border-radius: 12px;
    margin-left: -15px;
}

.sdh-why-section .feature-row:hover {
    background-color: #ffffff;
    box-shadow: 0 10px 25px rgba(0,0,0,0.03);
    transform: translateX(5px);
}

.sdh-why-section .feature-icon-box {
    width: 65px;
    height: 65px;
    background-color: #ffffff;
    border: 2px solid rgba(127, 164, 29, 0.2);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    transition: all 0.4s ease;
}

.sdh-why-section .feature-row:hover .feature-icon-box {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #ffffff;
    transform: rotateY(180deg);
}

.sdh-why-section .feature-row h4 {
    color: var(--text-dark);
    font-size: 1.3rem;
}

.sdh-why-section .why-image-wrapper {
    z-index: 1;
}

.sdh-why-section .why-decoration {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 70%;
    height: 80%;
    background-color: var(--secondary-color);
    border-radius: 1rem;
    z-index: 0;
    opacity: 0.1;
}

@media (max-width: 991px) {
    .sdh-why-section .section-title {
        font-size: 2.2rem;
    }
    
    .sdh-why-section .why-decoration {
        bottom: 20px;
        right: 20px;
        width: 90%;
        height: 90%;
    }
    
    .sdh-why-section .feature-row {
        margin-left: 0;
        padding: 0;
    }
    
    .sdh-why-section .feature-row:hover {
        background-color: transparent;
        box-shadow: none;
        transform: none;
    }
}

@media (max-width: 576px) {
    .sdh-why-section .feature-icon-box {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    .sdh-why-section .feature-row h4 {
        font-size: 1.15rem;
    }
}

@media (min-width: 1200px) and (max-width: 991px) {
    html {
        font-size: 90%;
    }
}