:root {
    --primary-navy: #0b2545;
    --secondary: rgb(237, 245, 251);
    --accent-orange: #f26522;
    --text-dark: #1d2939;
    --text-subtle: #475467;
    --badge-bg: #f2f4f7;
    --muted-foreground: #88a2b9;
    --font-family: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-family);
    color: var(--text-dark);
    overflow-x: hidden;
}
.terms-section {
    position: relative;
    padding: 110px 0;
    background:
        linear-gradient(135deg, #edf5fb 0%, #ffffff 55%, #f7fbff 100%);
    overflow: hidden;
}

.terms-section .container {
    position: relative;
    z-index: 2;
}

/* Background Shapes */

.terms-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 1;
}

.shape-one {
    width: 320px;
    height: 320px;
    background: rgba(242, 101, 34, 0.18);
    top: -100px;
    left: -100px;
}

.shape-two {
    width: 360px;
    height: 360px;
    background: rgba(11, 37, 69, 0.14);
    right: -120px;
    bottom: -120px;
}

/* Heading */

.terms-badge {
    display: inline-block;
    padding: 11px 24px;
    border-radius: 50px;
    background: rgba(242, 101, 34, 0.12);
    color: var(--accent-orange);
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 24px;
}

.terms-heading {
    font-size: 60px;
    font-weight: 800;
    color: var(--primary-navy);
    margin-bottom: 18px;
    line-height: 1.1;
}

.terms-subtitle {
    max-width: 760px;
    margin: auto;
    color: var(--text-subtle);
    font-size: 18px;
    line-height: 1.8;
}

/* Card */

.terms-card {
    margin-top: 70px;
    padding: 50px;
    border-radius: 34px;

    background: rgba(255, 255, 255, 0.82);

    backdrop-filter: blur(14px);

    border: 1px solid rgba(255, 255, 255, 0.55);

    box-shadow: 0 20px 55px rgba(11, 37, 69, 0.08);
}

/* Block */

.terms-block {
    display: flex;
    gap: 28px;

    padding-bottom: 38px;
    margin-bottom: 38px;

    border-bottom: 1px solid #e8edf3;

    transition: 0.35s ease;
}

.terms-block:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.terms-block:hover {
    transform: translateX(8px);
}

/* Icon */

.terms-icon {
    min-width: 74px;
    height: 74px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 22px;

    background:
        linear-gradient(135deg,
            var(--primary-navy),
            #153e68);

    box-shadow: 0 14px 30px rgba(11, 37, 69, 0.18);
}

.terms-icon i {
    font-size: 28px;
    color: white;
}

/* Content */

.terms-content h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 14px;
}

.terms-content p {
    font-size: 16px;
    line-height: 1.9;
    color: var(--text-subtle);
    margin-bottom: 16px;
}

.terms-content ul {
    padding-left: 20px;
    margin-bottom: 0;
}

.terms-content ul li {
    color: var(--text-subtle);
    line-height: 1.9;
    margin-bottom: 8px;
}

/* Animations */

.terms-heading {
    animation: termsFadeDown 0.9s ease;
}

.terms-card {
    animation: termsFadeUp 1s ease;
}

@keyframes termsFadeDown {
    from {
        opacity: 0;
        transform: translateY(-45px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes termsFadeUp {
    from {
        opacity: 0;
        transform: translateY(55px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */

@media (max-width: 991px) {

    .terms-heading {
        font-size: 48px;
    }

    .terms-card {
        padding: 35px;
    }

    .terms-block {
        flex-direction: column;
    }
}

@media (max-width: 576px) {

    .terms-section {
        padding: 85px 15px;
    }

    .terms-heading {
        font-size: 38px;
    }

    .terms-subtitle {
        font-size: 16px;
    }

    .terms-card {
        padding: 24px;
        border-radius: 26px;
    }

    .terms-content h2 {
        font-size: 23px;
    }

    .terms-icon {
        min-width: 60px;
        height: 60px;
    }

    .terms-icon i {
        font-size: 22px;
    }
}