:root {
    --primary-orange: #ff6a00;
    --primary-blue: #0f89d1;
    --section-blue: #3aa0dc;
    --text-dark: #1a1a1a;
    --text-light: #ffffff;
    --text-gray: #666666;
    --bg-light: #ffffff;
    --bg-gray: #f5f5f5;
    --font-main: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3 {
    font-weight: 700;
    line-height: 1.2;
}

.text-orange {
    color: var(--primary-orange);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-blue {
    background-color: var(--primary-blue);
    color: var(--text-light);
}

.btn-blue:hover {
    background-color: #0b6baf;
}

.btn-orange {
    background-color: var(--primary-orange);
    color: var(--text-light);
}

.btn-orange:hover {
    background-color: #e65c00;
}

.btn-dark {
    background-color: rgba(255, 255, 255, 0.2);
    color: var(--text-light);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-dark:hover {
    background-color: rgba(255, 255, 255, 0.3);
}

/* Header */
.header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 20px 0;
    transition: background-color 0.3s ease;
}

.header.scrolled {
    position: fixed;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 100px;
    object-fit: contain;
}

.navbar {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--text-light);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.search-btn {
    background: none;
    border: none;
    color: var(--text-light);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hamburger-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text-light);
    cursor: pointer;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    color: var(--text-light);
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.hero-slider .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out, transform 10s linear;
    transform: scale(1);
}

.hero-slider .slide.active {
    opacity: 1;
    transform: scale(1.1); /* Ken Burns effect */
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 650px;
    margin: 0 auto;
    text-align: center;
}

.hero-title {
    font-size: 64px;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 auto 40px auto;
    max-width: 500px;
    text-align: center;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.hero-buttons .btn {
    padding: 15px 35px;
    border-radius: 8px;
    font-size: 13px;
    letter-spacing: 1px;
}

.hero-bottom {
    position: absolute;
    bottom: 40px;
    left: 0;
    width: 100%;
    z-index: 3;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
}

.hero-bottom-container {
    display: flex;
    justify-content: center;
    gap: 80px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.feature-icon {
    width: 40px;
    height: 40px;
    background-color: var(--primary-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.feature-icon svg {
    width: 20px;
    height: 20px;
}

.feature-text {
    font-weight: 600;
    font-size: 16px;
}

/* Memorable Section */
.memorable-section {
    padding: 120px 0;
    position: relative;
    background-color: var(--bg-light);
    overflow: hidden;
}

.circles-bg {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 800px;
    height: 800px;
    z-index: 1;
    pointer-events: none;
}

.circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 1px solid rgba(0, 130, 203, 0.1);
    border-radius: 50%;
}

.circle-1 { width: 300px; height: 300px; }
.circle-2 { width: 500px; height: 500px; }
.circle-3 { width: 700px; height: 700px; }
.circle-4 { width: 900px; height: 900px; }

.memorable-container {
    display: flex;
    align-items: center;
    gap: 80px;
    position: relative;
    z-index: 2;
}

.memorable-left {
    flex: 1;
}

.memorable-left h2 {
    font-size: 48px;
    letter-spacing: -1px;
}

.memorable-right {
    flex: 1;
}

.memorable-right p {
    color: var(--text-gray);
    margin-bottom: 20px;
    font-size: 15px;
    text-align: justify;
}

.read-more {
    display: inline-block;
    color: var(--primary-blue);
    font-weight: 700;
    font-size: 13px;
    margin-top: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Leading Consolidator Section */
.leading-section {
    position: relative;
    padding-top: 80px;
    padding-bottom: 200px; /* Space for overlapping cards */
}

.blue-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 350px;
    background-color: var(--section-blue);
    z-index: 1;
}

.leading-container {
    position: relative;
    z-index: 2;
}

.leading-text-grid {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    color: var(--text-light);
}

.leading-text-grid h2 {
    flex: 1;
    font-size: 36px;
}

.leading-text-grid p {
    flex: 1;
    font-size: 15px;
    opacity: 0.9;
    text-align: justify;
}

/* Services Cards */
.cards-container {
    position: relative;
    z-index: 3;
    margin-top: 60px;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    height: 450px;
    display: flex;
    align-items: flex-end;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
}

.card-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

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

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0.8) 100%);
}

.card-content {
    position: relative;
    z-index: 2;
    padding: 30px;
    color: var(--text-light);
}

.card-content h3 {
    font-size: 22px;
    color: var(--primary-orange);
    margin-bottom: 10px;
}

.card-content p {
    font-size: 14px;
    opacity: 0.9;
}

/* Accommodations Section */
.accommodations-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.accommodation-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr 1.5fr;
    grid-template-rows: 250px 300px;
    gap: 20px;
}

.acc-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
}

.acc-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.acc-item:hover img {
    transform: scale(1.05);
}

.acc-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 50%);
}

.acc-item h3 {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: var(--text-light);
    font-size: 24px;
    z-index: 2;
}

.item-hotels {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
}

.item-apartment {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
}

.item-resorts {
    grid-column: 3 / 4;
    grid-row: 1 / 2;
}

.item-villas {
    grid-column: 2 / 4;
    grid-row: 2 / 3;
}

/* Responsive Design */
@media (max-width: 992px) {
    .memorable-container, .leading-text-grid {
        flex-direction: column;
        gap: 40px;
    }
    
    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .accommodation-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }
    
    .item-hotels {
        grid-column: 1 / 3;
        grid-row: 1;
        height: 300px;
    }
    
    .item-apartment {
        grid-column: 1 / 2;
        grid-row: 2;
    }
    
    .item-resorts {
        grid-column: 2 / 3;
        grid-row: 2;
    }
    
    .item-villas {
        grid-column: 1 / 3;
        grid-row: 3;
        height: 300px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 48px;
    }
    
    .hero-bottom-container {
        flex-direction: column;
        gap: 20px;
    }
    
    .cards-grid {
        grid-template-columns: 1fr;
    }
    
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: rgba(0, 0, 0, 0.95);
        padding: 20px;
        text-align: center;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .search-btn {
        display: none;
    }
    
    .hamburger-btn {
        display: block;
    }
}

/* Footer Section */
.footer {
    background-color: #2b2b25; /* Dark brown/grey from screenshot */
    color: #a0a09e;
    padding: 80px 0 40px;
    font-size: 14px;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.footer-col {
    flex: 1;
    min-width: 200px;
}

.brand-col {
    flex: 1.5;
}

.footer-logo {
    height: 60px;
    margin-bottom: 20px;
}

.footer-col h4 {
    color: var(--text-light);
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col a {
    color: #a0a09e;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: var(--primary-orange);
}

.contact-col p {
    margin-bottom: 15px;
    line-height: 1.8;
}

.contact-col strong {
    color: var(--text-light);
}

.phone-btn {
    display: inline-block;
    padding: 12px 25px;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    border-radius: 8px;
    margin-top: 15px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.phone-btn:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

/* --- About Us Page Styles --- */

.about-hero {
    background-color: #2d4a6e; /* Deep blue from about screenshot */
    padding: 200px 0 100px;
    position: relative;
    color: var(--text-light);
    overflow: hidden;
}

.about-hero-container {
    display: flex;
    justify-content: space-between;
    gap: 60px;
}

.about-hero-left {
    flex: 1;
    max-width: 600px;
}

.about-hero-left h5 {
    color: var(--primary-orange);
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.about-hero-left h1 {
    font-size: 42px;
    line-height: 1.3;
}

.about-hero-right {
    flex: 1;
    border-left: 2px solid rgba(255, 255, 255, 0.2);
    padding-left: 40px;
    padding-top: 36px;
    font-size: 15px;
    opacity: 0.9;
    text-align: justify;
}

.about-image-section {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.why-us-section {
    background-color: #2d4a6e;
    color: var(--text-light);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.why-us-section .circles-bg .circle {
    border-color: rgba(255, 255, 255, 0.1);
}

.why-container {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    position: relative;
    z-index: 2;
}

.why-left {
    flex: 1;
}

.why-left h2 {
    font-size: 48px;
    color: #6bb0db; /* Light blue accent */
    line-height: 1.2;
}

.why-right {
    flex: 1.5;
    font-size: 15px;
    opacity: 0.9;
}

.why-right p {
    margin-bottom: 20px;
    text-align: justify;
}

.why-right p:first-child {
    font-weight: 600;
}

.trusted-solutions-section {
    background-color: var(--bg-light);
    padding: 120px 0 0;
}

.trusted-container {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 80px;
}

.trusted-left {
    flex: 1;
}

.trusted-left h2 {
    font-size: 42px;
    color: #6bb0db;
    line-height: 1.2;
}

.trusted-right {
    flex: 1.5;
    font-size: 15px;
    color: var(--text-gray);
}

.trusted-right p {
    margin-bottom: 20px;
    text-align: justify;
}

.trusted-right p:first-child {
    font-weight: 600;
    color: var(--text-dark);
}

.trusted-image {
    width: 100%;
    height: 450px;
    object-fit: cover;
    display: block;
}

.nigerias-choice-section {
    background-color: var(--bg-light);
    padding: 120px 0;
}

.choice-container {
    display: flex;
    justify-content: space-between;
    gap: 60px;
}

.choice-left {
    flex: 1;
}

.choice-left h2 {
    font-size: 32px;
    color: var(--text-gray);
    margin-bottom: 30px;
    line-height: 1.3;
}

.choice-left p {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
    text-align: justify;
}

.choice-right {
    flex: 1;
    font-size: 15px;
    color: var(--text-gray);
    margin-top: 113px;
    text-align: justify;
}

/* Services Pages */
.services-hero {
    background-color: #2d4a6e;
    color: var(--text-light);
    padding: 160px 0 80px;
}

.services-hero-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
}

.services-hero-left {
    flex: 1.2;
}

.services-hero-left h5 {
    color: var(--primary-orange);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
}

.services-hero-left h1 {
    font-size: 38px;
    line-height: 1.3;
}

.services-hero-right {
    flex: 1;
    border-left: 2px solid rgba(255, 255, 255, 0.2);
    padding-left: 30px;
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.services-main-image-container {
    width: 100%;
    height: 500px;
    background-size: cover;
    background-position: center top;
    background-attachment: fixed;
    background-repeat: no-repeat;
}

.whether-section {
    background-color: white;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.circles-bg-right {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 600px;
    height: 600px;
    z-index: 1;
}

.circles-bg-right .circle {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.05);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.circles-bg-right .circle-1 { width: 100px; height: 100px; }
.circles-bg-right .circle-2 { width: 300px; height: 300px; }
.circles-bg-right .circle-3 { width: 500px; height: 500px; }
.circles-bg-right .circle-4 { width: 700px; height: 700px; }

.whether-container {
    display: flex;
    position: relative;
    z-index: 2;
    gap: 60px;
}

.whether-left {
    flex: 1;
}

.whether-left h2 {
    font-size: 42px;
    color: #6bb0db;
}

.whether-right {
    flex: 1.5;
}

.whether-right ul {
    list-style-type: disc;
    padding-left: 20px;
}

.whether-right li {
    margin-bottom: 15px;
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.6;
}

.service-row {
    padding: 80px 0;
}

.bg-dark-blue {
    background-color: #2d4a6e;
    color: white;
}

.bg-white {
    background-color: white;
    color: var(--text-dark);
}

.service-row-container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.service-row-container.row-reverse {
    flex-direction: row-reverse;
}

.service-row-img {
    flex: 1;
}

.service-row-img img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    display: block;
}

.service-row-content {
    flex: 1;
}

.service-icon {
    margin-bottom: 20px;
}

.service-row-content h3 {
    font-size: 28px;
    color: #0f89d1;
    margin-bottom: 20px;
}

.bg-dark-blue .service-row-content h3 {
    color: #6bb0db;
}

.service-row-content p {
    margin-bottom: 15px;
    font-size: 15px;
    line-height: 1.6;
    text-align: justify;
}

.bg-dark-blue .service-row-content p {
    color: rgba(255, 255, 255, 0.9);
}

.bg-white .service-row-content p {
    color: var(--text-gray);
}

/* Contact Banner */
.contact-banner-wrapper {
    background-color: #2b2b25;
    padding: 0;
}

.contact-banner {
    background-color: #0f89d1;
    border-radius: 10px;
    padding: 40px 40px 40px 220px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    transform: translateY(-50px);
    margin-bottom: -50px;
}

.contact-expert-img {
    height: 180px;
    width: auto;
    position: absolute;
    bottom: 0;
    left: 40px;
}

.contact-banner-content {
    margin-left: 0;
    color: white;
}

.contact-banner-btn {
    flex-shrink: 0;
    margin-left: 30px;
}

.contact-banner-content h2 {
    font-size: 32px;
    margin-bottom: 5px;
}

.contact-banner-content p {
    font-size: 15px;
    opacity: 0.9;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .footer-container, .about-hero-container, .why-container, .trusted-container, .choice-container,
    .services-hero-container, .whether-container, .service-row-container, .service-row-container.row-reverse {
        flex-direction: column;
    }
    .about-hero-right {
        border-left: none;
        padding-left: 0;
        border-top: 2px solid rgba(255, 255, 255, 0.2);
        padding-top: 30px;
    }
    .hero-content {
        margin: 0 auto;
        padding: 0 20px;
    }
    .contact-banner {
        flex-direction: column;
        text-align: center;
        padding: 40px 20px 200px;
    }
    .contact-expert-img {
        left: 50%;
        transform: translateX(-50%);
        height: 170px;
    }
    .contact-banner-content {
        margin-bottom: 20px;
    }
    .contact-banner-btn {
        margin-left: 0;
    }
    .contact-info-grid {
        grid-template-columns: 1fr;
    }
    .banner-container {
        flex-direction: column;
    }
    .banner-left {
        border-right: none;
        padding-right: 0;
        border-bottom: 1px solid rgba(255,255,255,0.2);
        padding-bottom: 30px;
    }
}

/* Contact Page Styles */
.map-container iframe {
    width: 100%;
    display: block;
}

.text-center { text-align: center; }
.text-blue { color: #0f89d1; }
.mb-50 { margin-bottom: 50px; }
.mt-15 { margin-top: 15px; }

.contact-info-section {
    padding: 80px 0;
    background-color: white;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.contact-info-box .info-icon {
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
}

.contact-info-box h3 {
    color: #0f89d1;
    font-size: 20px;
    margin-bottom: 20px;
}

.contact-info-box p {
    font-size: 14px;
    color: var(--text-gray);
    margin-bottom: 10px;
}

.contact-info-box a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s;
}

.contact-info-box a:hover {
    color: var(--primary-orange);
}

.contact-form-section {
    padding: 60px 0 100px;
    background-color: white;
}

.contact-form-container {
    max-width: 700px;
    margin: 0 auto;
}

.form-subtitle {
    color: var(--text-gray);
    margin-bottom: 40px;
    font-size: 15px;
    line-height: 1.6;
}

.contact-form {
    background-color: #fafafa;
    border: 1px solid #eee;
    padding: 40px;
    border-radius: 8px;
}

.form-group {
    margin-bottom: 25px;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    background-color: #fcfcfc;
    font-family: inherit;
    transition: border-color 0.3s;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #0f89d1;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}
.form-row .form-group {
    flex: 1;
    margin-bottom: 0;
}
@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
        gap: 25px;
    }
}

.dark-blue-banner {
    background-color: #2d4a6e;
    color: white;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.dark-blue-banner .circles-bg .circle {
    border-color: rgba(255, 255, 255, 0.05);
}

.banner-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 2;
}

.banner-left {
    flex: 2;
    border-right: 1px solid rgba(255,255,255,0.2);
    padding-right: 40px;
}

.banner-left p {
    font-size: 16px;
    line-height: 1.6;
    color: #6bb0db;
}

.banner-right {
    flex: 1;
}

.banner-right p {
    font-size: 15px;
    line-height: 1.6;
    opacity: 0.9;
}

.footer-contact-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
}

.footer-contact-btn {
    display: block;
    background-color: #3b3b33;
    color: white;
    text-decoration: none;
    padding: 12px 20px;
    border-radius: 4px;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.footer-contact-btn:hover {
    background-color: #4a4a40;
}

.email-btn {
    word-break: break-all;
    line-height: 1.4;
    font-size: 13px;
}

/* Legal Pages */
.legal-section {
    padding: 80px 0;
    background-color: white;
}
.legal-container {
    max-width: 800px;
    margin: 0 auto;
}
.legal-container h2 {
    color: #0f89d1;
    margin: 40px 0 20px;
    font-size: 28px;
}
.legal-container h3 {
    color: var(--text-dark);
    margin: 30px 0 15px;
    font-size: 22px;
}
.legal-container h4 {
    color: var(--text-dark);
    margin: 20px 0 10px;
    font-size: 18px;
}
.legal-container p {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: justify;
}
.legal-container ul {
    list-style-type: disc;
    padding-left: 20px;
    margin-bottom: 20px;
}
.legal-container li {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 10px;
    text-align: justify;
}
.legal-container a {
    color: var(--primary-orange);
    text-decoration: none;
}
.legal-container a:hover {
    text-decoration: underline;
}
