* { margin: 0; padding: 0; box-sizing: border-box; } :root { --primary-red: #C41E3A; --primary-blue: #2E4A87; --accent-gray: #D3D3D3; --dark-text: #2C2C2C; --light-gray: #F8F9FA; --white: #FFFFFF; } html, body { margin: 0; padding: 0; } body { font-family: 'Open Sans', sans-serif; line-height: 1.6; color: var(--dark-text ); background: linear-gradient(135deg, var(--light-gray) 0%, var(--white) 100%); min-height: 100vh; } .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; } /* Header */ .header { background: var(--white); box-shadow: 0 2px 10px rgba(0,0,0,0.1); padding: 20px 0; position: sticky; top: 0; z-index: 100; margin: 0; } .header-content { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; } .logo { height: 80px; width: auto; } .contact-info { text-align: right; color: var(--dark-text); } .contact-info h3 { font-family: 'Playfair Display', serif; font-size: 1.4rem; margin-bottom: 5px; color: var(--primary-blue); } .contact-info p { margin: 2px 0; font-weight: 500; } .phone { color: var(--primary-red); font-weight: 600; font-size: 1.1rem; } /* Hero Section */ .hero { background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-red) 100%); color: var(--white); padding: 60px 0; text-align: center; } .hero h1 { font-family: 'Playfair Display', serif; font-size: 3rem; font-weight: 700; margin-bottom: 20px; text-shadow: 2px 2px 4px rgba(0,0,0,0.3); } .hero p { font-size: 1.2rem; max-width: 800px; margin: 0 auto; opacity: 0.95; } /* Introduction Section */ .introduction { padding: 60px 0; background: var(--white); } .intro-content { max-width: 900px; margin: 0 auto; text-align: center; } .intro-content h2 { font-family: 'Playfair Display', serif; font-size: 2.5rem; color: var(--primary-blue); margin-bottom: 30px; } .intro-content p { font-size: 1.1rem; margin-bottom: 20px; color: var(--dark-text); } /* Assessment Form */ .assessment-form { padding: 60px 0; background: var(--light-gray); } .form-container { max-width: 1000px; margin: 0 auto; } .section { background: var(--white); border-radius: 15px; padding: 40px; margin-bottom: 40px; box-shadow: 0 5px 20px rgba(0,0,0,0.1); border-left: 5px solid var(--primary-red); } .section-header { display: flex; align-items: center; margin-bottom: 30px; } .section-icon { width: 60px; height: 60px; background: linear-gradient(135deg, var(--primary-red), var(--primary-blue)); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-right: 20px; } .section-icon i { color: var(--white); font-size: 1.5rem; } .section-title { font-family: 'Playfair Display', serif; font-size: 2rem; color: var(--primary-blue); font-weight: 600; } .question { margin-bottom: 30px; padding: 25px; background: var(--light-gray); border-radius: 10px; border-left: 4px solid var(--primary-red); } .question-number { display: inline-block; background: var(--primary-red); color: var(--white); width: 30px; height: 30px; border-radius: 50%; text-align: center; line-height: 30px; font-weight: 600; margin-right: 15px; font-size: 0.9rem; } .question-text { font-size: 1.1rem; font-weight: 500; color: var(--dark-text); margin-bottom: 15px; } /* CTA Section */ .cta-section { background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-red) 100%); color: var(--white); padding: 60px 0; text-align: center; } .cta-content h2 { font-family: 'Playfair Display', serif; font-size: 2.5rem; margin-bottom: 20px; } .cta-content p { font-size: 1.2rem; margin-bottom: 30px; opacity: 0.95; } .cta-button { display: inline-block; background: var(--white); color: var(--primary-blue); padding: 15px 40px; border-radius: 50px; text-decoration: none; font-weight: 600; font-size: 1.1rem; transition: all 0.3s ease; box-shadow: 0 5px 15px rgba(0,0,0,0.2); } .cta-button:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(0,0,0,0.3); background: var(--light-gray); } /* Footer */ .footer { background: var(--dark-text); color: var(--white); padding: 40px 0; text-align: center; } .footer p { margin-bottom: 10px; opacity: 0.8; } /* Responsive Design */ @media (max-width: 768px) { .hero h1 { font-size: 2.2rem; } .hero p { font-size: 1rem; } .section { padding: 25px; } .section-header { flex-direction: column; text-align: center; } .section-icon { margin-right: 0; margin-bottom: 15px; } .contact-info { text-align: center; margin-top: 20px; } .header-content { flex-direction: column; text-align: center; } } /* Smooth scrolling */ html { scroll-behavior: smooth; } /* Progress indicator */ .progress-container { position: fixed; top: 0; left: 0; width: 100%; height: 4px; background: rgba(255,255,255,0.3); z-index: 1000; } .progress-bar { height: 4px; background: var(--primary-red); width: 0%; transition: width 0.3s ease; }