.vol-frame-options-section {
    background-color: #f8f9ff;
    background-image: linear-gradient(rgba(38, 48, 110, 0.02) 1px, transparent 1px), linear-gradient(90deg, rgba(38, 48, 110, 0.02) 1px, transparent 1px);
    background-size: 20px 20px;
    padding: 82px 24px;
    font-family: 'Roboto', sans-serif;
    color: #5f6b7a;
    width: 100%;
}
.vol-frame-options-inner {
    max-width: 1160px;
    margin: 0 auto;
}
.vol-frame-options-header {
    text-align: center;
    margin-bottom: 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.vol-frame-pill {
    background-color: rgba(38, 48, 110, 0.08);
    color: #26306e;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
}
.vol-frame-options-header h2 {
    color: #26306e;
    font-family: 'Montserrat', sans-serif;
    font-size: 32px;
    font-weight: 700;
    margin: 0 0 16px 0;
}
.vol-frame-options-header p {
    font-size: 16px;
    line-height: 1.6;
    max-width: 600px;
    margin: 0;
}
.vol-frame-options-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.vol-frame-options-card {
    background: #ffffff;
    border: 1px solid rgba(38, 48, 110, 0.08);
    border-radius: 20px;
    padding: 34px 32px;
    box-shadow: 0 10px 30px rgba(38, 48, 110, 0.04);
    display: flex;
    flex-direction: column;
    min-height: 240px;
    transition: all 0.3s ease;
}
.vol-frame-card-icon {
    width: 44px;
    height: 44px;
    background: #f8f9ff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: #26306e;
    transition: background 0.3s ease;
}
.vol-frame-card-icon svg {
    width: 24px;
    height: 24px;
}
.vol-frame-card-title {
    color: #26306e;
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    line-height: 1.3;
}
.vol-frame-card-copy {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 24px;
    flex-grow: 1;
}
.vol-frame-card-link {
    color: #f1aa1e;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    transition: color 0.3s ease;
    margin-top: auto;
}
.vol-frame-card-link svg {
    width: 16px;
    height: 16px;
    margin-left: 6px;
    transition: transform 0.3s ease;
}

@media (min-width: 1025px) {
    .vol-frame-options-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 35px rgba(38, 48, 110, 0.08);
        border-color: rgba(241, 170, 30, 0.3);
    }
    .vol-frame-options-card:hover .vol-frame-card-icon {
        background: rgba(241, 170, 30, 0.1);
    }
    .vol-frame-options-card:hover .vol-frame-card-link svg {
        transform: translateX(4px);
    }
}

@media (max-width: 1024px) {
    .vol-frame-options-section {
        padding: 72px 24px;
    }
    .vol-frame-options-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .vol-frame-options-section {
        padding: 60px 16px;
    }
    .vol-frame-options-grid {
        grid-template-columns: 1fr;
    }
    .vol-frame-options-card {
        min-height: auto;
    }
}