body { 
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; 
    margin: 0; 
    background-color: #f4f7f6; 
    color: #333; 
}
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.site-header { background: #fff; padding: 20px 0; box-shadow: 0 2px 4px rgba(0,0,0,0.1); }
.logo { font-size: 24px; font-weight: bold; color: #0056b3; }

/* Hero Section */
.hero-section { padding: 60px 0; }
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.hero-text h1 { font-size: 36px; line-height: 1.2; margin-bottom: 20px; }
.hero-image { width: 100%; border-radius: 8px; margin: 20px 0; box-shadow: 0 4px 8px rgba(0,0,0,0.1); }
.trust-list { list-style: none; padding: 0; font-size: 18px; font-weight: bold; color: #28a745; line-height: 1.8; }

/* Upgraded Form Container with Softer, Deeper Shadow */
.form-container { 
    background: #fff; 
    padding: 30px; 
    border-radius: 8px; 
    box-shadow: 0 12px 35px rgba(0,0,0,0.12); /* Softer, wider pop */
    border-top: 5px solid #007bff; 
}

/* Form Logic Styles */
.form-step { display: none; }
.form-step.active { display: block; animation: fadeIn 0.4s ease-in-out; }

label { display: block; margin: 15px 0 8px; font-weight: bold; }
input, select { width: 100%; padding: 14px; border: 1px solid #ccc; border-radius: 6px; font-size: 16px; box-sizing: border-box; }
input:focus, select:focus { border-color: #007bff; outline: none; }

/* Upgraded Buttons with Gradient, Shadow, and Hover Lift */
.next-btn, .submit-btn { 
    width: 100%; 
    background: linear-gradient(135deg, #28a745 0%, #218838 100%); 
    color: #fff; 
    border: none; 
    padding: 16px; 
    font-size: 18px; 
    font-weight: bold; 
    border-radius: 6px; 
    cursor: pointer; 
    margin-top: 20px; 
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(40, 167, 69, 0.3); /* Green glow shadow */
}

.next-btn:hover, .submit-btn:hover { 
    background: linear-gradient(135deg, #218838 0%, #1e7e34 100%); 
    transform: translateY(-2px); /* Lifts the button slightly when hovered */
    box-shadow: 0 6px 15px rgba(40, 167, 69, 0.4);
}

.name-group { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.tcpa-disclaimer { font-size: 11px; color: #777; margin-top: 20px; text-align: justify; line-height: 1.4; }

/* Animations & Mobile */
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
@media (max-width: 768px) { 
    .hero-grid { grid-template-columns: 1fr; } 
    .hero-section { padding: 30px 0; }
    .hero-text h1 { font-size: 28px; }
}