﻿.download-forms-section {
    padding: 40px 0 70px;
    background: #f5f7fa;
    min-height: 600px;
}


/*  HEADER */

.forms-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    padding: 25px 30px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
}

.forms-header-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #eef3ff;
    color: #1d4ed8;
    border-radius: 12px;
    font-size: 25px;
}

.forms-header h2 {
    margin: 0 0 6px;
    font-size: 26px;
    font-weight: 700;
    color: #1f2937;
}

.forms-header p {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    color: #6b7280;
}


/*   FORM GRID */

.forms-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}


/* FORM CARD */

.form-card {
    display: flex;
    flex-direction: column;
    min-height: 265px;
    padding: 25px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.035);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

    .form-card:hover {
        transform: translateY(-4px);
        border-color: #d1d5db;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    }


/* ICON */

.form-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    background: #eef3ff;
    color: #0d4f8b;
    border-radius: 10px;
    font-size: 22px;
}


/*  CONTENT */

.form-content {
    display: flex;
    flex-direction: column;
    flex: 1;
}

    .form-content h3 {
        margin: 0 0 10px;
        font-size: 17px;
        line-height: 1.4;
        font-weight: 700;
        color: #1f2937;
    }

    .form-content p {
        margin: 0 0 20px;
        font-size: 13px;
        line-height: 1.6;
        color: #6b7280;
    }


/* DOWNLOAD BUTTON  */

.download-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    margin-top: auto;
    padding: 11px 16px;
    background: #0d4f8b;
    border: 1px solid #0d4f8b;
    border-radius: 7px;
    color: #ffffff !important;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none !important;
    transition: all 0.2s ease;
}

    .download-btn:hover {
        background: #5383d3;
        border-color: #5383d3;
        color: #ffffff !important;
        text-decoration: none !important;
    }

    .download-btn i {
        font-size: 14px;
    }


/* TABLET */

@media (max-width: 991px) {

    .forms-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


/*   MOBILE */

@media (max-width: 600px) {

    .download-forms-section {
        padding: 25px 15px 50px;
    }

    .forms-header {
        padding: 20px;
        gap: 15px;
        align-items: flex-start;
    }

    .forms-header-icon {
        width: 48px;
        height: 48px;
        min-width: 48px;
        font-size: 20px;
    }

    .forms-header h2 {
        font-size: 21px;
    }

    .forms-header p {
        font-size: 13px;
    }

    .forms-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .form-card {
        min-height: 240px;
        padding: 20px;
    }
}



