.ami-give-beyond-section {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    background: #fff;
    padding: 80px 20px;
}

.give-beyond-container {
    max-width: 1000px;
    margin: 0 auto;
}

.give-beyond-header {
    text-align: center;
    margin-bottom: 50px;
}

.give-beyond-heading {
    font-size: 42px;
    font-weight: 800;
    color: #1A1A1A;
    margin: 0 0 12px 0;
    line-height: 1.2;
}

.give-beyond-subtitle {
    font-size: 16px;
    color: #666;
    margin: 0;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.options-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 32px;
}

.option-card {
    background: #fff;
    border: 1px solid #E8E8E8;
    border-radius: 12px;
    padding: 24px;
    text-align: left;
    transition: all 0.3s ease;
    cursor: pointer;
}

.option-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
    border-color: #508A92;
}

.option-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.option-icon img {
    width: 24px;
    height: 24px;
}

.icon-teal .option-icon {
    background: rgba(80, 180, 180, 0.1);
}

.icon-teal .option-icon img {
    filter: brightness(0) saturate(100%) invert(56%) sepia(52%) saturate(428%) hue-rotate(131deg) brightness(93%) contrast(89%);
}

.icon-green .option-icon {
    background: rgba(193, 244, 93, 0.1);
}

.icon-green .option-icon img {
    filter: brightness(0) saturate(100%) invert(85%) sepia(39%) saturate(512%) hue-rotate(32deg) brightness(101%) contrast(93%);
}

.option-title {
    font-size: 15px;
    font-weight: 700;
    color: #1A1A1A;
    margin: 0 0 8px 0;
}

.option-text {
    font-size: 13px;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

.info-boxes-combined {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    margin-bottom: 40px;
    background: linear-gradient(165deg, rgba(80, 180, 180, 0.05) 0%, rgba(193, 244, 93, 0.05) 100%);
    border-radius: 12px;
    overflow: hidden;
}

.info-box-item {
    padding: 32px;
}

.info-box-item:first-child {
    border-right: 1px solid rgba(0, 0, 0, 0.05);
}

.info-box-title {
    font-size: 18px;
    font-weight: 700;
    color: #1A1A1A;
    margin: 0 0 12px 0;
}

.info-box-text {
    font-size: 14px;
    color: #666;
    margin: 0;
    line-height: 1.6;
}

.give-beyond-cta {
    text-align: center;
}

.give-beyond-button {
    display: inline-block;
    padding: 6px 32px;
    background: #ffffff;
    border: 2px solid #508991;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 700!important;
    color: #508991;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.give-beyond-button:hover {
    background: #508991;
    color: #ffffff;
}

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

@media (max-width: 768px) {
    .ami-give-beyond-section {
        padding: 60px 20px;
    }
    
    .give-beyond-heading {
        font-size: 32px;
    }
    
    .info-boxes-combined {
        grid-template-columns: 1fr;
    }
    
    .info-box-item:first-child {
        border-right: none;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }
}

@media (max-width: 480px) {
    .options-grid {
        grid-template-columns: 1fr;
    }
    
    .give-beyond-heading {
        font-size: 28px;
    }
}
