* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
}

:root {
    --primary-brand: #B0052D;
    /* Bright orange from the image */
    --text-white: #ffffff;
    --text-gray: #e0e0e0;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: #333;
    color: var(--text-white);
    overflow-x: hidden;
}

.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    background-image: url('assests/images/bg new.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
}

/* Gradient overlay for better text readability and lighting effect */


.header {
    position: relative;
    z-index: 10;
}

.main-content,
.side-tools,
.chat-widget {
    position: relative;
    z-index: 2;
}

/* --- Navigation Header --- */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 4rem;
    background-color: transparent;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo img {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.logo i {
    font-size: 2.2rem;
    color: var(--primary-brand);
}

.logo-text {
    line-height: 1.1;
    display: flex;
    flex-direction: column;
}

.logo-title {
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.logo-subtitle {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-white);
}

.navbar ul {
    list-style: none;
    display: flex;
    gap: 2.5rem;
}

.navbar a {
    text-decoration: none;
    color: var(--text-white);
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color 0.3s;
}

.navbar a i {
    font-size: 0.6rem;
    margin-top: 2px;
}

.navbar a:hover,
.navbar a.active {
    color: rgba(255, 255, 255, 0.8);
}

.header-right {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.menu-toggle {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--text-white);
    transition: color 0.3s;
}

.menu-toggle:hover {
    color: var(--primary-brand);
}


.phone {
    font-weight: 500;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.phone i {
    font-size: 1.1rem;
}

.btn-contact {
    display: inline-block;
    text-decoration: none;
    background-color: var(--primary-brand);
    color: #fff;
    border: none;
    padding: 0.7rem 1.8rem;
    border-radius: 4px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    line-height: normal;
}

.btn-contact:hover {
    background-color: #d0002f;
}

/* --- Main Content Section --- */
.main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 4rem;
    margin-top: -8vh;
    /* Move content up */
}

.main-title {
    font-size: 4.5rem;
    line-height: 1.1em;
    font-weight: 500;
    margin-bottom: 1.5rem;
    letter-spacing: -0.5px;
}

.main-title .highlight {
    color: #ffffff;
}

.hero-desc {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 650px;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    font-weight: 300;
}

.btn-explore {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 1rem 2.8rem;
    background-color: var(--primary-brand);
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    text-decoration: none;
    transition: background-color 0.3s, transform 0.3s;
}

.btn-explore i {
    transition: transform 0.3s ease;
}

.btn-explore:hover {
    background-color: #d0002f;
    transform: translateY(-2px);
}

.btn-explore:hover i {
    transform: translateX(5px);
}

/* --- Bottom Area (Presentation, Experience, Description) --- */
.bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10vh;
    padding-bottom: 3rem;
}

.left-bottom {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.presentation {
    position: relative;
    width: 220px;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.circle-text {
    position: absolute;
    width: 100%;
    height: 100%;
    animation: rotate 15s linear infinite;
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.play-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    transition: transform 0.3s;
    font-size: 1.1rem;
}

.presentation:hover .play-btn {
    transform: scale(1.15);
}

.experience {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.experience .number {
    font-size: 11rem;
    font-weight: 500;
    color: #ffffff;
    line-height: 0.75;
    letter-spacing: -3px;
}

.experience .exp-text {
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.25;
    color: var(--text-white);
}

.right-bottom {
    max-width: 480px;
    padding-right: 0;
}

.right-bottom .description {
    font-size: 1.05rem;
    color: #ffffff;
    line-height: 1.6;
    font-weight: 400;
}

/* --- Floating Side Tools --- */
.side-tools {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    z-index: 10;
}

.tool-btn {
    width: 45px;
    height: 45px;
    background-color: var(--primary-brand);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    transition: background-color 0.3s;
    font-size: 1.1rem;
}

.tool-btn:last-child {
    border-bottom: none;
}

.tool-btn:hover {
    background-color: #d0002f;
}

/* --- Chat Widget --- */
.chat-widget {
    position: fixed;
    bottom: 40px;
    left: 40px;
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 10;
}

.chat-btn {
    width: 55px;
    height: 55px;
    background-color: #5bb156;
    /* Green matching the image */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.4rem;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s;
}

.chat-btn:hover {
    transform: scale(1.05);
}

.chat-tooltip {
    background-color: white;
    color: #333;
    padding: 10px 18px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}


/* --- Services Section --- */
.services-section {
    background-color: #ffffff;
    color: #333;
    padding: 10rem 8rem 6rem 4rem;
    /* Right padding more to account for fixed tools */
}

.services-header {
    margin-bottom: 1rem;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.services-title {
    font-size: 50px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: 1px;
    color: #2a2a2a;
    margin: 0;
    padding-left: 3.5rem;
    width: 100%;
}

.services-title .highlight {
    color: #E8073A;
}

.services-desc {
    width: 45%;
    margin-top: 2rem;
    /* Reduced white space above the text */
    color: #86827E;
    font-size: 1.05rem;
    line-height: 1.8;
}

.services-desc p {
    margin: 0;
}

/* --- Services Carousel Section --- */
.services-carousel-wrapper {
    width: 100%;
    margin-top: 2rem;
    display: flex;
    align-items: center;
    gap: 15px;
}

.services-carousel-track {
    flex: 1;
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE and Edge */
    cursor: grab;
    padding-bottom: 10px;
    padding-top: 10px;
}

/* Hide scrollbar for Chrome, Safari and Opera */
.services-carousel-track::-webkit-scrollbar {
    display: none;
}

.services-carousel-track:active {
    cursor: grabbing;
}

.carousel-btn {
    flex-shrink: 0;
    background: transparent;
    color: var(--primary-brand);
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.2s ease;
}

.carousel-btn:hover {
    transform: scale(1.15);
}

.service-carousel-card {
    display: block;
    flex: 0 0 calc(25% - 1.125rem);
    /* Account for gap */
    min-width: 280px;
    height: 420px;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background-color: #121822;
    /* Dark fallback */
    scroll-snap-align: start;
    user-select: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

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

.service-carousel-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 70%;
    background: linear-gradient(to top, rgba(10, 14, 23, 0.95) 0%, rgba(10, 14, 23, 0.8) 25%, rgba(10, 14, 23, 0) 100%);
    z-index: 2;
    pointer-events: none;
}

.service-card-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-carousel-card:hover .service-card-image img {
    transform: scale(1.08);
}

.service-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem 1.8rem;
    z-index: 3;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.service-card-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.6rem;
    letter-spacing: -0.3px;
    line-height: 1.2;
}

.service-card-desc {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin: 0;
}


/* --- Latest YouTube Videos Section --- */
.youtube-section {
    background-color: #ffffff;
    padding: 5rem 6rem;
}

.youtube-container {
    display: flex;
    align-items: center;
    gap: 4rem;
    max-width: 1250px;
    margin: 0 auto;
}

.youtube-left {
    flex: 0 0 280px;
}

.youtube-heading {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.15;
    color: #1a1a1a;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    max-width: 250px; /* Force wrap on desktop */
}

.youtube-desc {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.btn-youtube {
    display: inline-block;
    padding: 0.85rem 2rem;
    background-color: var(--primary-brand);
    color: #fff;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.btn-youtube:hover {
    background-color: #d0002f;
}

.youtube-right {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.youtube-right .carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    color: #ffffff;
    font-size: 1.5rem;
    background: rgba(0, 0, 0, 0.35);
    padding: 10px 12px;
    border-radius: 6px;
    transition: background 0.3s, transform 0.3s;
}

.youtube-right .carousel-btn:hover {
    background: rgba(0, 0, 0, 0.6);
    transform: translateY(-50%) scale(1.1);
}

.youtube-right .prev-btn {
    left: 10px;
}

.youtube-right .next-btn {
    right: 10px;
}

.youtube-carousel-track {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE and Edge */
    flex: 1;
}

.youtube-carousel-track::-webkit-scrollbar {
    display: none;
}

.youtube-video {
    flex: 0 0 calc(50% - 0.75rem);
    /* Display two videos at a time */
    min-width: 250px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    aspect-ratio: 16 / 10;
    scroll-snap-align: start;
    position: relative;
    display: block;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.youtube-video .yt-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.youtube-video:hover .yt-cover {
    transform: scale(1.05);
}

.yt-play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.85);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--primary-brand);
    font-size: 1.5rem;
    padding-left: 5px; /* Visual center for play button */
    z-index: 2;
    transition: background-color 0.3s, color 0.3s, transform 0.3s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.youtube-video:hover .yt-play-overlay {
    background-color: var(--primary-brand);
    color: #fff;
    transform: translate(-50%, -50%) scale(1.1);
}

.youtube-video::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
    z-index: 1;
    transition: background 0.3s ease;
}

.youtube-video:hover::after {
    background: rgba(0, 0, 0, 0.1);
}

/* --- Transform Spaces Section --- */
.transform-section {
    background-color: #ffffff;
    padding: 2rem 8rem 10rem 6rem;
}

.transform-container {
    display: flex;
    align-items: center;
    gap: 6rem;
    max-width: 1400px;
    margin: 0 auto;
}

.transform-image-wrapper {
    flex: 1;
    display: flex;
}

.transform-image-wrapper img {
    width: 100%;
    height: 700px;
    object-fit: cover;
    filter: contrast(1.12) brightness(1.05) saturate(1.05);
    image-rendering: -webkit-optimize-contrast;
    /* Sharper rendering for higher clarity */
}

.transform-content {
    flex: 1.1;
    display: flex;
    flex-direction: column;
}

.transform-subtitle {
    font-size: 0.85rem;
    font-weight: 700;
    color: #666;
    letter-spacing: 1.5px;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.transform-title {
    font-size: 50px;
    font-weight: 600;
    line-height: 1.15;
    color: #333;
    margin-bottom: 2rem;
    letter-spacing: 0.5px;
}

.transform-title .highlight-brand {
    color: #E8073A;
}

.transform-desc {
    font-size: 1.05rem;
    color: #888;
    line-height: 1.7;
    margin-bottom: 3.5rem;
}

.transform-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem 4rem;
}

.feature-item {
    display: grid;
    grid-template-areas:
        "icon title"
        "icon desc";
    grid-template-columns: min-content 1fr;
    column-gap: 1.5rem;
    align-items: start;
}

.feature-icon {
    grid-area: icon;
    display: flex;
}

.feature-title {
    grid-area: title;
    font-size: 1.25rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 0.5rem;
    letter-spacing: -0.5px;
}

.feature-desc {
    grid-area: desc;
    font-size: 0.95rem;
    color: #888;
    line-height: 1.7;
}

/* --- Subscribe Section --- */
.subscribe-section {
    background-color: #f7f3ee;
    /* matching the image beige tone */
    padding: 6rem 4rem;
    display: flex;
    justify-content: center;
}

.subscribe-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1100px;
    gap: 4rem;
}

.subscribe-title {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.2;
    color: #333;
    flex: 1;
    letter-spacing: -0.5px;
}

.subscribe-form-area {
    flex: 1.2;
    display: flex;
    flex-direction: column;
}

.subscribe-form {
    display: flex;
    background-color: #ffffff;
    border-radius: 8px;
    padding: 8px;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.input-wrapper {
    display: flex;
    align-items: center;
    flex: 1;
    padding-left: 1.5rem;
    color: #a0a0a0;
}

.input-wrapper i {
    font-size: 1.1rem;
    margin-right: 15px;
}

.input-wrapper input {
    border: none;
    outline: none;
    width: 100%;
    font-size: 1rem;
    font-family: inherit;
    color: #333;
}

.input-wrapper input::placeholder {
    color: #b0b0b0;
    font-weight: 400;
}

.btn-subscribe {
    background-color: var(--primary-brand);
    color: #ffffff;
    border: none;
    padding: 0 2rem;
    height: 55px;
    border-radius: 6px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-subscribe:hover {
    background-color: #d0002f;
}

.subscribe-agreement {
    margin-left: 5px;
}

.checkbox-container {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    position: relative;
    user-select: none;
}

.checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    height: 18px;
    width: 18px;
    background-color: #f7f3ee;
    border: 1.5px solid #d0ccc7;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.checkbox-container input:checked~.checkmark i {
    color: #a09e99;
    font-size: 11px;
}

.agreement-text {
    font-size: 0.95rem;
    color: #888;
}

.agreement-text .highlight-brand {
    color: var(--primary-brand);
}

/* --- Listings Section --- */
.listings-section {
    background-color: #120e0a;
    /* Same as trusted-section */
    padding: 6rem 4rem 2rem 4rem;
}

.listings-container {
    max-width: 1300px;
    margin: 0 auto;
}

.listings-header {
    margin-bottom: 4rem;
    max-width: 750px;
}

.listings-title {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.15;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.listings-desc {
    font-size: 1rem;
    color: #b0b0b0;
    line-height: 1.7;
}

.listings-carousel {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.carousel-btn {
    background: none;
    border: none;
    color: #ffffff;
    font-size: 2.5rem;
    cursor: pointer;
    transition: transform 0.2s, color 0.2s;
    flex-shrink: 0;
    padding: 0 10px;
}

.carousel-btn:hover {
    color: var(--primary-brand);
    transform: scale(1.1);
}

.listings-grid {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scrollbar-width: none;
    scroll-behavior: smooth;
    padding-bottom: 1rem;
}

.listings-grid::-webkit-scrollbar {
    display: none;
}

.listing-card {
    flex: 0 0 calc(33.333% - 1rem);
    min-width: 320px;
    background-color: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
}

.listing-img {
    height: 220px;
    width: 100%;
}

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

.listing-body {
    padding: 1.25rem 1.25rem 1rem;
    flex-grow: 1;
}

.listing-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.listing-loc {
    font-size: 0.85rem;
    color: #555;
    margin-bottom: 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.listing-loc i {
    color: #888;
}

.listing-price {
    font-size: 1.15rem;
    font-weight: 800;
    color: #1a1a1a;
}

.listing-footer {
    border-top: 1px solid #f0f0f0;
    padding: 1rem 1.25rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #ffffff;
}

.listing-stat {
    font-size: 0.75rem;
    color: #444;
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-weight: 600;
}

.listings-action {
    text-align: center;
    padding-bottom: 2rem;
}

.listings-action .btn-more {
    display: inline-block;
    padding: 0.8rem 2.5rem;
    background-color: var(--primary-brand);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 30px;
    transition: background-color 0.3s;
}

.listings-action .btn-more:hover {
    background-color: #B0052D;
}

/* --- Trusted Section --- */
.trusted-section {
    background-color: #ffffff;
    padding: 8rem 6rem;
}

.trusted-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.trusted-title {
    color: #222;
    font-size: 1.15rem;
    font-weight: 700;
    line-height: 1.3;
    min-width: 200px;
    letter-spacing: 0.5px;
}

.trusted-logos {
    display: flex;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
    justify-content: center;
    flex: 1;
}

.trusted-logos img {
    height: 90px;
    max-width: 220px;
    object-fit: contain;
    opacity: 0.85;
    transition: all 0.3s ease;
}

.trusted-logos img:hover {
    opacity: 1;
}

/* --- Story Section --- */
.story-section {
    background-color: #f7f3ee;
    padding: 2rem 8rem 6rem 8rem;
}

.story-container {
    display: flex;
    align-items: center;
    gap: 6rem;
    max-width: 1400px;
    margin: 0 auto;
}

.story-image {
    flex: 1.15;
    display: flex;
}

.story-image img {
    width: 100%;
    height: 700px;
    object-fit: cover;
    object-position: top;
}

.story-content-wrapper {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 0;
}

.story-content {
    max-width: 550px;
}

.story-subtitle {
    font-size: 0.85rem;
    font-weight: 700;
    color: #444;
    letter-spacing: 1.5px;
    margin-bottom: 2rem;
    text-transform: uppercase;
}

.story-title {
    font-size: 50px;
    font-weight: 600;
    line-height: 1.15;
    color: #333;
    margin-bottom: 2rem;
    letter-spacing: 0.5px;
}

.story-title .highlight-brand {
    color: #E8073A;
}

.story-desc {
    font-size: 1.05rem;
    color: #888;
    line-height: 1.8;
    margin-bottom: 4rem;
}

.story-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem 2rem;
}

.stat-item {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 300;
    color: #1a1a1a;
    line-height: 1;
    margin-bottom: 0.8rem;
    letter-spacing: -1px;
}

.stat-label {
    font-size: 0.9rem;
    font-weight: 700;
    color: #333;
    letter-spacing: 0.5px;
}

/* --- Testimonials Section --- */
.testimonials-section {
    background-color: #f7f3ee;
    padding: 5rem 8rem 8rem 4rem;
}

.testimonials-container {
    max-width: 1400px;
    margin: 0 auto;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 5rem;
}

.testimonials-subtitle {
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--primary-brand);
    letter-spacing: 2px;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.testimonials-title {
    font-size: 50px;
    font-weight: 700;
    line-height: 1.2;
    color: #1a1a1a;
    letter-spacing: -0.5px;
}

.testimonials-title .highlight-brand {
    color: var(--primary-brand);
    position: relative;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.testimonial-card {
    background-color: #ffffff;
    padding: 2.5rem 2.5rem;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: -20px;
    right: 20px;
    font-size: 15rem;
    font-family: Georgia, serif;
    color: var(--primary-brand);
    opacity: 0.05;
    line-height: 1;
    z-index: 0;
    pointer-events: none;
}

.stars,
.testimonial-text,
.testimonial-user {
    position: relative;
    z-index: 1;
}

.stars {
    color: #FFB800;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    display: flex;
    gap: 5px;
}

.testimonial-text {
    font-size: 1.1rem;
    color: #4a4a4a;
    line-height: 1.7;
    margin-bottom: 2rem;
    font-weight: 500;
    flex: 1;
}

.testimonial-user {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: auto;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 1.5rem;
}

.testimonial-user img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.user-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.user-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: -0.2px;
}

.user-location {
    font-size: 0.8rem;
    color: var(--primary-brand);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
}



/* --- Video Section --- */
.video-section {
    background: linear-gradient(to bottom, #f7f3ee 50%, #ffffff 50%);
    padding: 0 4rem;
}

.video-container {
    max-width: 1400px;
    margin: 0 auto;
}

.video-wrapper {
    position: relative;
    width: 100%;
}

.video-wrapper img {
    width: 100%;
    height: 700px;
    object-fit: cover;
    display: block;
}

.play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.play-overlay:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translate(-50%, -50%) scale(1.05);
}

.play-overlay i {
    color: white;
    font-size: 24px;
    margin-left: 5px;
}

/* --- Contact Section --- */
.contact-section {
    background-color: #ffffff;
    padding: 7rem 4rem;
    display: flex;
    justify-content: center;
}

.contact-container {
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
    gap: 6rem;
}

.contact-left {
    flex: 1;
    max-width: 480px;
}

.contact-subtitle {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: #444;
    margin-bottom: 2rem;
    text-transform: uppercase;
}

.contact-title {
    font-size: 45px;
    font-weight: 700;
    line-height: 1.15;
    color: #222;
    margin-bottom: 2rem;
    letter-spacing: 0.5px;
    margin-top: -10px;
}

.contact-desc {
    font-size: 1.05rem;
    color: #777;
    line-height: 1.7;
    margin-bottom: 3.5rem;
    text-align: justify;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.info-icon {
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--primary-brand);
    font-size: 1.25rem;
}

.info-icon i {
    /* removed font-weight override to allow Font Awesome to use its default weights */
}

.info-text {
    font-size: 1rem;
    color: #666;
}

.info-text.font-bold {
    font-weight: 700;
    color: #222;
    letter-spacing: 0.5px;
}

.contact-right {
    flex: 1.1;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: flex;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    flex: 1;
}

.form-group label {
    font-size: 0.95rem;
    font-weight: 600;
    color: #222;
}

.form-group label .required {
    color: #e74c3c;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 18px 20px;
    border: 1px solid #eaeaea;
    border-radius: 8px;
    font-size: 0.95rem;
    font-family: inherit;
    color: #333;
    outline: none;
    transition: border-color 0.3s;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #bbb;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #ccc;
}

.form-group textarea {
    height: 180px;
    resize: none;
}

.form-agreement {
    margin-top: 10px;
    margin-bottom: 25px;
}

.btn-send {
    background-color: var(--primary-brand);
    color: #ffffff;
    border: none;
    padding: 16px 35px;
    border-radius: 6px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    width: fit-content;
}

.btn-send:hover {
    background-color: #d0002f;
}

/* --- Footer Section --- */
.footer-section {
    background-color: #17110e;
    /* Dark brown / blackish */
    color: #dfdfdf;
    padding-top: 6rem;
    position: relative;
    z-index: 1;
    /* Keep below floating widgets */
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1250px;
    margin: 0 auto;
    padding: 0 4rem 5rem;
    gap: 4rem;
}

.footer-col {
    display: flex;
    flex-direction: column;
}

.col-logo {
    flex: 1.5;
    padding-right: 2rem;
}

.col-logo .logo {
    margin-bottom: 1.5rem;
}

.col-logo .logo-title {
    color: #fff;
}

.col-logo .logo-subtitle {
    color: #fff;
}

.footer-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #a09d9a;
}

.col-contact {
    flex: 1;
}

.col-links {
    flex: 0.8;
}

.col-social {
    flex: 1;
}

.footer-title {
    font-size: 1.15rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 2rem;
}

.footer-link,
.footer-text {
    font-size: 0.95rem;
    color: #a09d9a;
    line-height: 1.6;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-link:hover {
    color: var(--primary-brand);
}

.mt-3 {
    margin-top: 1.5rem;
}

.footer-menu {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.footer-menu a {
    text-decoration: none;
    color: #a09d9a;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.footer-menu a:hover {
    color: var(--primary-brand);
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s;
}

.social-icons a:hover {
    border-color: var(--primary-brand);
    color: var(--primary-brand);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    /* faint line */
    padding: 2rem 0;
}

.footer-bottom-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1250px;
    margin: 0 auto;
    padding: 0 4rem;
}

.copyright {
    font-size: 0.85rem;
    color: #a09d9a;
}

.footer-legal-links {
    display: flex;
    gap: 20px;
}

.legal-link {
    font-size: 0.85rem;
    color: #a09d9a;
    text-decoration: none;
    transition: color 0.3s;
}

.legal-link:hover {
    color: var(--primary-brand);
}

/* --- Smooth Scroll Animation --- */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered animation for grid items */
.services-grid .service-card:nth-child(1) {
    transition-delay: 0.1s;
}

.services-grid .service-card:nth-child(2) {
    transition-delay: 0.2s;
}

.services-grid .service-card:nth-child(3) {
    transition-delay: 0.3s;
}

.services-grid .service-card:nth-child(4) {
    transition-delay: 0.4s;
}

.transform-features .feature-item:nth-child(1) {
    transition-delay: 0.2s;
}

.transform-features .feature-item:nth-child(2) {
    transition-delay: 0.3s;
}

.transform-features .feature-item:nth-child(3) {
    transition-delay: 0.4s;
}

.transform-features .feature-item:nth-child(4) {
    transition-delay: 0.5s;
}

.testimonials-grid .testimonial-card:nth-child(1) {
    transition-delay: 0.1s;
}

.testimonials-grid .testimonial-card:nth-child(2) {
    transition-delay: 0.2s;
}

.testimonials-grid .testimonial-card:nth-child(3) {
    transition-delay: 0.3s;
}

/* --- Hamburger Menu Toggle --- */
.menu-toggle {
    display: none;
    font-size: 1.8rem;
    color: var(--text-white);
    cursor: pointer;
    z-index: 1000;
}

/* --- Comprehensive Responsive Adjustments --- */

/* 1200px (Laptops & Small Desktops) */
@media (max-width: 1200px) {
    .main-title {
        font-size: 4.5rem;
    }

    .header {
        padding: 1.5rem 2rem;
    }

    .main-content {
        padding: 0 2rem;
    }

    .services-section {
        padding: 8rem 4rem 4rem 2rem;
    }

    .trusted-section {
        padding: 6rem 4rem;
    }

    .story-section {
        padding: 2rem 4rem 4rem 4rem;
    }

    .contact-section {
        padding: 5rem 4rem;
    }

    .footer-container,
    .footer-bottom-container {
        padding: 0 2rem;
    }

    .trusted-logos {
        gap: 2rem;
        justify-content: center;
    }
}

/* 992px (Tablets) */
@media (max-width: 992px) {

    /* Header & Mobile Menu */
    .menu-toggle {
        display: block;
    }

    .header-right {
        display: none;
    }

    .header {
        position: relative;
    }

    .navbar {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        height: auto;
        background-color: #121822;
        /* Dark navy resembling the uploaded image */
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding: 2.5rem 0;

        /* Dropdown transition */
        opacity: 0;
        visibility: hidden;
        transform: translateY(-15px);
        transition: all 0.3s ease-in-out;
        z-index: 999;
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    }

    .navbar.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .navbar ul {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
        width: 100%;
    }

    .navbar a {
        font-size: 1.15rem;
        font-weight: 600;
        color: #f7f7f7;
        display: block;
    }

    /* Layout structural changes */
    .bottom-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 3rem;
    }

    .right-bottom {
        max-width: 100%;
    }

    .service-carousel-card {
        flex: 0 0 50%;
    }

    .services-desc {
        position: relative;
        bottom: 0;
        width: 100%;
        margin-top: 1rem;
    }

    .services-header {
        margin-bottom: 3rem;
    }

    .youtube-container {
        flex-direction: column;
        text-align: center;
    }

    .youtube-left {
        flex: none;
        width: 100%;
    }

    .youtube-right {
        width: 100%;
    }

    .youtube-section {
        padding: 4rem 2rem;
    }

    .transform-container,
    .story-container,
    .contact-container {
        flex-direction: column;
        gap: 3rem;
    }

    .transform-image-wrapper {
        width: 100%;
    }

    .transform-image-wrapper img {
        width: 100%;
        height: auto;
        aspect-ratio: 4 / 5;
        object-fit: cover;
    }

    .story-image {
        order: -1;
        width: 100%;
    }

    .story-image img {
        width: 100%;
        height: auto;
        aspect-ratio: 4 / 5;
        object-fit: cover;
    }

    .subscribe-container {
        flex-direction: column;
        text-align: left;
        align-items: flex-start;
    }

    .subscribe-title {
        font-size: 2.3rem;
    }

    .subscribe-form-area {
        width: 100%;
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-left {
        max-width: 100%;
    }

    .footer-container {
        flex-direction: column;
        gap: 3rem;
        padding-bottom: 3rem;
    }

    .col-logo,
    .col-contact,
    .col-links,
    .col-social {
        width: 100%;
        padding-right: 0;
    }
}

/* 768px (Mobile Landscape) */
@media (max-width: 768px) {
    .hero-section {
        height: 85vh;
    }

    .main-content {
        padding: 0 2.5rem;
        margin-top: 0;
    }

    .main-title {
        font-size: 3.5rem;
        margin-bottom: 1.2rem;
    }

    .hero-desc {
        font-size: 1rem;
        max-width: 100%;
        margin-bottom: 2rem;
    }

    .experience .number {
        font-size: 8rem;
    }

    .services-section {
        padding: 4rem 2rem;
    }

    .services-title {
        padding-left: 0;
    }

    .service-carousel-card {
        flex: 0 0 96%;
        padding: 0;
        min-width: unset;
    }

    .services-carousel-wrapper {
        position: relative;
    }

    .services-carousel-wrapper>.carousel-btn {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        z-index: 20;
        background: rgba(0, 0, 0, 0.45);
        color: #fff;
        width: 36px;
        height: 36px;
        border-radius: 50%;
        font-size: 1rem;
    }

    .services-carousel-wrapper>.carousel-btn:hover {
        background: rgba(0, 0, 0, 0.7);
        transform: translateY(-50%) scale(1);
    }

    .services-carousel-wrapper>.prev-btn {
        left: 8px;
    }

    .services-carousel-wrapper>.next-btn {
        right: 8px;
    }

    .trusted-section {
        padding: 4rem 2rem;
    }

    .trusted-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 2rem;
    }

    .listings-section {
        padding: 4rem 2rem;
    }

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

    .listing-card {
        flex: 0 0 calc(50% - 0.75rem);
        min-width: 240px;
    }

    .youtube-right {
        position: relative;
    }

    .youtube-carousel-track {
        gap: 0;
    }

    .youtube-right > .carousel-btn {
        position: absolute;
        top: 45%; 
        transform: translateY(-50%);
        z-index: 20;
        background: rgba(0, 0, 0, 0.45);
        color: #fff;
        width: 36px;
        height: 36px;
        border-radius: 50%;
        font-size: 1.1rem;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0;
        border: 2px solid rgba(255, 255, 255, 0.4);
    }

    .youtube-right > .prev-btn {
        left: 5px;
    }

    .youtube-right > .next-btn {
        right: 5px;
    }

    .youtube-video {
        flex: 0 0 100%;
        min-width: unset;
        margin: 0;
    }

    .trusted-logos {
        justify-content: flex-start;
    }

    .transform-section {
        padding: 2rem 2rem 5rem 2rem;
    }

    .transform-features {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .story-section {
        padding: 2rem 2rem 4rem 2rem;
    }

    .story-stats {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .testimonials-section {
        padding: 4rem 2rem;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-card {
        padding: 2rem 1.5rem;
    }

    .video-section {
        padding: 0 2rem;
    }

    .video-wrapper img {
        width: 100%;
        height: auto;
        aspect-ratio: 16 / 9;
        object-fit: cover;
    }

    .contact-section {
        padding: 4rem 2rem;
    }

    .form-row {
        flex-direction: column;
        gap: 1.5rem;
    }

    .reveal {
        transform: translateY(30px);
    }

    .footer-section {
        padding-top: 3.5rem;
    }
}

/* 480px (Mobile Portrait) */
@media (max-width: 480px) {
    .hero-section {
        height: 80vh;
    }

    .header {
        padding: 1.2rem;
    }

    .main-content {
        padding: 0 1.5rem;
        margin-top: 0;
    }

    .main-title {
        font-size: 2.5rem;
        line-height: 1.15em;
        margin-bottom: 1rem;
    }

    .hero-desc {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .btn-explore {
        padding: 0.8rem 2rem;
        font-size: 0.9rem;
    }

    .left-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 2rem;
    }

    .experience .number {
        font-size: 6rem;
    }

    .experience .exp-text {
        font-size: 1.2rem;
    }

    .presentation {
        width: 150px;
        height: 150px;
    }

    .circle-text svg {
        width: 150px;
        height: 150px;
    }

    .services-title {
        font-size: 26px;
    }

    .transform-title,
    .story-title,
    .testimonials-title,
    .contact-title {
        font-size: 36px;
    }

    .subscribe-title {
        font-size: clamp(1.2rem, 7vw, 1.6rem);
        margin-bottom: 1.2rem;
        line-height: 1.3;
    }

    .youtube-heading {
        font-size: 1.8rem;
        margin-bottom: 1.2rem;
        text-transform: none;
        white-space: nowrap;
        max-width: 100%;
    }

    .subscribe-form {
        flex-direction: row;
        padding: 6px;
        border-radius: 8px;
        background-color: #fff;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    }

    .input-wrapper {
        padding: 5px 10px;
        margin-bottom: 0;
        flex: 1;
    }

    .btn-subscribe {
        width: auto;
        padding: 0 1.2rem;
        height: 44px;
        font-size: 0.95rem;
    }

    .btn-send {
        width: 100%;
    }

    .transform-image-wrapper img {
        width: 100%;
        height: auto;
        aspect-ratio: 4 / 5;
        object-fit: cover;
    }

    .story-image img {
        width: 100%;
        height: auto;
        aspect-ratio: 4 / 5;
        object-fit: cover;
    }

    .trusted-container {
        align-items: center;
        text-align: center;
    }

    .trusted-title {
        min-width: auto;
        margin-bottom: 2rem;
    }

    .trusted-logos {
        justify-content: center;
        gap: 1.5rem;
    }

    .trusted-logos img {
        max-width: 90px;
        height: auto;
    }

    .trusted-logos img[alt="Confident Group"],
    .trusted-logos img[alt="Classic"] {
        max-width: 130px;
    }

    .listings-section {
        padding: 3rem 1rem;
    }

    .listings-carousel {
        position: relative;
        gap: 0;
    }

    .listings-carousel > .carousel-btn {
        position: absolute;
        top: 45%; 
        transform: translateY(-50%);
        z-index: 20;
        background: rgba(0, 0, 0, 0.45);
        color: #fff;
        width: 36px;
        height: 36px;
        border-radius: 50%;
        font-size: 1.1rem;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0;
        border: 2px solid rgba(255, 255, 255, 0.4);
    }

    .listings-carousel > .prev-btn {
        left: 5px;
    }

    .listings-carousel > .next-btn {
        right: 5px;
    }

    .listing-card {
        flex: 0 0 100%;
        min-width: unset;
        margin: 0;
    }

    /* Carousel arrow buttons are now explicitly visible on mobile */

    .service-card {
        padding: 2rem 1.5rem;
    }
}

/* --- Premium Navigation for Legal Pages --- */
.premium-nav {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(18, 24, 34, 0.85) !important;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2) !important;
    transition: all 0.3s ease;
}

.premium-nav .header {
    padding: 1.2rem 4rem;
}

.premium-nav .navbar a {
    position: relative;
    padding-bottom: 5px;
    font-weight: 500;
    letter-spacing: 0.5px;
    opacity: 0.85;
}

.premium-nav .navbar a:hover,
.premium-nav .navbar a.active {
    opacity: 1;
    color: #fff;
}

.premium-nav .navbar a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 50%;
    background-color: var(--primary-brand);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.premium-nav .navbar a:hover::after,
.premium-nav .navbar a.active::after {
    width: 100%;
}

.premium-nav .btn-contact {
    background: transparent;
    border: 1px solid var(--primary-brand);
    color: var(--text-white);
    transition: all 0.3s ease;
    border-radius: 50px;
    padding: 0.6rem 1.8rem;
}

.premium-nav .btn-contact:hover {
    background: var(--primary-brand);
    box-shadow: 0 4px 15px rgba(232, 7, 58, 0.3);
    transform: translateY(-2px);
}

/* --- Legal Pages Content --- */
.legal-page-content {
    padding: 4rem 4rem;
    max-width: 1000px;
    margin: 0;
    min-height: 50vh;
}

.legal-page-title {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: #111;
    letter-spacing: -0.5px;
    border-bottom: 2px solid var(--primary-brand);
    padding-bottom: 0.5rem;
    display: inline-block;
}

.legal-page-text {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #444;
}

.legal-page-subtitle {
    margin-bottom: 1rem;
    font-weight: 500;
    font-size: 1.1rem;
    color: #222;
}

.legal-page-list {
    padding-left: 1.5rem;
    margin: 0;
}

.legal-page-list li {
    margin-bottom: 0.5rem;
}

/* Mobile Responsiveness for Legal Pages */
@media (max-width: 768px) {
    .legal-page-content {
        padding: 3rem 1.5rem;
    }
    
    .legal-page-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 480px) {
    .legal-page-content {
        padding: 2.5rem 1.2rem;
    }
    
    .legal-page-title {
        font-size: 1.8rem;
    }
    
    .legal-page-text {
        font-size: 0.95rem;
    }
    
    .legal-page-subtitle {
        font-size: 1rem;
    }
}