/* Main Container */
.main-container {
    display: flex;
    gap: 2rem;
    padding-right: 2rem;
}

/* Left Section */
.left-section {
    position: relative;
    flex: 1;
    padding: 1rem 3rem;
    background-color: #ecf2fd;
}

.left-section .illustration-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
}

.left-section .illustration-image {
    width: 90%;
    margin-bottom: 20px;
}

.left-section h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.features {
    list-style: none;
    padding: 0;
}

.features li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: #0c4a6e;
    font-size: 0.95rem;
}

.features li i {
    color: #255ee0;
    margin-top: 3px;
}

/* Right Section */
.right-section {
    flex: 1;
    background: white;
    padding: 2.5rem 0;
}

.right-section h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.signup-form {
    margin-top: 2rem;
}

.signup-form input,
select,
textarea {
    background-color: #f8f8f8;
    border: 1px solid #e7e7e7;
    border-radius: 10px;
    padding: 0.5rem 1rem;
    outline: none;
}

.add-guest-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #255ee0;
    font-weight: 600;
    cursor: pointer;
}

.next-button {
    width: fit;
    padding: 0.7rem 2rem;
    background: #255ee0;
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    cursor: pointer;
    margin-top: 1rem;
    transition: all 0.2s;
}

.next-button:hover {
    background: #1d4ed8;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

@media (max-width: 992px) {
    .main-container {
        padding-right: 0;
        flex-direction: column;
    }
    .left-section {
        padding: 60px 20px;
    }
    .right-section {
        padding: 20px;
        padding-bottom: 60px;
    }
    .left-section h1 {
        font-size: 2rem;
    }
    .date-grid {
        grid-template-columns: 1fr;
    }
}
