@import url('https://fonts.googleapis.com/css2?family=PT+Sans:wght@400;700&display=swap');

.wpg-f3de491c-section {
    background-color: #f5f7fa;
    padding: 80px 20px;
    font-family: 'PT Sans', sans-serif;
    width: 100%;
}

.wpg-f3de491c-container {
    max-width: 1140px;
    margin: 0 auto;
    width: 100%;
}

.wpg-f3de491c-header {
    text-align: center;
    margin-bottom: 64px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.wpg-f3de491c-title {
    font-weight: 700;
    font-size: 36px;
    color: #002c77;
    margin: 0 0 16px 0;
    line-height: 1.2;
}

.wpg-f3de491c-subtitle {
    font-weight: 400;
    font-size: 18px;
    color: #374151;
    margin: 0;
    line-height: 1.5;
}

.wpg-f3de491c-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.wpg-f3de491c-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 32px;
    box-shadow: 0 4px 16px rgba(0, 44, 119, 0.08);
    min-height: 280px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.wpg-f3de491c-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 44, 119, 0.12);
}

.wpg-f3de491c-card-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    color: #4b92db;
    font-size: 64px;
}

.wpg-f3de491c-card-icon svg {
    width: 64px;
    height: 64px;
    fill: #4b92db;
}

.wpg-f3de491c-card-title {
    font-weight: 700;
    font-size: 22px;
    color: #002c77;
    margin: 0 0 12px 0;
    line-height: 1.3;
}

.wpg-f3de491c-card-text {
    font-weight: 400;
    font-size: 16px;
    color: #374151;
    line-height: 1.6;
    margin: 0 0 24px 0;
    flex-grow: 1;
}

.wpg-f3de491c-card-bottom {
    margin-top: auto;
}

.wpg-f3de491c-card-link {
    font-weight: 700;
    font-size: 14px;
    color: #ff5800;
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-block;
}

.wpg-f3de491c-card-link:hover {
    color: #e04a00;
    text-decoration: underline;
}

@media (max-width: 992px) {
    .wpg-f3de491c-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .wpg-f3de491c-section {
        padding: 60px 16px;
    }
    
    .wpg-f3de491c-title {
        font-size: 28px;
    }
    
    .wpg-f3de491c-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}
