/* LLM Info Page Styles */

.llms-info {
    padding: 55px 0;
    background-color: #f9f9f9;
}

.llms-info .container {
    max-width: 1200px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 40px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.llms-info h1 {
    font-size: 32px;
    font-weight: 800;
    color: #15489e;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.llms-info .subtitle {
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
    font-style: italic;
}

.llms-info .info-group {
    background-color: #f5f5f5;
    padding: 20px;
    border-left: 4px solid #15489e;
    margin-bottom: 30px;
}

.llms-info .info-group p {
    margin-bottom: 10px;
    line-height: 1.6;
}

.llms-info .info-group p:last-child {
    margin-bottom: 0;
}

.llms-info .section-divider {
    border: none;
    border-top: 2px solid #e0e0e0;
    margin: 30px 0;
}

.llms-info .intro-text {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 40px;
    padding: 15px;
    background-color: #fff9e6;
    border-left: 4px solid #ffcb08;
}

.llms-info .content-section {
    margin-bottom: 50px;
}

.llms-info h2 {
    font-size: 26px;
    font-weight: 700;
    color: #000;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 3px solid #15489e;
    text-transform: uppercase;
}

.llms-info h3 {
    font-size: 20px;
    font-weight: 600;
    color: #15489e;
    margin-top: 30px;
    margin-bottom: 15px;
}

.llms-info p {
    font-size: 15px;
    line-height: 1.7;
    color: #333;
    margin-bottom: 15px;
}

.llms-info a {
    color: #15489e;
    text-decoration: none;
    transition: color 0.3s ease;
}

.llms-info a:hover {
    color: #ffcb08;
    text-decoration: underline;
}

.llms-info ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

.llms-info ul li {
    font-size: 15px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 10px;
}

.llms-info .info-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 30px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.llms-info .info-table th,
.llms-info .info-table td {
    padding: 15px;
    text-align: left;
    border: 1px solid #e0e0e0;
}

.llms-info .info-table th {
    background-color: #15489e;
    color: #ffffff;
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
}

.llms-info .info-table td {
    background-color: #ffffff;
    font-size: 15px;
    line-height: 1.6;
}

.llms-info .info-table tr:nth-child(even) td {
    background-color: #f9f9f9;
}

.llms-info .info-table tr:hover td {
    background-color: #f0f4ff;
}

.llms-info .faq-item {
    background-color: #f9f9f9;
    padding: 20px;
    margin-bottom: 20px;
    border-left: 4px solid #ffcb08;
    border-radius: 4px;
}

.llms-info .faq-item p {
    margin-bottom: 10px;
}

.llms-info .faq-item p:last-child {
    margin-bottom: 0;
}

/* Responsive Styles */

/* Tablet View (768px - 1024px) */
@media (max-width: 1024px) {
    .llms-info .container {
        padding: 30px;
    }

    .llms-info h1 {
        font-size: 28px;
    }

    .llms-info h2 {
        font-size: 24px;
    }

    .llms-info h3 {
        font-size: 18px;
    }
}

/* Mobile View (max-width: 767px) */
@media (max-width: 767px) {
    .llms-info {
        padding: 30px 0;
    }

    .llms-info .container {
        padding: 20px 15px;
    }

    .llms-info h1 {
        font-size: 24px;
        line-height: 1.3;
    }

    .llms-info .subtitle {
        font-size: 16px;
    }

    .llms-info h2 {
        font-size: 20px;
    }

    .llms-info h3 {
        font-size: 17px;
        margin-top: 20px;
    }

    .llms-info p,
    .llms-info ul li {
        font-size: 14px;
    }

    .llms-info .info-group {
        padding: 15px;
    }

    .llms-info .intro-text {
        padding: 12px;
    }

    .llms-info .info-table {
        font-size: 14px;
    }

    .llms-info .info-table th,
    .llms-info .info-table td {
        padding: 10px 8px;
        font-size: 13px;
    }

    .llms-info .info-table th {
        font-size: 14px;
    }

    /* Make tables scrollable on mobile */
    .llms-info .info-table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch;
    }

    .llms-info .faq-item {
        padding: 15px;
    }
}

/* Small Mobile View (max-width: 480px) */
@media (max-width: 480px) {
    .llms-info .container {
        padding: 15px 10px;
    }

    .llms-info h1 {
        font-size: 20px;
    }

    .llms-info h2 {
        font-size: 18px;
    }

    .llms-info h3 {
        font-size: 16px;
    }

    .llms-info .info-table th,
    .llms-info .info-table td {
        padding: 8px 6px;
        font-size: 12px;
    }
}