.info-page-section {
    background-color: #f0f0f1;
    padding: 2.5rem 0 4rem;
    min-height: 60vh;
}

.info-page-card {
    background: #fff;
    border-radius: 12px;
    border: 1px solid #e0e0e0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    padding: 2rem;
}

.info-page-header {
    text-align: center;
    margin-bottom: 2rem;
}

.info-page-header h1 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #424750;
    margin-bottom: 0.75rem;
    position: relative;
    display: inline-block;
    padding-bottom: 0.75rem;
}

.info-page-header h1::after {
    content: '';
    position: absolute;
    right: 50%;
    bottom: 0;
    width: 4rem;
    height: 3px;
    background: #FF6B36;
    border-radius: 2px;
    transform: translateX(50%);
}

.info-page-header p {
    color: #81858b;
    font-size: 0.9rem;
    margin: 0;
}

.info-page-content {
    font-size: 0.95rem;
    line-height: 2;
    color: #424750;
    text-align: justify;
}

.info-page-content p {
    margin-bottom: 1.25rem;
}

.info-page-content p:last-child {
    margin-bottom: 0;
}

.info-page-content ul {
    margin: 0 0 1.25rem;
    padding-right: 1.5rem;
    list-style: disc;
}

.info-page-content li {
    margin-bottom: 0.5rem;
}

.info-page-content strong {
    color: #232933;
    font-weight: 600;
}

.info-about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}

.info-about-stat {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    padding: 1.75rem 1.25rem;
    text-align: center;
    transition: box-shadow 0.3s ease;
}

.info-about-stat:hover {
    box-shadow: 0 6px 20px rgba(255, 107, 54, 0.1);
}

.info-about-stat-icon {
    width: 3.5rem;
    height: 3.5rem;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #FF6B36, #ff8c5a);
    border-radius: 50%;
    color: #fff;
    font-size: 1.35rem;
}

.info-about-stat-value {
    font-size: 1.75rem;
    font-weight: 700;
    color: #424750;
    margin: 0 0 0.5rem;
    direction: ltr;
}

.info-about-stat-label {
    font-size: 0.9rem;
    color: #62666d;
    margin: 0;
}

.info-services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.info-service-item {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    padding: 2rem 1.5rem;
    text-align: center;
    position: relative;
    transition: box-shadow 0.3s ease;
}

.info-service-item:hover {
    box-shadow: 0 6px 20px rgba(255, 107, 54, 0.1);
}

.info-service-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 50%;
    transform: translateX(50%);
    width: 3.5rem;
    height: 3px;
    background: #FF6B36;
    border-radius: 2px;
}

.info-service-icon {
    width: 4rem;
    height: 4rem;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #FF6B36, #ff8c5a);
    border-radius: 50%;
    color: #fff;
    font-size: 1.5rem;
}

.info-service-item h2 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #424750;
    margin-bottom: 1rem;
}

.info-service-item p {
    font-size: 0.9rem;
    line-height: 2;
    color: #62666d;
    text-align: right;
    margin: 0;
}

.info-contact-block h2 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #424750;
    margin-bottom: 1rem;
}

.info-contact-block > p {
    font-size: 0.95rem;
    line-height: 2;
    color: #62666d;
    margin-bottom: 2rem;
}

.info-contact-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.info-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid #e8e8e8;
}

.info-contact-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.info-contact-item i {
    width: 2.25rem;
    height: 2.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff5f0;
    color: #FF6B36;
    border-radius: 8px;
    flex-shrink: 0;
    font-size: 0.95rem;
}

.info-contact-item-content label {
    display: block;
    font-size: 0.8rem;
    color: #81858b;
    margin-bottom: 0.25rem;
}

.info-contact-item-content p,
.info-contact-item-content a {
    font-size: 0.95rem;
    color: #424750;
    margin: 0;
    text-decoration: none;
}

.info-contact-item-content a:hover {
    color: #FF6B36;
}

.info-faq-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.info-faq-item {
    border: 1px solid #e8e8e8;
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
}

.info-faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: #fff;
    border: none;
    text-align: right;
    font-size: 0.95rem;
    font-weight: 600;
    color: #424750;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
}

.info-faq-question:hover,
.info-faq-item.active .info-faq-question {
    background: #fff5f0;
    color: #FF6B36;
}

.info-faq-question i {
    flex-shrink: 0;
    font-size: 0.85rem;
    transition: transform 0.3s ease;
}

.info-faq-item.active .info-faq-question i {
    transform: rotate(180deg);
}

.info-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.info-faq-answer-inner {
    padding: 0 1.25rem 1.25rem;
    font-size: 0.9rem;
    line-height: 2;
    color: #62666d;
}

@media (min-width: 768px) {
    .info-page-section {
        padding: 3rem 0 5rem;
    }

    .info-page-card {
        padding: 2.5rem;
    }

    .info-page-header h1 {
        font-size: 2rem;
    }

    .info-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .info-about-stats {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 575.98px) {
    .info-page-section {
        padding: 1.5rem 0 3rem;
    }

    .info-page-card {
        padding: 1.25rem;
        border-radius: 10px;
    }

    .info-service-item {
        padding: 1.5rem 1rem;
    }
}
