:root {
    --vmc-primary: #01303A;
    --vmc-accent: #E7F874;
}

body {
    font-family: 'Inter', sans-serif;
}

input, select {
    border-color: var(--vmc-primary);
}

input:focus, select:focus {
    outline: none;
    border-color: var(--vmc-accent);
    box-shadow: 0 0 5px rgba(231, 248, 116, 0.5);
}

button {
    transition: all 0.3s ease;
}

button:hover {
    transform: translateY(-1px);
}

.step {
    transition: opacity 0.3s ease-in-out;
}

.step.hidden {
    display: none;
}

.text-vmc-primary {
    color: var(--vmc-primary);
}

.bg-vmc-primary {
    background-color: var(--vmc-primary);
}

.border-vmc-primary {
    border-color: var(--vmc-primary);
}

.bg-vmc-accent {
    background-color: var(--vmc-accent);
}

.text-vmc-accent {
    color: var(--vmc-accent);
}

.hover\:bg-vmc-accent:hover {
    background-color: var(--vmc-accent);
}

.hover\:text-vmc-primary:hover {
    color: var(--vmc-primary);
}

/* Custom container styles */
.container {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* Form section styling */
.form-section {
    background-color: #ffffff;
    padding: 2rem;
}

/* Image section styling */
.image-section {
    background-size: cover;
    background-position: center;
    min-height: 400px;
}

/* Full-width buttons */
button.w-full {
    width: 100%;
}

/* Onboarding tour card styles */
.benefit-card {
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.benefit-card.show {
    opacity: 1;
    transform: translateY(0);
}

/* Grouped box styles */
.group-box {
    border: 1px solid #e5e7eb; /* Tailwind gray-200 */
    border-radius: 0.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    background-color: #ffffff;
    margin-bottom: 1.5rem;
}

/* Summary table styles */
#summary-table {
    width: 100%;
    max-width: 100%;
    table-layout: auto;
    border-collapse: collapse;
}

#summary-table th,
#summary-table td {
    padding: 0.5rem 1rem;
    text-align: left;
    vertical-align: top;
    word-wrap: break-word;
}

#summary-table th {
    font-weight: 600;
}

#summary-table td {
    font-weight: normal;
}

#summary-table tr {
    border-bottom: 1px solid #e5e7eb;
}

/* Group subheading styles */
#summary-table .group-subheading {
    background-color: #f9fafb; /* Tailwind gray-50 */
    font-weight: 700;
    font-size: 1.1rem;
    padding: 0.75rem 1rem;
    border-bottom: 2px solid #d1d5db; /* Tailwind gray-300 */
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
    }
    .form-section, .image-section {
        width: 100%;
    }
    .image-section {
        height: 200px;
    }
    .benefit-card {
        margin-bottom: 1rem;
    }
    .group-box {
        margin-bottom: 1rem;
    }
    #summary-table th,
    #summary-table td {
        padding: 0.5rem;
        font-size: 0.875rem;
    }
}