/* General Body Styling */
body {
    font-family: Arial, sans-serif;
    background-color: #f0f2f5;
    color: #333;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

/* Container Styling */
.container {
    text-align: center;
    padding: 20px;
}

/* Header Styling */
header h1 {
    font-size: 36px;
    color: #4a90e2;
    margin-bottom: 10px;
}

header p {
    font-size: 18px;
    color: #555;
    margin-bottom: 40px;
}

/* Options Container */
.options {
    display: flex;
    justify-content: center;
    gap: 50px;
}

/* Anchor Link Styling */
.option-link {
    text-decoration: none;
    display: block;
}

/* Option Box Styling */
.option {
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
    width: 220px;
    /* Set fixed width */
    height: 250px;
    /* Set fixed height */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.option:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.option h2 {
    font-size: 24px;
    color: #4a90e2;
    margin-bottom: 10px;
}

.option p {
    font-size: 16px;
    color: #777;
}

/* Buying, Renting, and Pay Analysis Specific Colors */
.buying {
    border: 2px solid #4a90e2;
}

.renting {
    border: 2px solid #d9534f;
}

.pay-analysis {
    border: 2px solid #5cb85c;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .options {
        flex-direction: column;
        gap: 20px;
    }

    .option-link {
        width: 100%;
    }

    .option {
        width: 100%;
        /* Ensure full width on smaller screens */
        height: auto;
        /* Allow flexible height on smaller screens */
    }
}