:root {
    /* Sections 03 */
    --section-03-accent: rgb(255, 127, 69);
    --section-03-accent-dark: rgb(220, 95, 40);
    --section-03-white: #ffffff;
    --section-03-text-dark: #1a1a1a;
    --section-03-text-muted: #555;
    --section-03-bg: #f1f1f1;
    /*--font-heading: 'Oswald', sans-serif;
    --font-body: 'Open Sans', sans-serif;*/
    --section-03-container-max: 1200px;
    --section-03-transition: 0.25s ease;
}

/* ──────────────────────────────────────────
       SECTION 1 — HERO STYLES
    ────────────────────────────────────────── */
.section-hero {
    position: relative;
    width: 100%;
    height: 680px;
    background-image: url('../img/panels-background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
}

.section-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
    100deg,
    rgba(10, 20, 35, 0.80) 0%,
    rgba(10, 20, 35, 0.50) 60%,
    rgba(10, 20, 35, 0.15) 100%
);
}

.section-hero .section-hero-container {
    position: relative;
    max-width: var(--section-03-container-max);
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}

.section-hero-content {
    max-width: 700px;
}

.section-hero-eyebrow {
    display: inline-block;
    /*font-family: var(--font-heading);*/
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--section-03-accent);
    margin-bottom: 18px;
    border-left: 3px solid var(--section-03-accent);
    padding-left: 10px;
}

.section-hero h1 {
    /*font-family: var(--font-heading);*/
    font-size: clamp(32px, 4.5vw, 52px);
    font-weight: 700;
    line-height: 1.15;
    color: var(--section-03-white);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 22px;
}

.section-hero h1 span { color: var(--section-03-accent); }

.section-hero-caption {
    /*font-family: var(--font-body);*/
    font-size: 15px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 38px;
    max-width: 700px;
}

.section-hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    align-items: center;
}

.section-hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    /*font-family: var(--font-heading);*/
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 14px 30px;
    border-radius: 2px;
    cursor: pointer;
    transition: transform var(--section-03-transition), background var(--section-03-transition), box-shadow var(--section-03-transition);
    text-decoration: none;
    border: 2px solid transparent;
}

.section-hero-btn-primary {
    background-color: var(--section-03-accent);
    color: var(--section-03-white);
    border-color: var(--section-03-accent);
}
.section-hero-btn-primary:hover {
    background-color: var(--section-03-accent-dark);
    border-color: var(--section-03-accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(255,127,69,0.40);
}

.section-hero-btn-outline {
    background-color: transparent;
    color: var(--section-03-white);
    border-color: rgba(255,255,255,0.75);
}
.section-hero-btn-outline:hover {
    background-color: rgba(255,255,255,0.12);
    border-color: var(--section-03-white);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .section-hero { height: auto; min-height: 580px; padding: 80px 0; }
}

@media (max-width: 480px) {
    .section-hero-actions { flex-direction: column; align-items: flex-start; }
    .section-hero-btn { width: 100%; justify-content: center; }
}

/* ──────────────────────────────────────────
    SECTION 2 — Stats / Trust
────────────────────────────────────────── */
.stats-section {
    width: 100%;
    background-color: var(--section-03-bg);
    padding: 80px 24px;
}

.stats-section .section-stats-container {
    max-width: var(--section-03-container-max);
    margin: 0 auto;
}

.section-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.section-stat-card {
    background: var(--section-03-white);
    border-radius: 4px;
    padding: 48px 32px;
    text-align: center;
    border-bottom: 4px solid transparent;
    transition: border-color var(--section-03-transition), transform var(--section-03-transition), box-shadow var(--section-03-transition);
    cursor: default;
}

.section-stat-card:hover {
    border-color: var(--section-03-accent);
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}

/*.section-stat-icon {
    color: var(--section-03-accent);
    margin-bottom: 24px;
    display: block;
    font-size: 3rem;
    transition: transform var(--section-03-transition);
}*/

.section-stat-icon {
    color: var(--section-03-accent);   /* keep for <i> fallback */
    fill: var(--section-03-accent);    /* for SVG */
    margin-bottom: 24px;
    /*display: block;*/
    font-size: 3rem;                   /* works on <i> */
    width: 3rem;                       /* for SVG */
    height: 3rem;                      /* for SVG */
    transition: transform var(--section-03-transition);
    /*text-align: center;*/
}

.section-stat-card:hover .section-stat-icon { transform: scale(1.12); }

.section-stat-number {
    /*font-family: var(--font-heading);*/
    font-size: 48px;
    font-weight: 700;
    color: var(--section-03-text-dark);
    line-height: 1;
    margin-bottom: 8px;
    display: block;
}
.section-stat-number span {
    color: var(--section-03-accent);
}

.section-stat-label {
    /*font-family: var(--font-heading);*/
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--section-03-text-muted);
    line-height: 1.5;
}

@media (max-width: 992px) {
    /* SECTIONS MOBILE STYLES */
    .section-stats-grid { grid-template-columns: 1fr; gap: 20px; }
    .section-stat-card { padding: 36px 24px; }
}

@media (max-width: 480px) {
    .section-stat-number { font-size: 38px; }
}

 /* ──────────────────────────────────────────
    SECTION 3 — Products
────────────────────────────────────────── */
.products-section {
    width: 100%;
    background-color: var(--section-03-white);
    padding: 90px 24px;
}

.products-section .section-products-container {
    max-width: var(--section-03-container-max);
    margin: 0 auto;
}

.section-products-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.section-products-text .section-products-tag {
    display: inline-block;
    background-color: rgba(255,127,69,0.10);
    color: var(--section-03-accent);
    /*font-family: var(--font-heading);*/
    font-size: 12px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 2px;
    margin-bottom: 18px;
}

.section-products-text h2 {
    /*font-family: var(--font-heading);*/
    font-size: clamp(28px, 3vw, 42px);
    font-weight: 700;
    text-transform: uppercase;
    color: var(--section-03-accent);
    letter-spacing: 1px;
    margin-bottom: 20px;
    line-height: 1.15;
}

.section-products-text p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--section-03-text-muted);
    margin-bottom: 24px;
}

.section-product-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.section-product-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid #efefef;
    font-size: 14px;
}

.section-product-list li:last-child { border-bottom: none; }

.section-product-list li::before {
    content: '';
    display: inline-block;
    width: 11px;
    height: 11px;
    flex-shrink: 0;
    margin-top: 3px;
    background-color: var(--section-03-accent);
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath d='M438.6 105.4c12.5 12.5 12.5 32.8 0 45.3l-256 256c-12.5 12.5-32.8 12.5-45.3 0l-128-128c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0L160 338.7 393.4 105.4c12.5-12.5 32.8-12.5 45.3 0z'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath d='M438.6 105.4c12.5 12.5 12.5 32.8 0 45.3l-256 256c-12.5 12.5-32.8 12.5-45.3 0l-128-128c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0L160 338.7 393.4 105.4c12.5-12.5 32.8-12.5 45.3 0z'/%3E%3C/svg%3E");
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: contain;
    mask-size: contain;
}

.section-product-list a {
    color: var(--section-03-accent);
    text-decoration: none;
    font-weight: 600;
    transition: color var(--section-03-transition), text-decoration var(--section-03-transition);
}
.section-product-list a:hover {
    color: var(--section-03-accent-dark);
    text-decoration: underline;
}

.section-products-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.section-products-image::before {
    content: '';
    position: absolute;
    width: 85%;
    height: 85%;
    background-color: rgba(255, 127, 69, 0.07);
    border-radius: 4px;
    top: 20px;
    right: -10px;
    z-index: 0;
}

.section-products-image img {
    position: relative;
    z-index: 1;
    max-width: 100%;
    height: auto;
    border-radius: 2px;
    transition: transform var(--section-03-transition);
    display: block;
}
.section-products-image:hover img { transform: scale(1.03); }

@media (max-width: 768px) {
    .section-products-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .section-products-image { order: -1; }
    .section-products-image::before { display: none; }
}

 /* ──────────────────────────────────────────
    SECTION 4 — SERVICES
────────────────────────────────────────── */
.services-section {
    width: 100%;
    background-color: #edf0f2;
    padding: 60px 20px;
}

.section-services-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.section-services-title-col h2 {
    color: #ff7f45;
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.section-services-title-col p {
    color: #797979;
    font-size: 1.1rem;
    line-height: 1.6;
}

.section-service-card {
    padding: 40px 30px;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.section-service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.section-service-card svg {
    font-size: 3rem;
    margin-bottom: 20px;
    /*display: block;*/
}

.section-service-card p {
    font-size: 1rem;
    line-height: 1.5;
    font-weight: 500;
}

.section-service-card-dark {
    background-color: #2f2e50;
    color: white;
}

.section-service-card-dark i {
    color: white;
}

.section-service-card-light {
    background-color: white;
    color: #7d7d7d;
}

.section-service-card-light i {
    color: #1fa69a;
}

.section-service-card-accent {
    background-color: #1fa69a;
    color: white;
}

.section-service-card-accent i {
    color: white;
}

@media (max-width: 768px) {
    .section-services-title-col h2 {
        font-size: 2rem;
    }

    .section-service-card {
        padding: 30px 20px;
    }
}

@media (min-width: 768px) {
    .section-services-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .section-services-title-col {
        grid-column: 1 / -1;
    }
}

@media (min-width: 1024px) {
    .section-services-container {
        grid-template-columns: 1.2fr 1fr 1fr 1fr;
        align-items: stretch;
    }
    
    .section-services-title-col {
        grid-column: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
}

/* ──────────────────────────────────────────
    SECTION 5 — ADVANTAGES
────────────────────────────────────────── */
.advantages-section {
    width: 100%;
    background-color: white;
    padding: 60px 20px;
}

.section-advantages-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

.section-advantages-content h2 {
    color: #ff7f45;
    font-size: 2rem;
    margin-bottom: 30px;
    font-weight: 700;
}

.section-advantages-content p {
    color: #666;
    margin-bottom: 20px;
}


/* Accordion Styles */
.section-advantages-accordion {
    width: 100%;
}

.section-advantages-accordion a { color: #ff7f45; text-decoration: none; }
.section-advantages-accordion a:hover { text-decoration: underline; }

.section-advantages-accordion-item {
    border-bottom: 1px solid #e0e0e0;
    margin-bottom: 10px;
}

.section-advantages-accordion-header {
    width: 100%;
    padding: 20px;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s ease;
}

.section-advantages-accordion-header:hover {
    color: #ff7f45;
}

.section-advantages-accordion-header::after {
    content: '+';
    font-size: 1.5rem;
    color: #ff7f45;
    transition: transform 0.3s ease;
}

.section-advantages-accordion-item.active .section-advantages-accordion-header::after {
    content: '−';
}

.section-advantages-accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.section-advantages-accordion-item.active .section-advantages-accordion-content {
    max-height: 350px;
}

.section-advantages-accordion-body {
    padding: 0 20px 20px;
    color: #666;
    line-height: 1.6;
}

.section-advantages-advantages-image {
    width: 100%;
    height: 100%;
    min-height: 400px;
}

.section-advantages-advantages-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

@media (min-width: 768px) {
    .section-advantages-container {
        grid-template-columns: 1fr 1fr;
        gap: 60px;
    }
}

@media (max-width: 768px) {
    .section-advantages-content h2 {
        font-size: 1.6rem;
    }
}

/* ──────────────────────────────────────────
    SECTION 6 - CTA
────────────────────────────────────────── */
.cta-section {
    width: 100%;
    background-image: url('../img/panels-background.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 80px 20px;
    position: relative;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

.section-cta-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    position: relative;
    z-index: 1;
    align-items: center;
}

.section-cta-content h2 {
    color: #ff7f45;
    font-size: 2.2rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.section-cta-content p,
.section-cta-content-right p {
    color: white;
    font-size: 1.1rem;
    line-height: 1.6;
}

.section-cta-content-right p {
    margin-bottom: 20px;
    text-align: center;
}

.section-cta-content a {
    color: #e37e4a;
    text-decoration: none;
    transition: color 0.3s ease;
}

.section-cta-content a:hover {
    color: #c96a3a;
}

.section-cta-button-col {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.section-cta-button {
    padding: 15px 40px;
    border: 2px solid #ff7f45;
    background-color: transparent;
    color: #ff7f45;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-cta-button:hover {
    background-color: #ff7f45;
    color: white;
    transform: scale(1.05);
}

.section-cta-content-right {
    margin-top: 20px;
    justify-content: center;
    align-items: center;
    position: relative;
}

/* Vertical separator line for desktop */
@media (min-width: 768px) {
    .section-cta-container {
        grid-template-columns: 2fr 1fr;
    }

    .section-cta-button-col::before,
    .section-cta-content-right::before {
        content: '';
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 1px;
        height: 80px;
        background-color: rgba(255, 255, 255, 0.4);
    }

    .section-cta-button-col {
        padding-left: 40px;
        justify-content: flex-start;
    }
}

@media (max-width: 768px) {
    .section-cta-content h2 {
        font-size: 1.8rem;
    }
}

/* ──────────────────────────────────────────
    SECTION 7 - PURPOSE
────────────────────────────────────────── */
.section-purpose {
    width: 100%;
    background-color: #edf0f2;
    padding: 64px 0;
}

.section-purpose-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-purpose .section-purpose-inner {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.section-purpose h2 {
    /*font-family: 'Trebuchet MS', sans-serif;*/
    font-size: clamp(1.35rem, 2.5vw, 1.75rem);
    font-weight: 700;
    color: #ff7f45;
    margin-bottom: 20px;
    text-align: left;
    line-height: 1.35;
}

.section-purpose p,
.section-purpose ul {
    color: #797979;
    font-size: 1rem;
    text-align: left;
    /*max-width: 820px;*/
}

.section-purpose p { margin-bottom: 14px; }

.section-purpose ul {
    list-style: none;
    margin: 0 0 14px 0;
    padding: 0;
}

.section-purpose ul li {
    padding: 5px 0 5px 22px;
    position: relative;
}

.section-purpose ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ff7f45;
}

/* ──────────────────────────────────────────
    SECTION 8 - GALLERY
────────────────────────────────────────── */
.section-gallery {
    width: 100%;
    background-color: #ffffff;
    padding: 64px 0;
}

.section-gallery-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-gallery h2 {
    /*font-family: 'Trebuchet MS', sans-serif;*/
    font-size: clamp(1.35rem, 2.5vw, 1.75rem);
    font-weight: 700;
    color: #ff7f45;
    text-align: center;
    margin-bottom: 36px;
}

.section-gallery .section-gallery-img-wrap {
    text-align: center;
}

.section-gallery .section-gallery-img-wrap img {
    width: 100%;
    max-width: 1050px;
    height: auto;
    aspect-ratio: 1050 / 600;
    object-fit: cover;
    display: inline-block;
    border-radius: 4px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.10);
}

/* ──────────────────────────────────────────
    SECTION 9 - TESTIMONIALS
────────────────────────────────────────── */
.section-testimonials {
    width: 100%;
    background-color: #ffffff;
    padding: 64px 0;
    border-top: 1px solid #edf0f2;
}

.section-testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-testimonials-slider-outer {
    display: flex;
    align-items: center;
    gap: 12px;
}

.section-testimonials-slider-arrow {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity .2s;
    /*color: inherit;*/ /* Inherits text color, or set a specific color */
    color: #ccc;
    font-size: 24px; /* Adjust size as needed */
}

.section-testimonials-slider-arrow:hover { opacity: .7; }

/*.section-testimonials-slider-arrow img { width: 40px; height: auto; display: block; }*/

/* Optional: Style the icon directly */
.section-testimonials-slider-arrow svg {
    display: block;
}

.section-testimonials-slider-track {
    flex: 1;
    overflow: hidden;
    min-width: 0;
}

.section-testimonials-slider-inner {
    display: flex;
    transition: transform .5s ease;
}

.section-testimonials-slide {
    min-width: 100%;
    padding: 8px 16px 8px;
    text-align: center;
}

.section-testimonials-quote-icon {
    display: inline-block;
    margin-bottom: 20px;
}

.section-testimonials-quote-icon svg {
    width: 40px;
    height: 40px;
    fill: #ff7f45;
    opacity: .85;
}

.section-testimonials-slide-text {
    font-size: clamp(0.95rem, 1.8vw, 1.1rem);
    color: #555;
    font-style: italic;
    line-height: 1.8;
    max-width: 780px;
    margin: 0 auto 20px;
}

.section-testimonials-slide-author {
    font-size: 0.875rem;
    font-weight: 600;
    color: #ff7f45;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.section-testimonials-slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 28px;
}

.section-testimonials-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    border: none;
    padding: 0;
    transition: background .3s, transform .2s;
}

.section-testimonials-dot.active {
    background: #ff7f45;
    transform: scale(1.3);
}

/* ──────────────────────────────────────────
    SECTION 10 - CLIENTS MAP
────────────────────────────────────────── */
.section-map {
    width: 100%;
    background-color: #eceff1;
    padding: 64px 0;
}

.section-map-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-map h2 {
    /*font-family: 'Trebuchet MS', sans-serif;*/
    font-size: clamp(1.35rem, 2.5vw, 1.75rem);
    font-weight: 700;
    color: #ff7f45;
    text-align: center;
    margin-bottom: 36px;
}

.section-map .section-map-img-wrap {
    text-align: center;
}

.section-map .section-map-img-wrap img {
    width: 100%;
    max-width: 1024px;
    height: auto;
    aspect-ratio: 1024 / 664;
    object-fit: cover;
    display: inline-block;
    border-radius: 4px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.10);
}

/* ──────────────────────────────────────────
    SECTION 11 - BLOG ARTICLES
────────────────────────────────────────── */
.blog-section {
    background-color: #edf0f2;
    padding: 60px 0;
}

.section-blog-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.blog-section h2 {
    text-align: center;
    color: #ff7f45;
    font-size: 32px;
    margin-bottom: 40px;
}

.section-blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.section-blog-card {
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.section-blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.section-blog-card h2 {
    text-align: left;
    font-size: 20px;
    margin-bottom: 10px;
}

.section-blog-card h2 a {
    color: black;
    text-decoration: none;
    transition: color 0.3s ease;
}

.section-blog-card h2 a:hover {
    color: #ff7f45;
}

.section-blog-date {
    display: inline-block;
    color: #ff7f45;
    font-size: 14px;
    margin-bottom: 15px;
    text-decoration: none;
}

.section-blog-date:hover {
    text-decoration: underline;
}

.section-blog-excerpt {
    color: #888;
    margin-bottom: 20px;
    line-height: 1.6;
}

.section-blog-btn-primary {
    display: inline-block;
    background-color: #42BCE2;
    color: white;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    font-weight: 500;
}

.section-blog-btn-primary:hover {
    background-color: #2a9bc4;
    transform: scale(1.02);
}

@media (max-width: 768px) {
    .section-blog-grid {
        grid-template-columns: 1fr;
    }

    .blog-section h2 {
        font-size: 26px;
    }
}

/* ──────────────────────────────────────────
    SECTION 12 - PAGE HEADER SECTION
    TO DO FOR LATER: REMOVE .hero-page-section
    css styles
────────────────────────────────────────── */
 .hero-page-section,
 .page-header-section {
    position: relative;
    padding: 100px 0;
    background-image: url('../img/panel-header.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-page-section::before,
.page-header-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
}

.section-hero-page-container,
.page-header-section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-hero-page-content,
.page-header-section-content {
    position: relative;
    z-index: 1;
}

.hero-page-section h1,
.page-header-section h1 {
    text-align: left;
    color: white;
    font-size: 42px;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.page-header-section p {
    text-align: left;
    margin-bottom: 30px;
    color: white;
}

.section-hero-page-breadcrumbs,
.page-header-section-breadcrumbs {
    text-align: left;
    color: white;
    font-size: 16px;
}

.section-hero-page-breadcrumbs a,
.page-header-section-breadcrumbs a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.section-hero-page-breadcrumbs a:hover,
.page-header-section-breadcrumbs a:hover {
    color: #ff7f45;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .hero-page-section h1,
    .page-header-section h1 {
        font-size: 32px;
    }
}

/* ──────────────────────────────────────────
    SECTION 13 — ABOUT PRODUCTS
────────────────────────────────────────── */
.about-products-section {
    background-color: #edf0f2;
    padding: 60px 0;
}

.section-about-products-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-about-products-grid {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 50px;
    align-items: center;
}

.section-about-products-image img {
    width: 400px;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.section-about-products-content h2 {
    text-align: left;
    color: #ff7f45;
    font-size: 28px;
    margin-bottom: 20px;
}

.section-about-products-content p {
    text-align: left;
    color: #797979;
    font-size: 16px;
    line-height: 1.8;
}

@media (max-width: 992px) {
    .section-about-products-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .section-about-products-image img {
        width: 100%;
        max-width: 400px;
        height: auto;
        margin: 0 auto;
        display: block;
    }

    .section-about-products-content h2,
    .section-about-products-content p {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .section-about-products-content h2 {
        font-size: 24px;
    }
}

.section-about-products-content ul {
    color: #797979;
    font-size: 1rem;
    text-align: left;
    max-width: 820px;
    list-style: none;
    margin: 0 0 14px 0;
    padding: 0;
}

.section-about-products-content ul li {
    padding: 5px 0 5px 22px;
    position: relative;
}

.section-about-products-content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ff7f45;
}

.section-about-products-content a {
    color: #e37e4a;
    text-decoration: none;
    transition: color 0.3s ease;
}

.section-about-products-content a:hover {
    color: #c96a3a;
}

/* ──────────────────────────────────────────
    SECTION 14 — CTA 02 
────────────────────────────────────────── */
.cta-02-section {
    background-color: white;
    padding: 60px 0;
}

.section-cta-02-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-cta-02-grid {
    display: grid;
    grid-template-columns: 1fr 270px;
    gap: 50px;
    align-items: center;
}

.section-cta-02-content h2 {
    text-align: left;
    color: #ff7f45;
    font-size: 28px;
    margin-bottom: 20px;
}

.section-cta-02-content p {
    text-align: left;
    color: #797979;
    font-size: 16px;
    margin-bottom: 25px;
    line-height: 1.8;
}

.section-cta-02-btn {
    display: inline-block;
    background-color: #ff7f45;
    color: white;
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
}

.section-cta-02-btn:hover {
    background-color: #e56a32;
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(255, 127, 69, 0.4);
}

.section-cta-02-image img {
    width: 270px;
    height: 270px;
    object-fit: contain;
}

@media (max-width: 992px) {
    .section-cta-02-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .section-cta-02-image img {
        margin: 0 auto;
        display: block;
    }

    .section-cta-02-content h2,
    .section-cta-02-content p {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .section-cta-02-content h2 {
        font-size: 24px;
    }
}

/* ──────────────────────────────────────────
    SECTION 15 — SANDWICH CARDS
────────────────────────────────────────── */
.section-sandwich-cards {
  width: 100%;
  padding: 3rem 1rem;
}

.section-sandwich-cards-container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.section-sandwich-cards-bg-light {
  background-color: #edf0f2;
}

.section-sandwich-cards-title {
  text-align: center;
  color: #ff7f45;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: -0.3px;
}

.section-sandwich-cards-subtext {
  text-align: center;
  color: #797979;
  max-width: 850px;
  margin: 0 auto 2.5rem auto;
  font-size: 1rem;
  line-height: 1.5;
}

.section-sandwich-cards-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.8rem;
  justify-content: center;
}

.section-sandwich-cards-card {
  flex: 1 1 200px;
  min-width: 200px;
  max-width: 100%;
  background-color: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
}

.section-sandwich-cards-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.1);
}

.section-sandwich-cards-card-title {
  background-color: #e57147;
  color: white;
  padding: 0.9rem 0.5rem;
  text-align: center;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.3px;
}

.section-sandwich-cards-card-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  background-color: #f4f6f9;
}

.section-sandwich-cards-card-text {
  background-color: #F1F3F5;
  color: #173d50;
  padding: 1rem;
  flex-grow: 1;
  font-size: 0.9rem;
  line-height: 1.4;
}

.section-sandwich-cards-card-btn {
  background-color: #e57147;
  color: white;
  border: none;
  padding: 0.8rem 1rem;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background-color 0.2s ease;
  width: 100%;
  text-align: center;
  font-family: inherit;
  letter-spacing: 0.3px;
}

.section-sandwich-cards-card-btn:hover {
  background-color: #c95d38;
}

@media (max-width: 768px) {
  .section-sandwich-cards {
    padding: 2rem 1rem;
  }
  .section-sandwich-cards-title {
    font-size: 1.6rem;
  }
  .section-sandwich-cards-grid {
    gap: 1.2rem;
  }
  .section-sandwich-cards-card {
    min-width: 220px;
    flex: 1 1 220px;
  }
}

@media (max-width: 480px) {
  .section-sandwich-cars-card {
    min-width: 100%;
  }
}

/* ──────────────────────────────────────────
    SECTION 16 — CERTIFICATES
────────────────────────────────────────── */
.section-certificates {
  width: 100%;
  padding: 3rem 1rem;
}

.section-certificates-container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.section-certificates-title {
  text-align: center;
  color: #ff7f45;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: -0.3px;
}

.section-certificates-subtext {
  text-align: center;
  color: #797979;
  max-width: 850px;
  margin: 0 auto 2.5rem auto;
  font-size: 1rem;
  line-height: 1.5;
}

.section-certificates-inline-images {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin: 2rem 0 1.5rem 0;
}

.section-certificates-inline-images img {
  max-width: 250px; /*160px;*/
  height: auto;
  object-fit: contain;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease;
  padding: 0.5rem;
}

.section-certificates-inline-images img:hover {
  transform: scale(1.02);
}

.section-certificates-certificates-grid .section-certificates-inline-images img {
  max-width: 180px;
  max-height: 240px;
  object-fit: cover;
  border-radius: 10px;
  background: #f8fafc;
}

.section-certificates-link-cert {
  text-align: center;
  margin-top: 1rem;
}

.section-certificates-link-cert a, a.section-certificates-link-cert {
  color: #e37e4a;
  font-weight: 600;
  text-decoration: none;
  font-size: 1rem;
  border-bottom: 1px dashed #e37e4a;
  transition: color 0.2s;
}

.section-certificates-link-cert a:hover {
  color: #c95d38;
  border-bottom-color: #c95d38;
}

@media (max-width: 768px) {
    .section-certificates {
        padding: 2rem 1rem;
    }
    .section-certificates-title {
        font-size: 1.6rem;
    }
    .section-certificates-inline-images img {
        max-width: 120px;
    }
    .section-certificates-grid .section-certificates-inline-images img {
        max-width: 130px;
    }
}

@media (max-width: 480px) {
    .section-certificates-inline-images {
        gap: 1rem;
    }
}

/* ──────────────────────────────────────────
    SECTION 17 — PARTNERS
────────────────────────────────────────── */
.section-partners {
  width: 100%;
  padding: 3rem 1rem;
}

.section-partners-container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.section-partners-title {
  text-align: center;
  color: #ff7f45;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: -0.3px;
}

.section-partners-subtext {
  text-align: center;
  color: #797979;
  max-width: 850px;
  margin: 0 auto 2.5rem auto;
  font-size: 1rem;
  line-height: 1.5;
}

.section-partners-inline-images {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin: 2rem 0 1.5rem 0;
}

.section-partners-inline-images img {
  max-width: 170px; /*160px;*/
  height: auto;
  object-fit: contain;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease;
  padding: 0.5rem;
  border: 0.5px solid #42BCE2;
}

.section-partners-inline-images img:hover {
  transform: scale(1.02);
}

.section-partners-partner-logos .section-partners-inline-images img {
  max-width: 140px;
  background: #fff;
  padding: 0.6rem;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.05));
}

@media (max-width: 768px) {
    .section-partners {
        padding: 2rem 1rem;
    }
    .section-partners-title {
        font-size: 1.6rem;
    }
    .section-partners-inline-images img {
        max-width: 120px;
    }
    .section-partners-partner-logos .section-partners-inline-images img {
        max-width: 110px;
    }
}

@media (max-width: 480px) {
    .section-partners-inline-images {
        gap: 1rem;
    }
}

.section-partners a {
    color: #e37e4a;
    text-decoration: none;
    transition: color 0.3s ease;
}

.section-partners a:hover {
    color: #c96a3a;
}

/* ──────────────────────────────────────────
    SECTION 18 — CTA 03
────────────────────────────────────────── */
.section-cta-03 {
  width: 100%;
  padding: 3rem 1rem;
}

.section-cta-03-container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.section-cta-03-title {
  text-align: center;
  color: #ff7f45;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: -0.3px;
}

.section-cta-03-subtext {
  text-align: center;
  color: #797979;
  max-width: 850px;
  margin: 0 auto 2.5rem auto;
  font-size: 1rem;
  line-height: 1.5;
}

.section-cta-03-button-wrapper {
  text-align: center;
  margin-top: 2rem;
}

.section-cta-03-btn-primary {
  background-color: #e57147;
  color: white;
  border: none;
  padding: 1rem 2.2rem;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 60px;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: inherit;
  letter-spacing: 0.5px;
  box-shadow: 0 6px 12px rgba(229, 113, 71, 0.25);
}

.section-cta-03-btn-primary:hover {
  background-color: #c95d38;
  transform: scale(1.02);
  box-shadow: 0 8px 18px rgba(229, 113, 71, 0.35);
}
@media (max-width: 768px) {
    .section-cta-03 {
        padding: 2rem 1rem;
    }
    .section-cta-03-title {
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .section-03-btn-primary {
        padding: 0.8rem 1.8rem;
        font-size: 1rem;
    }
}

/* ──────────────────────────────────────────
    SECTION 19 - 2 COLUMN 10
────────────────────────────────────────── */
.section-2-column-10 {
    background-color: #ffffff;
    padding: 60px 0;
}

.section-2-column-10-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-2-column-10 .section-2-column-10-container {
    display: flex;
    align-items: center;
    gap: 40px;
}

.section-2-column-10 .section-2-column-10-column-text h2 {
    /*font-family: 'Trebuchet MS', sans-serif;*/
    font-size: clamp(1.35rem, 2.5vw, 1.75rem);
    font-weight: 700;
    color: #ff7f45;
    text-align: left;
    margin-bottom: 20px;
}

.section-2-column-10 .section-2-column-10-column-text {
    flex: 1;
    font-size: 16px;
    line-height: 1.8;
}


.section-2-column-10-column-text p,
.section-2-column-10 ul {
    color: #797979;
}

.section-2-column-10-column-text a {
    color: #e37e4a;
    text-decoration: none;
    transition: color 0.3s ease;
}

.section-2-column-10-column-text a:hover {
    color: #c96a3a;
}

.section-2-column-10 ul {
    list-style: none;
    padding-left: 0;
}

.section-2-column-10 ul li {
    position: relative;
    padding-left: 25px;
    margin: 12px 0;
    font-size: 16px;
    line-height: 1.6;
}

.section-2-column-10 ul li::before {
    content: "—";
    position: absolute;
    left: 0;
    color: #e37e4a;
}

.section-2-column-10 .section-2-column-10-column-image {
    flex: 0 0 auto;
}

.section-2-column-10 .section-2-column-10-column-image img {
    width: 490px;
    height: 346px;
    object-fit: cover;
    max-width: 100%;
    display: block;
}

@media (max-width: 768px) {
    .section-2-column-10 .section-2-column-10-container {
        flex-direction: column;
    }

    .section-2-column-10 .section-2-column-10-column-image img {
        width: 100%;
        height: auto;
    }
}

@media (max-width: 480px) {
    .section-2-column-10-container {
        padding: 0 15px;
    }
}

/* ──────────────────────────────────────────
    SECTION 20 - 1 COLUMN 10
────────────────────────────────────────── */
.section-1-column-10 {
    background-color: #edf0f2;
    padding: 60px 0;
}

.section-1-column-10-container  {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-1-column-10 h2 {
    color: #ff7f45;
    text-align: center;
    font-size: 31px;
    margin-bottom: 20px;
    font-weight: 600;
}

.section-1-column-10 p {
    text-align: center;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 30px;
}

.section-1-column-10-link {
  text-align: center;
  margin-top: 1.5rem;
}

.section-1-column-10 a{
  color: #e37e4a;
  font-weight: 600;
  text-decoration: none;
  font-size: 1rem;
  border-bottom: 1px dashed #e37e4a;
  transition: color 0.2s;
}

.section-1-column-10 a:hover {
  color: #c95d38;
  border-bottom-color: #c95d38;
}

.section-1-column-10 img {
    width: 100%;
    max-width: 1050px;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 4px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.10);
}

.section-1-column-10 a {
color: #e37e4a;
text-decoration: none;
transition: color 0.3s ease;
}

.section-1-column-10 a:hover {
color: #c96a3a;
}

/* ──────────────────────────────────────────
    SECTION 21 - 2 COLUMN 11
────────────────────────────────────────── */
.section-2-column-11 {
    background-color: #f5f5f5;
    padding: 60px 0;
}

.section-2-column-11-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-2-column-11 .section-2-column-11-container {
    display: flex;
    align-items: flex-start;
    gap: 40px;
}

.section-2-column-11 .section-2-column-11-column-title {
    flex: 1;
}

.section-2-column-11 .section-2-column-11-column-title h2 {
    color: #ff7f45;
    font-size: 32px;
    font-weight: 600;
}

.section-2-column-11 .section-2-column-11-column-text {
    flex: 1;
}

.section-2-column-11 .section-2-column-11-column-text p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.section-2-column-11-column-text a {
    color: #e37e4a;
    text-decoration: none;
    transition: color 0.3s ease;
}

.section-2-column-11-column-text a:hover {
    color: #c96a3a;
}

.section-2-column-11 ul {
    list-style: none;
    padding-left: 0;
}

.section-2-column-11 ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    font-size: 16px;
    line-height: 1.6;
}

.section-2-column-11 ul li::before {
    content: "—";
    position: absolute;
    left: 0;
    color: #e37e4a;
}

/* Responsive Design */
@media (max-width: 768px) {
    .section-2-column-11 .section-2-column-11-container {
        flex-direction: column;
    }
    
    .section-2-column-11 .section-2-column-11-column-title h2 {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .section-2-column-11-container {
        padding: 0 15px;
    }
    
    .section-2-column-11 .section-2-column-11-column-title h2 {
        font-size: 24px;
    }
}

/* ──────────────────────────────────────────
    SECTION 22 - 1 COLUMN 11
────────────────────────────────────────── */
.section-1-column-11 {
    background-color: #ffffff;
    padding: 60px 0;
}

.section-1-column-11-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}


.section-1-column-11 h2 {
    color: #ff7f45;
    text-align: center;
    font-size: 32px;
    margin-bottom: 30px;
    font-weight: 600;
}

.section-1-column-11 p {
    text-align: left;
    color: #797978;
    font-size: 16px;
    line-height: 1.8;
    max-width: 900px;
    margin: 20px auto;
}

@media (max-width: 480px) {
    .section-1-column-11 {
        padding: 0 15px;
    }

    .section-1-column-11 h2 {
        font-size: 24px;
    }
}

.section-1-column-11 ul {
    color: #797979;
    font-size: 1rem;
    text-align: left;
    max-width: 820px;
    list-style: none;
    margin: 0 0 14px 0;
    padding: 0;
}

.section-1-column-11 ul li {
    padding: 5px 0 5px 22px;
    position: relative;
}

.section-1-column-11 ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ff7f45;
}

.section-1-column-11 a {
    color: #e37e4a;
    text-decoration: none;
    transition: color 0.3s ease;
}

.section-1-column-11 a:hover {
    color: #c96a3a;
}

/* ──────────────────────────────────────────
    SECTION 23 - 2 COLUMN 12
────────────────────────────────────────── */
.section-2-column-12 {
    background-color: #ffffff;
    padding: 60px 0;
}

.section-2-column-12-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-2-column-12 .section-2-column-12-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.section-2-column-12-product-card {
    box-shadow: 0 1px 21px rgba(0,0,0,.21);
    padding: 20px;
    text-align: center;
    flex: 0 0 45%;
    max-width: 500px;
}

.section-2-column-12-product-card img {
    height: 400px;
    width: auto;
    max-width: 100%;
    object-fit: cover;
    display: block;
    margin: 0 auto 20px;
}

.section-2-column-12-product-card h3 {
    color: #444;
    text-transform: uppercase;
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: 600;
    text-align: center;
}

.section-2-column-12-product-card .section-2-column-12-btn {
    display: inline-block;
    color: #ffffff;
    background-color: #ff7f45;
    text-transform: uppercase;
    padding: 12px 30px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.section-2-column-12-product-card .section-2-column-12-btn:hover {
    background-color: #e06a35;
}

/* Responsive Design */
@media (max-width: 768px) {
    .section-2-column-12-product-card {
        flex: 0 0 100%;
    }

    .section-2-column-12-product-card img {
        height: auto;
        max-height: 400px;
    }
}

@media (max-width: 480px) {
    .section-2-column-12-container {
        padding: 0 15px;
    }

    .section-2-column-12-product-card img {
        height: auto;
    }
}

/* ──────────────────────────────────────────
    SECTION 24 - 2 COLUMN 13
────────────────────────────────────────── */
.section-2-column-13 {
    background-color: #ffffff;
    padding: 60px 0;
}

.section-2-column-13-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-2-column-13 .section-2-column-13-container {
    display: flex;
    align-items: center;
    gap: 40px;
}

.section-2-column-13 .section-2-column-13-column-text {
    flex: 1;
}

.section-2-column-13 .section-2-column-13-column-text p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.section-2-column-13 a {
    color: #e37e4a;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.section-2-column-13 a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

.section-2-column-13 ul {
    list-style: none;
    padding-left: 0;
}

.section-2-column-13 ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    font-size: 16px;
    line-height: 1.6;
}

.section-2-column-13 ul li::before {
    content: "—";
    position: absolute;
    left: 0;
    color: #e37e4a;
}

.section-2-column-13 .section-2-column-13-column-image {
    flex: 0 0 auto;
}

.section-2-column-13 .section-2-column-13-column-image img {
    max-width: 100%;
    height: auto;
    display: block;
}
/* Responsive Design */
@media (max-width: 768px) {
    .section-2-column-13 .section-2-column-13-container {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .section-2-column-13-container {
        padding: 0 15px;
    }
}

/* ──────────────────────────────────────────
    SECTION 25 - CTA 04
────────────────────────────────────────── */
.section-cta-04 {
    background-color: #ffffff;
    padding: 60px 0;
}

.section-cta-04-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-cta-04 p {
    text-align: center;
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.section-cta-04 ul {
    list-style: none;
    padding-left: 0;
    text-align: center;
    margin-bottom: 40px;
}

.section-cta-04 ul li {
    position: relative;
    padding-left: 0;
    margin-bottom: 12px;
    font-size: 16px;
    line-height: 1.6;
}

.section-cta-04 .section-cta-04-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.section-cta-04 .section-cta-04-cta-btn {
    display: inline-block;
    background-color: #e37e4a;
    color: #ffffff;
    font-size: 20px;
    padding: 15px 40px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s ease;
    text-align: center;
}

.section-cta-04 .section-cta-04-cta-btn:hover {
    background-color: #c96a3a;
}

/* Responsive Design */
@media (max-width: 768px) {
    .section-cta-04 .section-cta-04-cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .section-cta-04 .section-cta-04-cta-btn {
        width: 100%;
        max-width: 400px;
    }
}

@media (max-width: 480px) {
    .section-cta-04-container {
        padding: 0 15px;
    }
}

/* ──────────────────────────────────────────
    SECTION 26 — 2 COLUMN 14
────────────────────────────────────────── */
.section-2-column-14 {
    background-color: #ffffff;
    padding: 60px 0;
}       

.section-2-column-14-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-2-column-14 img {
    max-width: 100%;
    height: auto;
    display: block;
}

.section-2-column-14 h2, .section-2-column-14 h3 {
    color: #ff7f45;
    font-weight: 600;
    line-height: 1.3;
}

.section-2-column-14 h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.section-2-column-14 h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.section-2-column-14 p {
    margin-bottom: 1rem;
}

.section-2-column-14 ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.section-2-column-14 li {
    margin-bottom: 0.5rem;
}

.section-2-column-14 a {
    color: #e37e4a;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.section-2-column-14 a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

.section-2-column-14 .section-2-column-14-text-center {
    text-align: center;
}

.section-2-column-14-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 40px;
    gap: 30px;
}

.section-2-column-14-row:last-child {
    margin-bottom: 0;
}

.section-2-column-14-col {
    flex: 1 1 45%;
    min-width: 300px;
}

.section-2-column-14-col img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

@media (max-width: 768px) {
    .section-2-column-14 h2 {
        font-size: 1.6rem;
    }

    .section-2-column-14 h3 {
        font-size: 1.2rem;
    }

    .section-2-column-14-row {
        flex-direction: column;
    }

    .section-2-column-14-col {
        flex: 1 1 100%;
        min-width: auto;
    }

    /* Alternate image/text order on mobile */
    .section-2-column-14-row:nth-child(2) .section-2-column-14-col:first-child {
        order: 2;
    }

    .section-2-column-14-row:nth-child(2) .section-2-column-14-col:last-child {
        order: 1;
    }
}

@media (max-width: 480px) {
    .section-2-column-14-container {
        padding: 0 15px;
    }

    .section-2-column-14 {
        padding: 40px 0;
    }
}

/* ──────────────────────────────────────────
    SECTION 27 - GALLERY 02
────────────────────────────────────────── */
.section-gallery-02 {
    background-color: #ffffff;
    padding: 60px 0;
}

.section-gallery-02-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-gallery-02 img {
    max-width: 100%;
    height: auto;
    display: block;
}

.section-gallery-02-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.section-gallery-02-item {
    cursor: pointer;
    overflow: hidden;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.section-gallery-02-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.section-gallery-02-item img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.section-gallery-02-item:hover img {
    transform: scale(1.05);
}

/* Lightbox */
.section-gallery-02-lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.section-gallery-02-lightbox.active {
    display: flex;
}

.section-gallery-02-lightbox-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 90%;
    max-height: 90%;
}

.section-gallery-02-lightbox-content img {
    max-width: 100%;
    max-height: 80vh; /* Adjust as needed */
    border-radius: 4px;
}

#section-gallery-02-lightbox-alt {
    text-align: center;
    color: white;
    padding: 10px;
    margin-top: 10px;
    max-width: 100%;
}

.section-gallery-02-lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #fff;
    font-size: 2.5rem;
    cursor: pointer;
    line-height: 1;
}

@media (max-width: 992px) {
    .section-gallery-02-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .section-gallery-02 h2 {
        font-size: 1.6rem;
    }

    .section-gallery-02 h3 {
        font-size: 1.2rem;
    }

    .section-gallery-02-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .section-gallery-02-item img {
        height: 140px;
    }
}

@media (max-width: 480px) {
    .section-gallery-02-container {
        padding: 0 15px;
    }

    .section-gallery-02 {
        padding: 40px 0;
    }

    .section-gallery-02-grid {
        grid-template-columns: 1fr;
    }
}

/* ──────────────────────────────────────────
    SECTION 28 - CTA 05
────────────────────────────────────────── */
.section-cta-05 {
    background-color: #edf0f2;
    padding: 60px 0;
}

.section-cta-05-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-cta-05 a {
    color: #e37e4a;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.section-cta-05 a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

.section-cta-05 h2, h3 {
    color: #ff7f45;
    font-weight: 600;
    line-height: 1.3;
}

.section-cta-05 h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.section-cta-05 h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.section-cta-05 p, 
.section-cta-05 b {
    margin-bottom: 1rem;
    color: #333333;
}

.section-cta-05-order .section-cta-05-text-left {
    text-align: left;
}

.section-cta-05-btn-center {
    text-align: center;
    margin-top: 30px;
}

.section-cta-05-btn-primary {
    display: inline-block;
    background-color: #e37e4a;
    color: #ffffff;
    padding: 14px 40px;
    font-size: 1.1rem;
    font-weight: 500;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.section-cta-05-btn-primary:hover {
    background-color: #d06a3a;
    transform: translateY(-2px);
    text-decoration: none;
    opacity: 1;
}

@media (max-width: 768px) {
    .section-cta-05 h2 {
        font-size: 1.6rem;
    }
    .section-cta-05h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .section-cta-05-container {
        padding: 0 15px;
    }

    .section-cta-05-btn-primary {
        width: 100%;
        padding: 14px 20px;
    }
}

/* ──────────────────────────────────────────
    SECTION 29 — 1 COLUMN 12
────────────────────────────────────────── */
.section-1-column-12 {
    background-color: #ffffff;
    padding: 60px 0;
}

.section-1-column-12-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-1-column-12 a {
    color: #e37e4a;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.section-1-column-12 a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

.section-1-column-12 img {
    max-width: 100%;
    height: auto;
    display: block;
}

.section-1-column-12 h2, .section-1-column-12 h3 {
    color: #ff7f45;
    font-weight: 600;
    line-height: 1.3;
}

.section-1-column-12 h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.section-1-column-12 h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.section-1-column-12 p {
    margin-bottom: 1rem;
}

.section-1-column-12 ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.section-1-column-12 li {
    margin-bottom: 0.5rem;
    color: #797979;
}

.section-1-column-12 .section-1-column-12-text-center {
    text-align: center;
}

.section-1-column-12 .section-1-column-12-text-left {
    text-align: left;
}
@media (max-width: 768px) {
    .section-1-column-12 h2 {
        font-size: 1.6rem;
    }

    .section-1-column-12 h3 {
        font-size: 1.2rem;
    }
}   
@media (max-width: 480px) {
    .section-1-column-12-container {
        padding: 0 15px;
    }

    .section-1-column-12 {
        padding: 40px 0;
    }
}

/* ──────────────────────────────────────────
    SECTION 30 — 3 COLUMN 10
────────────────────────────────────────── */
.section-3-column-10 {
    background-color: #ffffff;
    padding: 60px 0;
}

.section-3-column-10-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}



.section-3-column-10 a {
    color: #e37e4a;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.section-3-column-10 a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

.section-3-column-10 img {
    max-width: 100%;
    height: auto;
    display: block;
}

.section-3-column-10 h2, .section-3-column-10 h3 {
    color: #ff7f45;
    font-weight: 600;
    line-height: 1.3;
}

.section-3-column-10 h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.section-3-column-10 h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.section-3-column-10 p {
    margin-bottom: 1rem;
}

.section-3-column-10 ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.section-3-column-10 li {
    margin-bottom: 0.5rem;
}

.section-3-column-10-row {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.section-3-column-10-col {
    flex: 1 1 30%;
    min-width: 280px;
    max-width: 360px;
    text-align: center;
}

.section-3-column-10-col img {
    height: 245px;
    width: auto;
    margin: 0 auto 15px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    object-fit: cover;
}

.section-3-column-10-col a {
    display: block;
    font-weight: 500;
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .section-3-column-10 h2 {
        font-size: 1.6rem;
    }

    .section-3-column-10 h3 {
        font-size: 1.2rem;
    }
    
    .section-3-column-10-col {
        flex: 1 1 45%;
    }
}

@media (max-width: 480px) {
    .section-3-column-10-container {
        padding: 0 15px;
    }

    .section-3-column-10 {
        padding: 40px 0;
    }

    .section-3-column-10-col {
        flex: 1 1 100%;
    }
}

/* ──────────────────────────────────────────
    SECTION 31 — 1 COLUMN 13
────────────────────────────────────────── */
.section-1-column-13-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.section-1-column-13 h2, .section-1-column-13 h3 {
    color: #ff7f45;
    margin-bottom: 20px;
}

.section-1-column-13 h2 { font-size: 2rem; }
.section-1-column-13 h3 { font-size: 1.5rem; }


.section-1-column-13 p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.section-1-column-13 a {
    color: #e37e4a;
    text-decoration: none;
    transition: opacity 0.3s;
}

.section-1-column-13 a:hover {
    opacity: 0.8;
}

.section-1-column-13 ul {
    list-style-position: inside;
    margin: 20px 0;
}

.section-1-column-13 li {
    margin-bottom: 8px;
}

section.section-1-column-13 {
    width: 100%;
}

.section-1-column-13-bg-grey { background-color: #edf0f2; }

/* ──────────────────────────────────────────
    SECTION 32 — 1 COLUMN 14
────────────────────────────────────────── */
.section-1-column-14-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.section-1-column-14 h2, .section-1-column-14 h3 {
    color: #ff7f45;
    margin-bottom: 20px;
}

.section-1-column-14 h2 { font-size: 2rem; }
.section-1-column-14 h3 { font-size: 1.5rem; }

.section-1-column-14 p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.section-1-column-14 a {
    color: #e37e4a;
    text-decoration: none;
    transition: opacity 0.3s;
}

.section-1-column-14 a:hover {
    opacity: 0.8;
}

.section-1-column-14 ul {
    list-style-position: inside;
    margin: 20px 0;
}

.section-1-column-14 li {
    margin-bottom: 8px;
}

section.section-1-column-14 {
    width: 100%;
}

.section-1-column-14-bg-white { background-color: #ffffff; }

/* ──────────────────────────────────────────
    SECTION 33 — 3 COLUMN 11
────────────────────────────────────────── */
.section-3-column-11-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.section-3-column-11 h2, .section-3-column-11 h3 {
    color: #ff7f45;
    margin-bottom: 20px;
}

.section-3-column-11 h2 { font-size: 2rem; }
.section-3-column-11 h3 { font-size: 1.5rem; }

.section-3-column-11 a {
    color: #e37e4a;
    text-decoration: none;
    transition: opacity 0.3s;
}

.section-3-column-11 a:hover {
    opacity: 0.8;
}

.section-3-column-11 ul {
    list-style-position: inside;
    margin: 20px 0;
}

.section-3-column-11 li {
    margin-bottom: 8px;
}

.section-3-column-11-text-center { text-align: center; }

.section-3-column-11 img {
    max-width: 100%;
    height: auto;
    display: block;
}

section.section-3-column-11 {
    width: 100%;
}

.section-3-column-11-bg-white { background-color: #ffffff; }

.section-3-column-11-row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.section-3-column-11-col-3 { flex: 0 0 33.333%; padding: 15px; }

.section-3-column-11-product-card {
    text-align: center;
}

.section-3-column-11-product-card img {
    height: 245px;
    width: auto;
    margin: 0 auto 15px;
    object-fit: cover;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .section-3-column-11-col-3 {
        flex: 0 0 100%;
    }
    .section-3-column-11 h2 { font-size: 1.6rem; }
}

/* ──────────────────────────────────────────
    SECTION 34 — 2 COLUMN 15
────────────────────────────────────────── */

.section-2-column-15-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.section-2-column-15 h2, .section-2-column-15 h3 {
    color: #ff7f45;
    margin-bottom: 20px;
}

.section-2-column-15 h2 { font-size: 2rem; }
.section-2-column-15 h3 { font-size: 1.5rem; }


.section-2-column-15 p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.section-2-column-15 a {
    color: #e37e4a;
    text-decoration: none;
    transition: opacity 0.3s;
}

.section-2-column-15 a:hover {
    opacity: 0.8;
}

.section-2-column-15 ul {
    list-style-position: inside;
    margin: 20px 0;
}

.section-2-column-15 li {
    margin-bottom: 8px;
}

.section-2-column-15-text-center { text-align: center; }
.section-2-column-15-text-left { text-align: left; }

.section-2-column-15 img {
    max-width: 100%;
    height: auto;
    display: block;
}

section.section-2-column-15 {
    width: 100%;
}

.section-2-column-15-bg-white { background-color: #ffffff; }

.section-2-column-15-row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.section-2-column-15-col-2 { flex: 0 0 50%; padding: 15px; }

.section-2-column-15-btn-container {
    display: flex;
    justify-content: center;
    margin: 30px 0 40px 0;
}

.section-2-column-15-btn-primary {
    background-color: #ff7e4f;
    color: #ffffff !important;
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: bold;
    display: inline-block;
    border: none;
    cursor: pointer;
    transition: transform 0.2s, background-color 0.3s;
}

.section-2-column-15-btn-primary:hover {
    background-color: #e36d40;
    transform: translateY(-2px);
}

.section-2-column-15 blockquote {
    background: #f9f9f9;
    border-left: 5px solid #ff7f45;
    padding: 20px 20px 20px 30px;
    margin: 15px 0;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .section-2-column-15-col-2 {
        flex: 0 0 100%;
    }
    .section-2-column-15 h2 { font-size: 1.6rem; }
}

/* ──────────────────────────────────────────
    SECTION 35 — 3 COLUMN 12
────────────────────────────────────────── */
section.section-3-column-12 {
    width: 100%;
}
.section-3-column-12-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.section-3-column-12 h2, .section-3-column-12 h3 {
    color: #ff7f45;
    margin-bottom: 20px;
}

.section-3-column-12 h2 { font-size: 2rem; }
.section-3-column-12 h3 { font-size: 1.5rem; }

.section-3-column-12 a {
    color: #e37e4a;
    text-decoration: none;
    transition: opacity 0.3s;
}

.section-3-column-12 a:hover {
    opacity: 0.8;
}

.section-3-column-12 ul {
    list-style-position: inside;
    margin: 20px 0;
}

.section-3-column-12 li {
    margin-bottom: 8px;
}

.section-3-column-12-text-center { text-align: center; }

.section-3-column-12 img {
    max-width: 100%;
    height: auto;
    display: block;
}


.section-3-column-12-bg-grey { background-color: #edf0f2; }

.section-3-column-12-row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.section-3-column-12-col-3 { flex: 0 0 33.333%; padding: 15px; }

.section-3-column-12-service-box {
    text-align: center;
    padding: 20px;
}

/*.section-3-column-12-service-box i {*/
.section-3-column-12-service-box svg {
    font-size: 3rem;
    color: #42BCE2;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .section-3-column-12-col-3 {
        flex: 0 0 100%;
    }
    
    .section-3-column-12 h2 { font-size: 1.6rem; }
}

/* ──────────────────────────────────────────
    SECTION 36 - CTA 06
────────────────────────────────────────── */
.section-cta-06-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.section-cta-06 a {
    color: #e37e4a;
    text-decoration: none;
    transition: opacity 0.3s;
}

.section-cta-06 a:hover {
    opacity: 0.8;
}

section.section-cta-06 {
    width: 100%;
}

.section-cta-06-bg-white { background-color: #ffffff; }

.section-cta-06-btn-container {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.section-cta-06-btn-primary {
    background-color: #ff7e4f;
    color: #ffffff !important;
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: bold;
    display: inline-block;
    border: none;
    cursor: pointer;
    transition: transform 0.2s, background-color 0.3s;
}

.section-cta-06-btn-primary:hover {
    background-color: #e36d40;
    transform: translateY(-2px);
}

/* ──────────────────────────────────────────
    SECTION 37 - GALLERY 03
────────────────────────────────────────── */
.section-gallery-03 a {
    color: #e37e4a;
    text-decoration: none;
}

.section-gallery-03 h2, .section-gallery-03 h3 {
    color: #ff7f45;
}

.section-gallery-03 h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    text-align: left;
}

.section-gallery-03 h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    text-align: left;
}

.section-gallery-03 p {
    margin-bottom: 25px;
}

.section-gallery-03-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section.section-gallery-03  {
    width: 100%;
    background-color: #ffffff;
    padding: 60px 0;
}

section.section-gallery-03:nth-child(even) {
    background-color: #fafafa;
}

.section-gallery-03-gallery-row {
    display: flex;
    flex-wrap: wrap;
    margin: 20px 0 40px 0;
}

.section-gallery-03-gallery-item {
    width: 25%;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.section-gallery-03-gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.section-gallery-03-gallery-item img:hover {
    transform: scale(1.05);
}

.section-gallery-03-object-text {
    margin-bottom: 10px;
    white-space: pre-line;
}

.section-gallery-03-link {
  text-align: center;
  margin-bottom: 2rem;
}

.section-gallery-03-link a{
  color: #e37e4a;
  font-weight: 600;
  text-decoration: none;
  font-size: 1rem;
  border-bottom: 1px dashed #e37e4a;
  transition: color 0.2s;
}

.section-gallery-03-link a:hover {
  color: #c95d38;
  border-bottom-color: #c95d38;
}

@media (max-width: 992px) {
    .gallery-item {
        width: 50%;
    }
}

@media (max-width: 768px) {
    .section-gallery-03 h2 {
        font-size: 1.5rem;
    }
    .section-gallery-03 h3 {
        font-size: 1.2rem;
    }
    .section-gallery-03-gallery-item {
        width: 50%;
    }
    .section-gallery-03-gallery-item img {
        height: 150px;
    }
}

@media (max-width: 480px) {
    .section-gallery-03-gallery-item {
        width: 100%;
    }
}

/* ──────────────────────────────────────────
    SECTION 38 — 1 COLUMN 15
────────────────────────────────────────── */
.section-1-column-15 a {
    color: #e37e4a;
    text-decoration: none;
}

.section-1-column-15 h2, .section-1-column-15 h3 {
    color: #ff7f45;
}

.section-1-column-15 h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    text-align: left;
}

.section-1-column-15 h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    text-align: left;
}

.section-1-column-15-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section.section-1-column-15 {
    width: 100%;
    background-color: #ffffff;
    padding: 60px 0;
}

section.section-1-column-15:nth-child(even) {
    background-color: #fafafa;
}

.section-1-column-15-video-container {
    float: left;
    width: 100%;
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    margin-top: 20px;
}

.section-1-column-15-video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

@media (max-width: 768px) {
    .section-1-column-15 h2 {
        font-size: 1.5rem;
    }
    .section-1-column-15 h3 {
        font-size: 1.2rem;
    }
}

.section-1-column-15-clearfix::after {
    content: "";
    display: table;
    clear: both;
}

/* ──────────────────────────────────────────
    SECTION 39 — 2 COLUMN 16
────────────────────────────────────────── */
.section-2-column-16 a {
    color: #e37e4a;
    text-decoration: none;
}

.section-2-column-16 h2, .section-2-column-16 h3 {
    color: #ff7f45;
}

.section-2-column-16 h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    text-align: left;
}

.section-2-column-16 h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    text-align: left;
}

.section-2-column-16-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section.section-2-column-16 {
    width: 100%;
    background-color: #ffffff;
    padding: 60px 0;
}

section.section-2-column-16:nth-child(even) {
    background-color: #fafafa;
}

.section-2-column-16-row {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 30px;
}

.section-2-column-16-card {
    width: calc(50% - 15px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    margin: 0;
    padding: 30px;
    background: #fff;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s ease;
}

.section-2-column-16-card:hover {
    transform: translateY(-5px);
}

.section-2-column-16-card img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto 20px;
    border-radius: 4px;
}

.section-2-column-16-title {
    text-align: center;
    text-transform: uppercase;
    color: #e37e4a;
    font-weight: bold;
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.section-2-column-16-subtitle {
    text-align: center;
    text-transform: uppercase;
    color: #797979;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.section-2-column-16-description {
    text-align: center;
    color: #797979;
}

@media (max-width: 768px) {
    .section-2-column-16 h2 {
        font-size: 1.5rem;
    }
    .section-2-column-16 h3 {
        font-size: 1.2rem;
    }
    .section-2-column-16-card {
        width: 100%;
    }
}

/* ──────────────────────────────────────────
    SECTION 40 — GALLERY 04
────────────────────────────────────────── */

.section-gallery-04 a {
    color: #e37e4a;
    text-decoration: none;
}

.section-gallery-04 h2, .section-gallery-04 h3 {
    color: #ff7f45;
}

.section-gallery-04 h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    text-align: left;
}

.section-gallery-04 h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    text-align: left;
}

.section-gallery-04-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section.section-gallery-04 {
    width: 100%;
    background-color: #ffffff;
    padding: 60px 0;
}

section.section-gallery-04:nth-child(even) {
    background-color: #fafafa;
}

.section-gallery-04-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-top: 30px;
}

.section-gallery-04-grid-item {
    cursor: pointer;
    overflow: hidden;
    border-radius: 4px;
    transition: transform 0.3s ease;
}

.section-gallery-04-grid-item:hover {
    transform: scale(1.03);
}

.section-gallery-04-grid-item img {
    width: 100%;
    /* height: 180px; */
    object-fit: cover;
    display: block;
}

.section-gallery-04-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.section-gallery-04-modal.active {
    display: flex;
}

.section-gallery-04-modal-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    text-align: center;
}

.section-gallery-04-modal-content img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 4px;
}

.section-gallery-04-modal-text {
    color: #fff;
    margin-top: 15px;
    font-size: 1.1rem;
}

.section-gallery-04-modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    transition: color 0.3s;
}

.section-gallery-04-modal-close:hover {
    color: #ff7f45;
}

/* Responsive */
@media (max-width: 992px) {
    .section-gallery-04-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .section-gallery-04 h2 {
        font-size: 1.5rem;
    }
    .section-gallery-04 h3 {
        font-size: 1.2rem;
    }
    .section-gallery-04-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .section-gallery-04-grid {
        grid-template-columns: 1fr;
    }
}

/* ──────────────────────────────────────────
    SECTION 41 — 2 COLUMN 17
────────────────────────────────────────── */

.section-2-column-17 p {
    margin-bottom: 10px;
}

.section-2-column-17 a {
    color: #e37e4a;
    text-decoration: none;
}

.section-2-column-17 h2, .section-2-column-17 h3 {
    color: #ff7f45;
}

.section-2-column-17 h2 {
    font-size: 2rem;
    margin-top: 20px;
    margin-bottom: 1.5rem;
    text-align: left;
}

.section-2-column-17 h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    text-align: left;
}

.section-2-column-17-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section.section-2-column-17 {
    width: 100%;
    background-color: #ffffff;
    padding: 60px 0;
}

section.section-2-column-17:nth-child(even) {
    background-color: #fafafa;
}

.section-2-column-17-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 40px;
    padding: 20px 0;
    border-bottom: 1px solid #eee;
}

.section-2-column-17-row:last-child {
    border-bottom: none;
}

.section-2-column-17-logo {
    width: 30%;
    text-align: center;
}

.section-2-column-17-logo img {
    width: 210px;
    height: 100px;
    object-fit: contain;
    border: 0.5px solid #42BCE2;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease;
    border-radius: 12px;
}

.section-2-column-17-info {
    width: 70%;
    padding-left: 30px;
}

.section-2-column-17-info h3 {
    text-align: left;
    text-transform: uppercase;
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .section-2-column-17 h2 {
        font-size: 1.5rem;
    }
    .section-2-column-17 h3 {
        font-size: 1.2rem;
    }
    .section-2-column-17-logo,
    .section-2-column-17-info {
        width: 100%;
        padding: 0;
        text-align: center;
    }
    .section-2-column-17-info h3 {
        text-align: center;
        margin-top: 15px;
    }
}

/* ──────────────────────────────────────────
    SECTION 42 — 3 COLUMN 13
────────────────────────────────────────── */
.section-3-column-13 a {
    color: #e37e4a;
    text-decoration: none;
}

.section-3-column-13 h2, .section-3-column-13 h3 {
    color: #ff7f45;
}

.section-3-column-13 h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    text-align: left;
}

.section-3-column-13 h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    text-align: left;
}

.section-3-column-13-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section.section-3-column-13 {
    width: 100%;
    background-color: #ffffff;
    padding: 60px 0;
}

section.section-3-column-13:nth-child(even) {
    background-color: #fafafa;
}

.section-3-column-13-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
}

.section-3-column-13-card {
    flex: 1;
    min-width: 280px;
    background-color: #f4f4f4;
    margin: 0;
    padding: 30px 20px;
    text-align: center;
    border-radius: 8px;
    transition: box-shadow 0.3s ease;
}

.section-3-column-13-card:hover {
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.section-3-column-13-icon {
    color: #ff7f45;
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.section-3-column-13-title {
    color: #000;
    text-align: center;
    font-weight: bold;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.section-3-column-13-description {
    text-align: center;
    white-space: pre-line;
    line-height: 1.8;
    color: var(--dark);
}

@media (max-width: 768px) {
    .section-3-column-13 h2 {
        font-size: 1.5rem;
    }
    .section-3-column-13 h3 {
        font-size: 1.2rem;
    }
    .section-3-column-13-card {
        min-width: 100%;
    }
}

/* ──────────────────────────────────────────
    SECTION 43 — MAP 02
────────────────────────────────────────── */
.section-map-02 a {
    color: #e37e4a;
    text-decoration: none;
}

.section-map-02 h2, .section-map-02 h3 {
    color: #ff7f45;
}

.section-map-02 h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    text-align: left;
}

.section-map-02 h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    text-align: left;
}

.section-map-02 {
    width: 100%;
    background-color: #ffffff;
    padding: 60px 0;
}

.section-map-02:nth-child(even) {
    background-color: #fafafa;
}

.section-map-02-container {
    width: 100%;
    height: 450px;
}

.section-map-02-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

@media (max-width: 768px) {
    .section-map-02 h2 {
        font-size: 1.5rem;
    }
    .section-map-02 h3 {
        font-size: 1.2rem;
    }
}

/* ──────────────────────────────────────────
    SECTION 44 — 3 COLUMN 14
────────────────────────────────────────── */
.section-3-column-14 {
    width: 100%;
    background-color: #ffffff;
    padding: 40px 0;
}

.section-3-column-14-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-3-column-14 h2 {
    color: #ff7f45;
    margin-bottom: 20px;
    text-align: left;
}

.section-3-column-14 h3 {
    color: #ff7f45;
    margin-bottom: 10px;
    text-align: left;
}

.section-3-column-14 a {
    color: #e37e4a;
    text-decoration: none;
}

.section-3-column-14 a:hover {
    text-decoration: underline;
}

.section-3-column-14 p {
    margin-bottom: 15px;
}

.section-3-column-14-row {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
}

.section-3-column-14-column {
    width: 33.33%;
    background-color: #f4f4f4;
    padding: 30px;
    text-align: center;
}

.section-3-column-14-icon {
    color: #ff7f45;
    font-size: 40px;
    margin-bottom: 15px;
}

.section-3-column-14-title {
    color: #000;
    font-size: 20px;
    margin-bottom: 15px;
}

.section-3-column-14-description {
    text-align: center;
}

@media (max-width: 768px) {
    .section-3-column-14-row {
        flex-direction: column;
    }

    .section-3-column-14-column {
        width: 100%;
    }
}

/* ──────────────────────────────────────────
    SECTION 45 — MAP 03
────────────────────────────────────────── */
section.section-map-03 {
    width: 100%;
    background-color: #ffffff;
    padding: 40px 0;
}

.section-map-03-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-map-03-container {
    width: 100%;
    height: 400px;
}

.section-map-03-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ──────────────────────────────────────────
    SECTION 46 — ECOM / SECTION 48 - CATALOG
────────────────────────────────────────── */
.section-ecom,
.section-catalog { background-color: #ffffff; padding: 40px 0; color: #797979; }
.section-ecom-container,
.section-catalog-container { max-width: 1200px; margin: 0 auto; padding: 0 15px; display: flex; flex-wrap: wrap; }

.section-ecom-title-header,
.section-catalog-title-header {
    width: 100%;
    text-align: center;
    margin-bottom: 30px; 
}

.section-ecom h1,
.section-catalog h1 {
    color: #000000;
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.section-ecom h2 {
    color: #ff7f45;
    margin-bottom: 20px;
    text-align: center;
    font-size: 2rem;
}

/* --- Sidebar / Filters --- */
.section-ecom-sidebar,
.section-catalog-sidebar { flex: 0 0 20%; padding-right: 20px; }

.section-ecom-sidebar h3,
.section-catalog-sidebar h3 { color: #444; text-align: left; margin-bottom: 20px; font-size: 1.5rem; }

.section-ecom-filter-group,
.section-catalog-filter-group { margin-bottom: 25px; }

.section-ecom-filter-group h4,
.section-catalog-filter-group h4 { font-size: 1rem; color: #444; margin-bottom: 10px; border-bottom: 1px solid #eee; padding-bottom: 5px; }

.section-ecom-filter-option,
.section-catalog-filter-option { display: flex; align-items: center; margin-bottom: 8px; cursor: pointer; font-size: 0.9rem; }

.section-ecom-filter-option input,
.section-catalog-filter-option input { margin-right: 10px; cursor: pointer; }

/* section 'ecom' only related style */
#reset-filters { 
    display: none; background: #e37e4a; color: white; border: none; 
    padding: 8px 15px; cursor: pointer; border-radius: 4px; transition: 0.3s; width: 100%;
}
#reset-filters:hover { background: #cf6d3b; }

/* section 'catalog' only related style */
.section-catalog-filter-button {
    display: block;
    background: #e37e4a;
    color: white;
    border: none;
    padding: 8px 15px;
    cursor: pointer;
    border-radius: 4px;
    transition: 0.3s;
    width: 100%;
}

.section-catalog-filter-button:hover {
    background: #cf6d3b;
}

/* --- Product Main Content --- */
.section-ecom-content,
.section-catalog-content { flex: 0 0 80%; }

.section-ecom-product-grid,
.section-catalog-product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px; }

/* --- Product Card --- */
.section-ecom-product-card,
.section-catalog-product-card { 
    background: #fff; border-radius: 4px; padding: 15px; position: relative;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08); transition: transform 0.2s; 
    display: flex; flex-direction: column;
}

.section-ecom-product-card:hover,
.section-catalog-product-card:hover { transform: translateY(-5px); }

/* Badge/Spans on Image */
.section-ecom-image-container,
.section-catalog-image-container { position: relative; text-align: center; margin-bottom: 15px; height: 180px; overflow: hidden; }

.section-ecom-image-container img,
.section-catalog-image-container img { max-width: 100%; height: auto; transition: 0.3s; }

.section-ecom-badges,
.section-catalog-badges { position: absolute; top: 5px; left: 0; display: flex; flex-direction: column; gap: 4px; }

.section-ecom-badges span,
.section-catalog-badges span { 
    background: rgba(255,255,255,0.9); color: #444; font-size: 0.7rem; 
    font-weight: bold; padding: 2px 8px; border-left: 3px solid #e37e4a; 
}

/* Title & Icons */
.section-ecom-product-title,
.section-catalog-product-title { color: #444; text-decoration: none; font-weight: bold; font-size: 1.1rem; margin-bottom: 10px; display: block; }

.section-ecom-product-icons,
.section-catalog-product-icons { display: flex; gap: 10px; color: #bbb; margin-bottom: 15px; }

.section-ecom-product-price,
.section-catalog-product-price { font-weight: bold; color: #444; margin-bottom: 15px; font-size: 1.1rem; }

/* Action Buttons */
.section-ecom-card-actions,
.section-catalog-card-actions { display: flex; align-items: center; gap: 15px; margin-bottom: 15px; }

.section-ecom-buy-btn,
.section-catalog-buy-btn { 
    background-color: #e37e4a; color: white; text-decoration: none; 
    padding: 10px 20px; flex-grow: 1; text-align: center; font-weight: bold; font-size: 0.9rem;
}

.section-ecom-calc-icon,
.section-catalog-calc-icon { color: #e37e4a; font-size: 1.4rem; cursor: pointer; }

/* Colors */
.section-ecom-color-variants,
.section-catalog-color-variants { text-align: left; margin-bottom: 15px; }

.section-ecom-color-variants p,
.section-catalog-color-variants p { font-size: 0.8rem; margin-bottom: 5px; }

.section-ecom-color-circles,
.section-catalog-color-circles { display: flex; gap: 8px; }

.section-ecom-color-circle,
.section-catalog-color-circle { width: 18px; height: 18px; border-radius: 50%; border: 1px solid #ddd; }

/* Description */
.section-ecom-product-desc,
.section-catalog-product-desc { font-size: 0.8rem; border-top: 1px solid #eee; padding-top: 10px; white-space: pre-line; }

/* Responsive Breakpoints */
@media (max-width: 992px) {
    .section-ecom-sidebar, .section-ecom-content,
    .section-catalog-sidebar, .section-catalog-content { flex: 0 0 100%; }
    .section-ecom-sidebar,
    .section-catalog-sidebar { margin-bottom: 30px; border-bottom: 1px solid #eee; padding-bottom: 20px; padding-left: 20px; }
}

@media (max-width: 768px) {
    .section-ecom h1,
    .section-catalog h1 { font-size: 1.8rem; }
    .section-ecom h2 {font-size: 1.4rem;}
}

/* ──────────────────────────────────────────
    SECTION 47 — CTA 07
────────────────────────────────────────── */
.section-cta-07 {
  width: 100%;
  padding: 3rem 1rem;
}

.section-cta-07-container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}
.section-cta-07-order-form {
    max-width: 1200px;
    margin: 0 auto 2rem;
    padding: 45px 0;
}

.section-cta-07-order-form h2 {
      text-align: center;
      color: #ff7f45;
      font-size: 1.8rem;
      font-weight: 700;
      margin-bottom: 1rem;
      letter-spacing: -0.3px;
}

.section-cta-07-form-row {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.section-cta-07-form-row input,
.section-cta-07-form-row textarea {
    flex: 1 1 180px;
    padding: 12px 16px;
    border: 1px solid #d0d0d0;
    border-radius: 4px;
    font-size: 0.95rem;
    color: #797979;
    outline: none;
    transition: border-color 0.2s;
    font-family: inherit;
    background: #fafafa;
}

.section-cta-07-form-row textarea {
    flex: 1 1 100%;
    min-height: 120px;
    resize: vertical;
}

.section-cta-07-form-row input:focus,
.section-cta-07-form-row textarea:focus {
    border-color: #ff7f45;
    background: #fff;
}

.section-cta-07-form-submit {
    display: flex;
    justify-content: center;
    margin-top: 8px;
}

@media (max-width: 768px) {
    .section-cta-07 {
        padding: 2rem 1rem;
    }
    .section-cta-07-order-form h2 {
        font-size: 1.6rem;
    }
}













/* ──────────────────────────────────────────
    SECTION 51 — FAQ 10
────────────────────────────────────────── */
.section-faq-10 {
  background-color: #edf0f2;
  padding: 60px 0;
}

.section-faq-10-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-faq-10 a { color: #e37e4a; text-decoration: none; }
.section-faq-10 a:hover { text-decoration: underline; }

.section-faq-10 h2 {
  color: #ff7f45;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  margin-bottom: 30px;
  text-align: left;
}

.section-faq-10-accordion {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.section-faq-10-accordion-item {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.section-faq-10-accordion-header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 22px;
  cursor: pointer;
  user-select: none;
  transition: background 0.2s;
}

.section-faq-10-accordion-header:hover { background: #f4f6f8; }
.section-faq-10-accordion-item.open .section-faq-10-accordion-header { background: #f4f6f8; }

.section-faq-10-accordion-header .section-faq-10-acc-icon {
  font-size: 1.3rem;
  color: #42BCE2;
  flex-shrink: 0;
}

.section-faq-10-accordion-header h3 {
  flex: 1;
  font-size: 0.97rem;
  font-weight: 600;
  color: #3a3a3a;
  line-height: 1.4;
}

.section-faq-10-accordion-arrow {
  font-size: 0.85rem;
  color: #aaa;
  transition: transform 0.3s;
  flex-shrink: 0;
}

.section-faq-10-accordion-item.open .section-faq-10-accordion-arrow {
  transform: rotate(180deg);
  color: #ff7f45;
}

.section-faq-10-accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.2s;
}

.section-faq-10-accordion-item.open .section-faq-10-accordion-body {
  max-height: 500px;
}

.section-faq-10-accordion-body-inner {
  padding: 0 22px 20px 22px;
  color: #555;
  font-size: 0.92rem;
  line-height: 1.7;
}

.section-faq-10-accordion-body-inner p { margin-bottom: 10px; }

.section-faq-10-accordion-body-inner ul {
  padding-left: 20px;
}

.section-faq-10-accordion-body-inner ul li { margin-bottom: 4px; }