.info-section {
    padding-top: 3rem;
    padding-bottom: 5rem;
}

.info-content {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 30px var(--shadow-color);
    max-width: 900px;
    margin: 0 auto;
}

.info-content h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.info-content h3 {
    color: var(--text-primary);
    margin: 2rem 0 1rem;
    font-size: 1.5rem;
}

.info-content p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.info-content ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
    color: var(--text-secondary);
}

.info-content li {
    margin-bottom: 0.5rem;
}

/* Animations */
.info-section {
    animation: fadeInUp 0.8s ease-out;
}

/* Apply animation to direct children EXCEPT tab content containers */
.info-content>*:not(.tab-content) {
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

/* Apply animation to elements INSIDE the active tab content */
.tab-content>* {
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

.info-content>*:nth-child(1) {
    animation-delay: 0.1s;
}

.info-content>*:nth-child(2) {
    animation-delay: 0.2s;
}

.info-content>*:nth-child(3) {
    animation-delay: 0.3s;
}

.info-content>*:nth-child(4) {
    animation-delay: 0.4s;
}

.info-content>*:nth-child(5) {
    animation-delay: 0.5s;
}

.info-content>*:nth-child(6) {
    animation-delay: 0.6s;
}

.info-content>*:nth-child(7) {
    animation-delay: 0.7s;
}

.info-content>*:nth-child(8) {
    animation-delay: 0.8s;
}

.info-content>*:nth-child(9) {
    animation-delay: 0.9s;
}

.info-content>*:nth-child(10) {
    animation-delay: 1.0s;
}

.info-content>*:nth-child(11) {
    animation-delay: 1.1s;
}

.info-content>*:nth-child(12) {
    animation-delay: 1.2s;
}

.info-content>*:nth-child(13) {
    animation-delay: 1.3s;
}

.info-content>*:nth-child(14) {
    animation-delay: 1.4s;
}

.info-content>*:nth-child(15) {
    animation-delay: 1.5s;
}


/* Delays for elements inside tabs */
.tab-content>*:nth-child(1) {
    animation-delay: 0.1s;
}

.tab-content>*:nth-child(2) {
    animation-delay: 0.2s;
}

.tab-content>*:nth-child(3) {
    animation-delay: 0.3s;
}

.tab-content>*:nth-child(4) {
    animation-delay: 0.4s;
}

.tab-content>*:nth-child(5) {
    animation-delay: 0.5s;
}

.tab-content>*:nth-child(6) {
    animation-delay: 0.6s;
}

.tab-content>*:nth-child(7) {
    animation-delay: 0.7s;
}

.tab-content>*:nth-child(8) {
    animation-delay: 0.8s;
}

.tab-content>*:nth-child(9) {
    animation-delay: 0.9s;
}

.tab-content>*:nth-child(10) {
    animation-delay: 1.0s;
}

.tab-content>*:nth-child(11) {
    animation-delay: 1.1s;
}

.tab-content>*:nth-child(12) {
    animation-delay: 1.2s;
}

.tab-content>*:nth-child(13) {
    animation-delay: 1.3s;
}

.tab-content>*:nth-child(14) {
    animation-delay: 1.4s;
}

.tab-content>*:nth-child(15) {
    animation-delay: 1.5s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Policy Table Styles */
.policy-table-container {
    margin: 2rem 0;
    overflow-x: auto;
}

.policy-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-card);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px var(--shadow-color);
}

.policy-table th,
.policy-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.policy-table th {
    background-color: var(--primary-color);
    color: white;
    font-weight: 600;
}

.policy-table tr:last-child td {
    border-bottom: none;
}

.policy-table tr:hover {
    background-color: rgba(102, 126, 234, 0.05);
}