/* ================= SECTION STYLES ================= */

.info-section {
    padding: clamp(30px, 7vh, 100px) 5%;
}

.info-section.white {
    background: #ffffff;
}

.info-section.gray {
    background: #f8f9fa;
}

.info-section.blue {
    background: #1E5FD8;
}

.info-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: clamp(40px, 8vh, 60px);
}

.section-label {
    display: inline-block;
    font-size: clamp(13px, 1.5vw, 15px);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    padding: 8px 22px;
    border-radius: 6px;
}

.section-label.light {
    color: #1E5FD8;
    background: #f0f4ff;
    border: 1px solid #1E5FD8;
}

.section-label.dark {
    color: white;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.section-title {
    font-size: clamp(28px, 4.5vw, 42px);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
}

.section-title.light {
    color: #0B2C6B;
}

.section-title.dark {
    color: #FFFFFF;
}

.section-intro {
    font-size: clamp(16px, 2vw, 19px);
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto;
}

.section-intro.light {
    color: #495057;
}

.section-intro.dark {
    color: rgba(255, 255, 255, 0.95);
}

/* Content Grid */
.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
    gap: clamp(20px, 3vw, 30px);
    margin-top: clamp(40px, 8vh, 60px);
}

/* Feature Card */
.feature-card {
    padding: clamp(25px, 4vw, 35px);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.feature-card.white-bg {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.feature-card.white-bg:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    border-color: #1E5FD8;
}

.feature-card.transparent-bg {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.feature-card.transparent-bg:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.feature-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
}

.feature-icon.blue {
    background: #1E5FD8;
}

.feature-icon.white {
    background: white;
}

.feature-title {
    font-size: clamp(18px, 2.2vw, 22px);
    font-weight: 700;
    margin-bottom: 12px;
}

.feature-title.light {
    color: #0B2C6B;
}

.feature-title.dark {
    color: #FFFFFF;
}

.feature-text {
    font-size: clamp(15px, 1.7vw, 17px);
    line-height: 1.6;
}

.feature-text.light {
    color: #495057;
}

.feature-text.dark {
    color: rgba(255, 255, 255, 0.9);
}

/* List Style */
.info-list {
    list-style: none;
    display: grid;
    gap: 15px;
    margin-top: clamp(30px, 6vh, 45px);
}

.info-list li {
    font-size: clamp(15px, 1.8vw, 17px);
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px 18px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.info-list li.light-item {
    color: #495057;
    background: #f8f9fa;
    border-left: 4px solid #1E5FD8;
}

.info-list li.light-item:hover {
    background: #e9ecef;
    transform: translateX(8px);
}

.info-list li.dark-item {
    color: rgba(255, 255, 255, 0.95);
    background: rgba(255, 255, 255, 0.08);
    border-left: 4px solid white;
}

.info-list li.dark-item:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateX(8px);
}

.info-list li::before {
    content: '•';
    font-size: 24px;
    font-weight: 700;
    flex-shrink: 0;
}

.info-list li.light-item::before {
    color: #1E5FD8;
}

.info-list li.dark-item::before {
    color: white;
}

/* Two Column Layout */
.two-column-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 6vw, 60px);
    align-items: start;
    margin-top: clamp(40px, 8vh, 60px);
}

/* Highlight Box */
.highlight-box {
    padding: clamp(25px, 4vw, 35px);
    border-radius: 12px;
    margin-top: clamp(30px, 6vh, 45px);
}

.highlight-box.blue-bg {
    background: #f0f4ff;
    border: 2px solid #1E5FD8;
}

.highlight-box.yellow-bg {
    background: #fff8e1;
    border: 2px solid #ffc107;
}

.highlight-title {
    color: #0B2C6B;
    font-size: clamp(18px, 2.2vw, 22px);
    font-weight: 700;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.highlight-text {
    color: #495057;
    font-size: clamp(15px, 1.7vw, 17px);
    line-height: 1.7;
}

/* Disclaimer Section Special Styling */
.disclaimer-content {
    background: white;
    padding: clamp(30px, 5vw, 45px);
    border-radius: 12px;
    border: 2px solid #ffc107;
    margin-top: clamp(30px, 6vh, 45px);
}

.disclaimer-icon {
    font-size: clamp(40px, 6vw, 50px);
    margin-bottom: 20px;
    text-align: center;
}

.disclaimer-text {
    color: #495057;
    font-size: clamp(15px, 1.8vw, 17px);
    line-height: 1.8;
    text-align: center;
}

/* ================= RESPONSIVE ================= */

@media screen and (max-width: 992px) {
    .two-column-layout {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 640px) {
    .info-section {
        padding: clamp(40px, 10vh, 60px) 5%;
    }

    .content-grid {
        grid-template-columns: 1fr;
    }
}