body {
    font-family: Arial, sans-serif;
    background-color: white;
    margin: 0;
    padding: 0;
}

.container {
    padding: 20px;
    margin-top: 115px;
    text-align: center;
}


.header {
    margin-bottom: 50px; /* Increased vertical spacing between the header and options */
}

.header h1 {
    margin: 0;
    font-size: 24px;
    color: #333;
}

.header p {
    color: #666;
    font-size: 14px;
    margin-top: 5px;
    margin-bottom: 20px;
}

.options {
    display: flex;
    justify-content: center; /* Center the options */
    gap: 24px; /* Gap between the options */
}

.option {
    background-color: #F6F8FA; /* Background color */
    border: 2px solid transparent; /* No border by default */
    border-radius: 16px; /* Border radius set to 16px */
    padding: 20px 24px; /* Padding set to 20px top/bottom, 24px left/right */
    text-align: left; /* Left align the text */
    max-width: 253px; /* Set max-width to 253px */
    width: 100%; /* Allow width to adjust naturally */
    height: 182px; /* Fixed height */
    cursor: pointer;
    transition: all 0.3s ease;
}

.option:hover {
    border-color: #bcb2fc; /* Border appears only on hover */
    box-shadow: 0 0 8px rgba(188, 178, 252, 0.5); /* Subtle box shadow on hover */
}

.option .icon {
    margin-bottom: 15px; /* Proper spacing between icon and h2 */
}

.option .icon img {
    width: 50px; /* Icon size */
    height: 50px;
}

.option h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 14px; /* Font size */
    line-height: 20px; /* Line height */
    letter-spacing: 0.1px;
    color: #4B4F5E; /* Text color */
    margin: 0 0 10px 0; /* Margin for spacing */
}

.option p {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 14px; /* Updated font size to 14px */
    line-height: 18px; /* Line height */
    color: #888;
    margin: 0;
}
