/* Terms of Service Page Styles */

/* Hero Section Updates */
.hero-text h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin: 0 0 20px 0;
    background: #1a1a1a;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -1px;
}

/* Terms Container */
.terms-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
    text-align: left;
}

.terms-intro {
    text-align: center;
    margin-bottom: 60px;
    padding: 40px;
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

.terms-intro h2 {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 20px 0;
}

.terms-intro p {
    font-size: 16pt;
    line-height: 1.7;
    color: #4a5568;
    margin: 0 0 15px 0;
}

/* Terms Sections */
.terms-section {
    margin-bottom: 40px;
    padding: 30px;
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 16px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.terms-section:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.terms-section h3 {
    font-size: 20px;
    font-weight: 700;
    color: #2d5016;
    margin: 0 0 15px 0;
}

.terms-section h4 {
    font-size: 16pt;
    font-weight: 600;
    color: #1a1a1a;
    margin: 25px 0 10px 0;
}

.terms-section p {
    font-size: 14pt;
    line-height: 1.6;
    color: #4a5568;
    margin: 0 0 15px 0;
}

.terms-section ul {
    margin: 15px 0;
    padding-left: 25px;
}

.terms-section li {
    font-size: 14pt;
    line-height: 1.6;
    color: #4a5568;
    margin-bottom: 8px;
}

/* Terms Footer */
.terms-footer {
    margin-top: 60px;
    padding: 30px;
    background: linear-gradient(145deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 16px;
    text-align: center;
    border: 1px solid rgba(45, 80, 22, 0.1);
}

.terms-footer p {
    font-size: 14pt;
    line-height: 1.6;
    color: #4a5568;
    margin: 0 0 10px 0;
}

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

.terms-footer strong {
    color: #2d5016;
}

/* Responsive Design */
@media (max-width: 768px) {
    .terms-container {
        padding: 20px 15px;
    }
    
    .terms-intro {
        padding: 25px 20px;
        margin-bottom: 40px;
    }
    
    .terms-intro h2 {
        font-size: 24px;
    }
    
    .terms-section {
        padding: 20px;
        margin-bottom: 30px;
    }
    
    .terms-section h3 {
        font-size: 18px;
    }
    
    .terms-section h4 {
        font-size: 15pt;
    }
    
    .terms-section p,
    .terms-section li {
        font-size: 13pt;
    }
    
    .terms-footer {
        padding: 20px;
        margin-top: 40px;
    }
    
    .terms-footer p {
        font-size: 13pt;
    }
}

@media (max-width: 480px) {
    .terms-container {
        padding: 15px 10px;
    }
    
    .terms-intro {
        padding: 20px 15px;
    }
    
    .terms-intro h2 {
        font-size: 20px;
    }
    
    .terms-section {
        padding: 15px;
    }
    
    .terms-section h3 {
        font-size: 16px;
    }
    
    .terms-section h4 {
        font-size: 14pt;
    }
    
    .terms-section p,
    .terms-section li {
        font-size: 12pt;
    }
}
