/* General styling */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


body {
    font-family: 'Inter', sans-serif;
    background-color: #f7f8f9;
}

/* Get Started Section */
.get-started-container {
    padding: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.get-started-section {
    text-align: center;
    width: 100%;
    max-width: 800px;
}

.get-started-section h1 {
    font-size: clamp(2rem, 3vw, 3rem);
    color: #1e3932;
    /* Soft green */
    margin-bottom: 1rem;
}

.get-started-section p {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: #555;
    margin-bottom: 2rem;
}

/* Account Selection Grid */
.account-selection-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

/* Account Card Styling */
.account-card {
    background: linear-gradient(145deg, #ffffff, #f1f7f6);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    cursor: pointer;
    height: 300px;
    /* Taller height */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.account-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    background-color: #e0f2f1;
    /* Light green hover effect */
}

.account-card h2 {
    font-size: clamp(1.5rem, 2vw, 2rem);
    color: #1e3932;
    /* Soft green */
    margin-bottom: 1rem;
}

.account-card p {
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    color: #555;
}

@media (max-width:768px) {
.account-selection-grid {
    display: flex;
    flex-direction: column;
}

}