/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-overlay {
    background: rgba(0, 0, 0, 0.6);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    text-align: center;
    color: #ffffff;
    padding: 20px;
}

.hero-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #BF9B30;
}

.hero-content .subtitle {
    font-size: 1.2rem;
    font-weight: 300;
    opacity: 0.9;
    color: #f5f5f5;
}

/* Terms Container */
.terms-container {
    max-width: 1000px;
    margin: 40px auto;
    padding: 0 20px;
}

.content {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 40px;
}

/* Section Styles */
.section {
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.section.visible {
    opacity: 1;
    transform: translateY(0);
}

.section-title {
    display: flex;
    align-items: center;
    font-size: 1.8rem;
    font-weight: 600;
    color: #BF9B30;
    margin-bottom: 15px;
}

.section-number {
    background: #000000;
  color: white;
  padding: 5px 12px;
  border-radius: 20px;
  margin-right: 10px;
  font-size: 1rem;
  font-weight: 700;
}

.content-text {
    font-size: 1rem;
    color: #333333;
    line-height: 1.8;
}

.bullet-list {
    list-style: none;
    padding-left: 20px;
    margin-top: 10px;
}

.bullet-list li {
    position: relative;
    font-size: 1rem;
    color: #333333;
    margin-bottom: 10px;
    padding-left: 20px;
}

.bullet-list li:before {
    content: '•';
    position: absolute;
    left: 0;
    color: #BF9B30;
    font-size: 1.2rem;
}

.highlight {
    background: #f8fafc;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    border-left: 4px solid #BF9B30;
}

.highlight h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #BF9B30;
    margin-bottom: 10px;
}

.subsection {
    margin-top: 20px;
}

.subsection-title {
    font-size: 1.2rem;
    font-weight: 500;
    color: #000000;
    margin-bottom: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content .subtitle {
        font-size: 1rem;
    }

    .terms-container {
        margin: 20px;
    }

    .content {
        padding: 20px;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .company-info h2 {
        font-size: 1.8rem;
        color: #BF9B30;
    }
}
