/* 
    #40b968 main color
*/

/* Header Section */
.section-header {
    padding: 80px 0 60px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.header-content {
    max-width: 800px;
    margin: 0 auto;
}

.section-label {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(64, 185, 104, 0.1);
    color: #40b968;
    border-radius: 30px;
    font-weight: 500;
    font-size: 14px;
}

.section-label i {
    margin-right: 8px;
}

.textHeader {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
}

.header-subtitle {
    font-size: 1.1rem;
    color: #6c757d;
    margin-top: 10px;
}

/* Forms Section */
.section-forms {
    padding: 60px 0;
    background: #fff;
}

/* Form Card */
.form-card {
    display: flex;
    align-items: center;
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 15px;
    padding: 25px;
    transition: all 0.3s ease;
    height: 100%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.form-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(64, 185, 104, 0.15);
    border-color: #40b968;
}

/* Form Card Icon */
.form-card-icon {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #40b968 0%, #34a056 100%);
    border-radius: 12px;
    margin-right: 20px;
    transition: all 0.3s ease;
}

.form-card:hover .form-card-icon {
    transform: scale(1.1);
}

.form-card-icon i {
    font-size: 30px;
    color: #fff;
}

/* Form Card Body */
.form-card-body {
    flex: 1;
    min-width: 0;
}

.form-card-title {
    font-size: 1.15rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
    line-height: 1.4;
}

.form-card-description {
    font-size: 0.9rem;
    color: #6c757d;
    margin-bottom: 12px;
    line-height: 1.5;
}

.form-card-meta {
    display: flex;
    gap: 15px;
    font-size: 0.85rem;
    color: #95a5a6;
}

.form-card-meta i {
    margin-right: 5px;
}

/* Form Card Action */
.form-card-action {
    flex-shrink: 0;
    margin-left: 20px;
}

.btn-download {
    background: #40b968;
    color: #fff;
    border: none;
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-download:hover {
    background: #34a056;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(64, 185, 104, 0.3);
}

.btn-download i {
    margin-right: 8px;
}

/* Responsive Design */
@media (max-width: 991px) {
    .textHeader {
        font-size: 2rem;
    }

    .form-card {
        flex-direction: column;
        text-align: center;
    }

    .form-card-icon {
        margin-right: 0;
        margin-bottom: 20px;
    }

    .form-card-action {
        margin-left: 0;
        margin-top: 15px;
        width: 100%;
    }

    .btn-download {
        width: 100%;
    }

    .form-card-meta {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .section-header {
        padding: 60px 0 40px;
    }

    .textHeader {
        font-size: 1.75rem;
    }

    .header-subtitle {
        font-size: 1rem;
    }

    .section-forms {
        padding: 40px 0;
    }

    .form-card {
        padding: 20px;
    }

    .form-card-icon {
        width: 60px;
        height: 60px;
    }

    .form-card-icon i {
        font-size: 26px;
    }

    .form-card-title {
        font-size: 1rem;
    }

    .form-card-description {
        font-size: 0.85rem;
    }
}
