/* Info Section */
.info-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.info-header {
    text-align: center;
    margin-bottom: 5rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.info-main-title {
    font-size: 2.75rem;
    font-weight: 800;
    color: #4c1d95;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.info-main-subtitle {
    font-size: 1.15rem;
    color: #475569;
    line-height: 1.7;
}

.info-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    margin-bottom: 6rem;
}

.info-content:last-child {
    margin-bottom: 0;
}

.info-content-reverse {
    direction: ltr;
}

.info-content-reverse .info-text {
    order: 2;
}

.info-content-reverse .info-image {
    order: 1;
}

.info-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: #6366f1;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.info-title {
    font-size: 2.25rem;
    font-weight: 800;
    color: #6d28d9;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.info-description {
    font-size: 1.05rem;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.info-link {
    display: inline-block;
    color: #6366f1;
    font-weight: 600;
    text-decoration: none;
    font-size: 1rem;
}

.info-link:hover {
    color: #4c1d95;
}

.info-image {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-image img {
    max-width: 400px;
    width: 100%;
    height: auto;
    display: block;
}

/* Responsive */
@media (max-width: 968px) {
    .info-section {
        padding: 4rem 0;
    }

    .info-header {
        margin-bottom: 3rem;
    }

    .info-main-title {
        font-size: 2.25rem;
    }

    .info-main-subtitle {
        font-size: 1.05rem;
    }

    .info-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        margin-bottom: 4rem;
    }

    .info-content-reverse .info-text {
        order: 1;
    }

    .info-content-reverse .info-image {
        order: 2;
    }

    .info-title {
        font-size: 1.85rem;
    }

    .info-description {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .info-section {
        padding: 3rem 0;
    }

    .info-main-title {
        font-size: 1.75rem;
    }

    .info-main-subtitle {
        font-size: 0.95rem;
    }

    .info-title {
        font-size: 1.5rem;
    }

    .info-description {
        font-size: 0.95rem;
    }

    .info-content {
        gap: 2rem;
        margin-bottom: 3rem;
    }
}

