        
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300..900&display=swap');
        :root {
            /* --bg: #F6F3EE; */
            --bg: #ffffff;
            --cream: #E9E2D8;
            --sand: #DCCDBA;
            --taupe: #C8B49A;
            --brown: #A6947A;
            --dark: #4A4038;
            --muted: #645D55;
            --border: #DED5C8;
            --kubi-brown: #c99473;
        }

        * { box-sizing: border-box; }

        body {
            margin: 0;
            background: var(--bg);
            color: var(--dark);
        }
h1, h2, h3, h4, h5, h6 {
  font-family: 'Quicksand', sans-serif;
  font-weight: 900; /* Quicksand looks great bold in headings */
}
p {
    font-family: 'Poppins', sans-serif;
}
        a { text-decoration: none; color: inherit; }

        .kubi-container {
            /* max-width: 1320px; */
            margin: auto;
            padding: 0 32px;
        }

        .hero {
            min-height: 100vh;
            display: grid;
            align-items: center;
        }

        .grid-2 {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 64px;
            align-items: center;
        }

        .eyebrow {
            color: var(--brown);
            font-size: 12px;
            letter-spacing: .32em;
            text-transform: uppercase;
            margin-bottom: 20px;
        }

        h1.kubi-hero-heading {
            font-size: clamp(52px, 7vw, 96px);
            line-height: 1.0;
            font-weight: 400;
            letter-spacing: -0.03em;
            margin: 0;
        }

        h2.kubi-h2-heading {
            font-size: clamp(36px, 5vw, 64px);
            line-height: 1;
            font-weight: 400;
            letter-spacing: -0.03em;
            margin: 0;
        }

        p.kubi-p {
            color: var(--muted);
            line-height: 1.8;
            font-size: 17px;
            margin: 24px 0;
        }

        .hero-text {
            max-width: 520px;
            margin-top: 28px;
        }

        .actions {
            display: flex;
            gap: 16px;
            margin-top: 36px;
            flex-wrap: wrap;
        }

        .btn {
            padding: 15px 28px;
            font-size: 12px;
            font-weight: 600;
            letter-spacing: .16em;
            text-transform: uppercase;
            transition: all 0.3s ease;
        }

        .btn-primary {
            background: var(--brown);
            color: white;
        }

        .btn-outline {
            border: 1px solid var(--brown);
            color: var(--dark);
        }

        /* Hover effect */
        .btn:hover {
            background: var(--dark);
            color: var(--cream);
            border-color: var(--dark);
        }

        .image-box {
            aspect-ratio: 1 / 1;
            overflow: hidden;
            background: var(--cream);
        }

        .image-box img,
        .wide-image img,
        .card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        section {
            padding: 100px 0;
        }

        .section-header {
            max-width: 760px;
            margin-bottom: 48px;
        }

        .category-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
        }

        .card {
            min-height: 340px;
            border: 1px solid var(--border);
            background: #fbf8f2;
            overflow: hidden;
        }

        .card-image {
            height: 260px;
            overflow: hidden;
        }

        .card-content {
            padding: 22px;
        }

        .card-title {
            font-size: 18px;
            color: var(--dark);
        }

        .story {
            background: var(--cream);
        }

        .story p {
            max-width: 520px;
        }

        .material-grid {
            display: grid;
            grid-template-columns: 1.3fr .7fr;
            gap: 24px;
        }

        .wide-image {
            height: 520px;
            overflow: hidden;
        }

        .stack {
            display: grid;
            gap: 24px;
        }

        .stack .wide-image {
            height: 248px;
        }

         .values-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            margin-top: 48px;
        }

        .value-card {
            min-height: 260px;
            padding: 32px;
            border: 1px solid var(--border);
            background: #fbf8f2;
        }

        .value-card span {
            display: block;
            color: var(--brown);
            font-size: 12px;
            letter-spacing: .2em;
            text-transform: uppercase;
            margin-bottom: 28px;
        }

        .value-card h3 {
            margin: 0 0 18px;
            font-size: 26px;
            font-weight: 300;
        }

        .process {
            background: var(--bg);
        }

        .process-list {
            margin-top: 52px;
            border-top: 1px solid var(--border);
        }

        .process-item {
            display: grid;
            grid-template-columns: 120px 1fr 1.2fr;
            gap: 32px;
            padding: 34px 0;
            border-bottom: 1px solid var(--border);
            align-items: start;
        }

        .process-number {
            color: var(--brown);
            letter-spacing: .2em;
            font-size: 12px;
        }

        .process-title {
            font-size: 28px;
            font-weight: 300;
            color: var(--dark);
        }
        .kubi-search{
            background-color: var(--bg);
        }

        .kubi-footer{
            background-color: var(--bg);
            opacity: 1;
        }
        .kubi-copyright{
            background-color: var(--kubi-brown);
            opacity: 1;
        }
        .borderBrown{
            border-color: var(--dark);
        }
        @media (max-width: 991px) {
            .kubi-container {
                padding: 0 20px;
            }

            .hero {
                padding: 80px 0;
            }

            .grid-2,
            .category-grid,
            .material-grid,.values-grid, .process-item {
                grid-template-columns: 1fr;
            }

            section {
                padding: 72px 0;
            }

            .wide-image,
            .stack .wide-image {
                height: 360px;
            }

        }

        .kooqa-cms-page {
    max-width: 960px;
    margin: 0 auto;
    padding-top: 40px;
    padding-bottom: 80px;
    color: #111827;
}

.kooqa-cms-page p {
    margin-bottom: 24px;
    font-size: 16px;
    line-height: 1.8;
    color: #374151;
}

.kooqa-cms-page strong {
    display: block;
    margin-top: 36px;
    margin-bottom: 16px;
    font-size: 24px;
    line-height: 1.3;
    color: #000;
}

.kooqa-cms-page ul {
    margin: 20px 0 32px;
    padding-left: 0;
    list-style: none;
}

.kooqa-cms-page li {
    position: relative;
    margin-bottom: 12px;
    padding-left: 28px;
    font-size: 16px;
    line-height: 1.7;
    color: #374151;
}

.kooqa-cms-page li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 11px;
    width: 9px;
    height: 9px;
    border-radius: 999px;
    background: #000000;
}

.kooqa-cms-page a {
    color: #000;
    font-weight: 600;
    text-decoration: underline;
    text-decoration-color: #000000;
    text-decoration-thickness: 3px;
    text-underline-offset: 4px;
}

.kooqa-cms-page > * {
    /* background: #fff; */
}

.kooqa-cms-page {
    /* background: #f8f6f0; */
    border-radius: 32px;
    padding: 48px;
}

@media (max-width: 768px) {
    .kooqa-cms-page {
        padding: 28px 20px;
    }

    .kooqa-cms-page strong {
        font-size: 20px;
    }
}
 .kooqa-faq-page {
    max-width: 1120px;
    margin: 0 auto;
    padding: 56px 20px 90px;
    color: #111827;
}

.kooqa-faq-hero {
    margin-bottom: 34px;
    padding: 58px 42px;
    border-radius: 38px;
    background:
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.9), transparent 34%),
        linear-gradient(135deg, #ffe600 0%, #fff4a3 45%, #f8f6f0 100%);
    text-align: center;
    box-shadow: 0 26px 75px rgba(0, 0, 0, 0.08);
}

.kooqa-faq-badge {
    display: inline-flex;
    margin-bottom: 20px;
    padding: 9px 18px;
    border-radius: 999px;
    background: #000;
    color: #ffe600;
    font-size: 13px;
    font-weight: 850;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.kooqa-faq-hero h1 {
    max-width: 800px;
    margin: 0 auto;
    color: #000;
    font-size: clamp(38px, 5vw, 64px);
    line-height: 1.03;
    font-weight: 850;
    letter-spacing: -0.055em;
}

.kooqa-faq-hero p {
    max-width: 760px;
    margin: 22px auto 0;
    color: rgba(0, 0, 0, 0.72);
    font-size: 17px;
    line-height: 1.85;
}

.kooqa-faq-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    max-width: 780px;
    margin: 34px auto 0;
}

.kooqa-faq-stats div {
    padding: 20px 16px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.62);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.kooqa-faq-stats strong {
    display: block;
    color: #000;
    font-size: 22px;
    font-weight: 850;
    line-height: 1.1;
}

.kooqa-faq-stats span {
    display: block;
    margin-top: 6px;
    color: rgba(0, 0, 0, 0.62);
    font-size: 13px;
    font-weight: 700;
}

.kooqa-faq-wrap {
    padding: 34px;
    border-radius: 34px;
    background: #f8f6f0;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.kooqa-faq-intro {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 26px;
}

.kooqa-faq-intro span {
    display: inline-flex;
    margin-bottom: 12px;
    padding: 7px 14px;
    border-radius: 999px;
    background: #ffe600;
    color: #000;
    font-size: 12px;
    font-weight: 850;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.kooqa-faq-intro h2 {
    margin: 0;
    color: #000;
    font-size: 30px;
    line-height: 1.15;
    font-weight: 850;
    letter-spacing: -0.035em;
}

.kooqa-faq-intro p {
    max-width: 360px;
    margin: 0;
    color: #6b7280;
    font-size: 15px;
    line-height: 1.7;
}

.kooqa-faq-list {
    display: grid;
    gap: 14px;
}

.kooqa-faq-item {
    border-radius: 24px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 16px 38px rgba(0, 0, 0, 0.035);
    overflow: hidden;
}

.kooqa-faq-item summary {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 18px;
    align-items: center;
    padding: 24px 26px;
    cursor: pointer;
    list-style: none;
}

.kooqa-faq-item summary::-webkit-details-marker {
    display: none;
}

.kooqa-faq-number {
    display: inline-flex;
    width: 46px;
    height: 46px;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: #ffe600;
    color: #000;
    font-size: 14px;
    font-weight: 850;
}

.kooqa-faq-question strong {
    display: block;
    color: #000;
    font-size: 18px;
    line-height: 1.45;
    font-weight: 850;
    letter-spacing: -0.015em;
}

.kooqa-faq-question em {
    display: block;
    margin-top: 5px;
    color: #6b7280;
    font-size: 15px;
    line-height: 1.45;
    font-style: normal;
}

.kooqa-faq-icon {
    position: relative;
    display: inline-flex;
    width: 34px;
    height: 34px;
    border-radius: 999px;
    background: #000;
    flex-shrink: 0;
}

.kooqa-faq-icon::before,
.kooqa-faq-icon::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 14px;
    height: 2px;
    border-radius: 999px;
    background: #ffe600;
    transform: translate(-50%, -50%);
    transition: transform 0.2s ease;
}

.kooqa-faq-icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.kooqa-faq-item[open] .kooqa-faq-icon::after {
    transform: translate(-50%, -50%) rotate(0deg);
}

.kooqa-faq-answer {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    padding: 0 26px 26px 90px;
}

.kooqa-faq-lang {
    padding: 22px;
    border-radius: 22px;
    background: #f8f6f0;
}

.kooqa-faq-lang span {
    display: inline-flex;
    margin-bottom: 12px;
    padding: 6px 11px;
    border-radius: 999px;
    background: #000;
    color: #ffe600;
    font-size: 11px;
    font-weight: 850;
    letter-spacing: 0.08em;
}

.kooqa-faq-lang p {
    margin: 0;
    color: #374151;
    font-size: 15px;
    line-height: 1.75;
}

.kooqa-faq-contact {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    margin-top: 30px;
    padding: 34px;
    border-radius: 32px;
    background: #000;
    color: #fff;
}

.kooqa-faq-contact h2 {
    margin: 0 0 10px;
    color: #fff;
    font-size: 28px;
    font-weight: 850;
    letter-spacing: -0.035em;
}

.kooqa-faq-contact p {
    max-width: 620px;
    margin: 0;
    color: rgba(255, 255, 255, 0.74);
    font-size: 16px;
    line-height: 1.75;
}

.kooqa-faq-contact-actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.kooqa-faq-contact-actions a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 13px 20px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 850;
    text-decoration: none;
    transition: transform 0.2s ease, background 0.2s ease;
}

.kooqa-faq-contact-actions a:first-child {
    background: #ffe600;
    color: #000;
}

.kooqa-faq-contact-actions a:last-child {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.16);
}

.kooqa-faq-contact-actions a:hover {
    transform: translateY(-2px);
}

@media (max-width: 900px) {
    .kooqa-faq-stats,
    .kooqa-faq-answer {
        grid-template-columns: 1fr;
    }

    .kooqa-faq-intro,
    .kooqa-faq-contact {
        flex-direction: column;
        align-items: flex-start;
    }

    .kooqa-faq-answer {
        padding-left: 26px;
    }

    .kooqa-faq-contact-actions {
        width: 100%;
        flex-direction: column;
    }

    .kooqa-faq-contact-actions a {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .kooqa-faq-page {
        padding: 32px 16px 64px;
    }

    .kooqa-faq-hero {
        padding: 40px 24px;
        border-radius: 28px;
    }

    .kooqa-faq-wrap {
        padding: 22px;
        border-radius: 26px;
    }

    .kooqa-faq-intro h2 {
        font-size: 24px;
    }

    .kooqa-faq-item {
        border-radius: 20px;
    }

    .kooqa-faq-item summary {
        grid-template-columns: auto 1fr;
        gap: 14px;
        padding: 20px;
    }

    .kooqa-faq-icon {
        grid-column: 1 / -1;
        width: 100%;
        height: 42px;
        border-radius: 16px;
    }

    .kooqa-faq-number {
        width: 40px;
        height: 40px;
    }

    .kooqa-faq-question strong {
        font-size: 16px;
    }

    .kooqa-faq-question em {
        font-size: 14px;
    }

    .kooqa-faq-answer {
        padding: 0 20px 20px;
    }

    .kooqa-faq-contact {
        padding: 28px 22px;
        border-radius: 26px;
    }

    .kooqa-faq-contact h2 {
        font-size: 24px;
    }
}