.fwg-ef81f7fa-container {
    font-family: inherit;
    background: #f8fbfa;
    padding: 5rem 3rem;
}
.fwg-ef81f7fa-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 4rem;
    gap: 2rem;
}
.fwg-ef81f7fa-main-title {
    font-size: 4rem;
    line-height: 1.1;
    margin: 0;
    font-weight: 900;
    color: #1a2332;
    max-width: 50%;
}
.fwg-ef81f7fa-main-desc {
    color: #6a7485;
    max-width: 40%;
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
}
@media (max-width: 768px) {
    .fwg-ef81f7fa-header {
        flex-direction: column;
        align-items: flex-start;
    }
    .fwg-ef81f7fa-main-title, .fwg-ef81f7fa-main-desc {
        max-width: 100%;
    }
}
.fwg-ef81f7fa-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}
@media (max-width: 480px) {
    .fwg-ef81f7fa-grid {
        grid-template-columns: 1fr;
    }
}
.fwg-ef81f7fa-card {
    padding: 3.5rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 350px;
    position: relative;
    border-radius: 4px;
}
.fwg-ef81f7fa-card.fwg-light {
    background-color: #ffffff;
    color: #1a2332;
}
.fwg-ef81f7fa-card.fwg-dark {
    background-color: #242c3d;
    color: #ffffff;
}
.fwg-ef81f7fa-card-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 3rem;
}
.fwg-ef81f7fa-card-number {
    font-weight: bold;
    letter-spacing: 0.15em;
    font-size: 0.85rem;
}
.fwg-light .fwg-ef81f7fa-card-number {
    color: #434cde;
}
.fwg-dark .fwg-ef81f7fa-card-number {
    color: #00d1d1;
}
.fwg-ef81f7fa-card-icon svg {
    width: 24px;
    height: 24px;
}
.fwg-light .fwg-ef81f7fa-card-icon svg {
    color: #434cde;
}
.fwg-dark .fwg-ef81f7fa-card-icon svg {
    color: #00d1d1;
}
.fwg-ef81f7fa-card-content h3 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
}
.fwg-ef81f7fa-card-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
    opacity: 0.8;
}
