/* Custom Options Section Styling */
.custom-options-section {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.custom-options-section h2 {
    color: #252525;
    margin-bottom: 2.5rem;
    font-weight: 600;
    font-size: 2.5rem;
}

.option-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.option-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.option-card-body {
    padding: 2rem;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.option-card-title {
    color: #6c757d;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.option-card-heading {
    color: var(--primary);
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.option-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.option-icon svg {
    width: 100%;
    height: 100%;
    stroke: var(--primary);
}

.more-info-btn {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background-color: transparent;
    color: var(--primary);
    border: 1px solid var(--primary);
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.more-info-btn:hover {
    background-color: var(--primary);
    color: #fff;
}

/* Responsive Styles */
@media (max-width: 991.98px) {
    .custom-options-section {
        padding: 3rem 0;
    }
    
    .custom-options-section h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 767.98px) {
    .custom-options-section h2 {
        font-size: 2rem;
    }
    
    .option-card-body {
        padding: 1.5rem;
    }
    
    .option-card-heading {
        font-size: 1.5rem;
    }
}

@media (max-width: 575.98px) {
    .custom-options-section {
        padding: 2rem 0;
    }
    
    .option-card {
        margin-bottom: 1.5rem;
    }
}