.terms-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f5f7fa, #ffffff);
}

.terms-section .container {
    max-width: 1200px;
    margin: auto;
}

/* HEADER */
.terms-header {
    text-align: center;
    margin-bottom: 50px;
}

.terms-header h2 {
    font-size: 36px;
    color: #0d1b2a;
}

.terms-header p {
    max-width: 600px;
    margin: auto;
    opacity: 0.7;
}

/* LAYOUT */
.terms-wrapper {
    display: flex;
    gap: 40px;
}

/* SIDEBAR */
.terms-sidebar {
    width: 240px;
    position: sticky;
    top: 100px;
}

.terms-sidebar ul {
    list-style: none;
    padding: 0;
}

.terms-sidebar li {
    margin-bottom: 12px;
}

.terms-sidebar a {
    text-decoration: none;
    color: #0d1b2a;
    font-weight: 500;
    transition: 0.3s;
}

.terms-sidebar a:hover {
    color: #C94A2E;
}

/* CONTENT */
.terms-content {
    flex: 1;
}

/* CARD STYLE */
.terms-card {
    background: rgba(255,255,255,0.75);
    backdrop-filter: blur(10px);
    border-radius: 14px;
    padding: 28px;
    margin-bottom: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    transition: 0.3s;
}

.terms-card:hover {
    transform: translateY(-4px);
}

.terms-card h3 {
    margin-bottom: 10px;
    color: #C94A2E;
}

/* CTA */
.terms-card.highlight {
    background: linear-gradient(135deg, #293035, #293035);
    color: #fff;
    text-align: center;
}

.contact-info p {
    margin: 5px 0;
}

/* BUTTON */
.btn-primary {
    display: inline-block;
    margin-top: 15px;
    padding: 12px 24px;
    background: #c47260;
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    transition: 0.3s;
}

.btn-primary:hover {
    background: #C94A2E;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .terms-wrapper {
        flex-direction: column;
    }

    .terms-sidebar {
        width: 100%;
        position: relative;
    }

    .terms-sidebar ul {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }
}


/* ============================= */
/* 🚧 404 SECTION STYLES */
/* ============================= */
.gcb-404-section {
    background: #242424;
    color: #ffffff;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    font-family: 'Poppins', sans-serif;
    overflow: hidden;
}

.gcb-404-container {
    max-width: 1100px;
    width: 100%;
    text-align: center;
    position: relative;
}

/* ============================= */
/* TEXT STYLES */
/* ============================= */
.gcb-404-code {
    font-size: 160px;
    font-weight: 800;
    color: #C94A2E;
    margin: 0;
    letter-spacing: 5px;
    animation: fadeUp 1s ease forwards;
}

.gcb-404-title {
    font-size: 36px;
    margin-top: 10px;
    margin-bottom: 20px;
    animation: fadeUp 1.2s ease forwards;
}

.gcb-404-text {
    max-width: 600px;
    margin: 0 auto 30px;
    font-size: 18px;
    color: #ddd;
    line-height: 1.6;
    animation: fadeUp 1.4s ease forwards;
}

/* ============================= */
/* BUTTON */
/* ============================= */
.gcb-404-btn {
    display: inline-block;
    padding: 14px 34px;
    background: #C94A2E;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(201, 74, 46, 0.3);
    animation: fadeUp 1.6s ease forwards;
}

.gcb-404-btn:hover {
    background: #ffffff;
    color: #242424;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255,255,255,0.2);
}

/* ============================= */
/* VISUAL ELEMENTS */
/* ============================= */
.gcb-404-visual {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.gcb-404-circle {
    width: 300px;
    height: 300px;
    border: 2px solid rgba(201, 74, 46, 0.3);
    border-radius: 50%;
    animation: rotateSlow 20s linear infinite;
}

.gcb-404-line {
    width: 400px;
    height: 2px;
    background: linear-gradient(to right, transparent, #C94A2E, transparent);
    margin: 40px auto 0;
    animation: pulseLine 3s ease-in-out infinite;
}

/* ============================= */
/* ANIMATIONS */
/* ============================= */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes rotateSlow {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes pulseLine {
    0%, 100% {
        opacity: 0.3;
        transform: scaleX(0.8);
    }
    50% {
        opacity: 1;
        transform: scaleX(1);
    }
}

/* ============================= */
/* RESPONSIVE */
/* ============================= */
@media (max-width: 768px) {
    .gcb-404-code {
        font-size: 100px;
    }

    .gcb-404-title {
        font-size: 26px;
    }

    .gcb-404-text {
        font-size: 16px;
    }
}