/* =========================================
   1. HERO SECTION
   ========================================= */
.terms-hero {
    position: relative;
    width: 100%;
    height: 350px;
    min-height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.terms-hero .hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.terms-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.terms-hero .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 20px;
    width: 90%;
    max-width: 800px;
}

.terms-hero .hero-content h1 {
    color: white;
    font-family: "Montserrat", sans-serif;
    font-size: 48px;
    font-weight: 600;
    line-height: 1.2;
    text-shadow: 0px 2px 10px rgba(0, 0, 0, 0.3);
}

/* =========================================
   2. CONTENT SECTION
   ========================================= */
.terms-content-section {
    padding: 80px 20px;
    background-color: white;
}

.terms-container {
    max-width: 1000px;
    margin: 0 auto;
}

.terms-intro {
    margin-bottom: 50px;
    border-bottom: 2px solid rgba(193, 103, 29, 0.2);
    padding-bottom: 30px;
}

.terms-intro p {
    font-family: "Inter", sans-serif;
    font-size: 18px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 20px;
}

.terms-intro p:last-child {
    margin-bottom: 0;
}

.terms-intro a {
    color: #c1671d;
    text-decoration: none;
    font-weight: 500;
}

.terms-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.terms-item h2 {
    color: #c1671d;
    font-family: "Montserrat", sans-serif;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.terms-item h3 {
    color: #444;
    font-family: "Montserrat", sans-serif;
    font-size: 18px;
    font-weight: 600;
    margin: 20px 0 10px;
}

.terms-item p {
    font-family: "Inter", sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 15px;
}

.terms-item ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 20px;
}

.terms-item ul li {
    font-family: "Inter", sans-serif;
    font-size: 16px;
    color: #444;
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.terms-item ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    background-color: #c1671d;
    border-radius: 50%;
}

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 768px) {
    .terms-hero {
        height: 300px;
    }
    
    .terms-hero .hero-content h1 {
        font-size: 32px;
    }
    
    .terms-content-section {
        padding: 50px 20px;
    }
    
    .terms-intro p {
        font-size: 16px;
    }
    
    .terms-item h2 {
        font-size: 20px;
    }
}
