/* libercard.css */

:root {
    --primary-color: #0056b3;
    --secondary-color: #e63946;
    --accent-color: #f1faee;
    --text-color: #1d3557;
    --light-gray: #f8f9fa;
    --border-color: #dee2e6;
    --success-color: #28a745;
    /*--font-family: 'Roboto', Arial, sans-serif;*/
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    /*font-family: var(--font-family);*/
    color: var(--text-color);
    line-height: 1.6;
    background-color: #fff;
}

.libercard-container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

/* Header Styles */
.libercard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.libercard-header h1 {
    font-size: 2.2rem;
    color: var(--primary-color);
}

.libercard-badges {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.libercard-logo, .maib-logo {
    height: 40px;
    object-fit: contain;
}

/* Intro Section */
.libercard-intro {
    background-color: var(--light-gray);
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2.5rem;
}

.libercard-intro h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.libercard-benefits {
    display: flex;
    justify-content: space-around;
    margin-top: 2rem;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.benefit {
    text-align: center;
    flex: 1;
    min-width: 150px;
}

.benefit-icon {
    background-color: var(--primary-color);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    font-weight: bold;
}

.benefit-text {
    font-weight: 500;
}

/* Steps Section */
.libercard-steps {
    margin-bottom: 3rem;
}

.libercard-steps h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.step {
    display: flex;
    margin-bottom: 2rem;
    gap: 1.5rem;
}

.step-number {
    background-color: var(--secondary-color);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    font-weight: bold;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
}

.step-content h3 {
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

.step-image {
    margin-top: 1rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    padding: 0.5rem;
}

.example-image {
    max-width: 100%;
    height: auto;
}

.note {
    background-color: var(--accent-color);
    padding: 1rem;
    border-left: 4px solid var(--primary-color);
    margin-top: 1rem;
    border-radius: 0 4px 4px 0;
}

/* FAQ Section */
.libercard-faq {
    margin-bottom: 3rem;
}

.libercard-faq h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.faq-item {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item h3 {
    margin-bottom: 0.75rem;
    color: var(--primary-color);
}

/* Apply Section */
.libercard-apply {
    background-color: var(--light-gray);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    margin-bottom: 2.5rem;
}

.libercard-apply h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.apply-button {
    display: inline-block;
    background-color: green;
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    margin-top: 1rem;
    transition: background-color 0.3s ease;
}

.apply-button:hover {
    background-color: #116a02;
    color: white
}

/* Footer */
.libercard-footer {
    border-top: 1px solid var(--border-color);
    padding-top: 2rem;
    font-size: 0.9rem;
}

.libercard-footer p {
    margin-bottom: 1rem;
}

.libercard-footer a {
    color: var(--primary-color);
    text-decoration: none;
}

.libercard-footer a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .libercard-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .step {
        flex-direction: column;
    }

    .step-number {
        margin-bottom: 0.5rem;
    }

    .libercard-benefits {
        flex-direction: column;
        align-items: center;
    }

    .benefit {
        margin-bottom: 1.5rem;
    }
}