.option-container {
    display: grid;
    grid-template-columns: repeat(2, 280px);
    column-gap: 80px;
    row-gap: 50px;
    justify-content: center;
    width: fit-content;
    margin: 40px auto 0;
    background: transparent;
}

.option {
    min-height: 180px;
    width: 280px;
    margin: 0;
    background: #fff;
    border-radius: 16px;
    padding: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    cursor: pointer;
    border: 2px solid transparent;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.option i {
    font-size: 36px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
    z-index: 1;
}

.option h3 {
    font-size: 20px;
    color: #2c3e50;
    margin-bottom: 10px;
    z-index: 1;
}

.option .tooltip {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.95);
    color: #2c3e50;
    font-size: 15px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.option:hover .tooltip {
    opacity: 1;
    z-index: 2;
}

/* Keep the hover effects for the button itself */
.option:hover {
    border-color: #3498db;
}

.option:hover i {
    transform: scale(1.1);
}

.option:hover h3 {
    color: #3498db;
}

/* Icon styles for each option */
.option:nth-child(1) i {
    background: linear-gradient(45deg, #3498db, #2980b9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.option:nth-child(2) i {
    background: linear-gradient(45deg, #e74c3c, #c0392b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.option:nth-child(3) i {
    background: linear-gradient(45deg, #2ecc71, #27ae60);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.option:nth-child(4) i {
    background: linear-gradient(45deg, #f1c40f, #f39c12);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Update hover states to match icon colors */
.option:nth-child(1):hover { border-color: #3498db; }
.option:nth-child(2):hover { border-color: #e74c3c; }
.option:nth-child(3):hover { border-color: #2ecc71; }
.option:nth-child(4):hover { border-color: #f1c40f; }

/* Main content padding and centering */
main {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    background: transparent;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .option-container {
        grid-template-columns: 300px;
        gap: 30px;
        margin: 15px auto 0;
    }

    .option {
        min-height: 180px;
    }
}