:root { --primary-color: #4361ee; --secondary-color: #3f37c9; --accent-color: #4cc9f0; --dark-color: #1a1a2e; --light-color: #f8f9fa; --success-color: #4caf50; --warning-color: #ff9800; --danger-color: #f44336; --text-color: #333; } /* Hero Section */ .hero { background: linear-gradient(rgba(26, 26, 46, 0.8), rgba(26, 26, 46, 0.8)), url('photo-1551288049-bebda4e38f71.avif') no-repeat center center/cover; color: white; padding: 4rem 0; text-align: center; } .hero-content { max-width: 800px; margin: 0 auto; padding: 0 2rem; } .hero h1 { font-size: 2.5rem; margin-bottom: 1rem; } .hero p { font-size: 1.2rem; margin-bottom: 2rem; opacity: 0.9; } /* Section Styles */ .section { margin-bottom: 4rem; } .section-header { margin-top: 38px; text-align: center; margin-bottom: 2.5rem; } .section-header h2 { font-size: 2rem; color: var(--dark-color); margin-bottom: 1rem; position: relative; display: inline-block; } .section-header h2::after { content: ''; position: absolute; bottom: -10px; left: 50%; transform: translateX(-50%); width: 80px; height: 4px; background-color: var(--primary-color); border-radius: 2px; } .section-header p { color: #666; max-width: 700px; margin: 0 auto; } /* Features Section */ .features-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 2rem; } .feature-card { background-color: white; border-radius: 10px; padding: 2rem; box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05); transition: all 0.3s ease; height: 100%; display: flex; flex-direction: column; align-items: center; text-align: center; } .feature-card:hover { transform: translateY(-10px); box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1); } .feature-icon { width: 80px; height: 80px; background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: 1.5rem; } .feature-icon i { font-size: 2rem; color: #fff; } .feature-card h3 { font-size: 1.3rem; margin-bottom: 1rem; color: var(--dark-color); } .feature-card p { color: #666; flex-grow: 1; } /* Steps Section */ .steps-container { max-width: 900px; margin: 0 auto; } .step { display: flex; margin-bottom: 2rem; align-items: flex-start; } .step-number { width: 40px; height: 40px; background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: bold; margin-right: 1.5rem; flex-shrink: 0; } .step-content { flex-grow: 1; } .step-content h3 { font-size: 1.3rem; margin-bottom: 0.5rem; color: var(--dark-color); } .step-content p { color: #666; } .faq-section { padding: 2rem 0; } .faq-container { max-width: 900px; margin: 0 auto; padding: 0 1rem; } .faq-header { text-align: center; margin-bottom: 2.5rem; } .faq-header h2 { font-size: 2rem; color: #1a1a2e; margin-bottom: 1rem; position: relative; display: inline-block; } .faq-header h2::after { content: ''; position: absolute; bottom: -10px; left: 50%; transform: translateX(-50%); width: 80px; height: 4px; background-color: #4361ee; border-radius: 2px; } .faq-header p { color: #666; font-size: 1.1rem; } .faq-item { margin-bottom: 1.5rem; border-radius: 10px; overflow: hidden; box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05); transition: all 0.3s ease; } .faq-item:hover { box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1); } .faq-question { background-color: #f8f9fa; padding: 1.2rem 1.5rem; cursor: pointer; display: flex; justify-content: space-between; align-items: center; transition: background-color 0.3s ease; } .faq-question:hover { background-color: #e9ecef; } .faq-question h3 { font-size: 1.2rem; color: #1a1a2e; font-weight: 600; } .faq-icon { color: #4361ee; font-size: 1.2rem; transition: transform 0.3s ease; } .faq-item.active .faq-icon { transform: rotate(180deg); } .faq-answer { padding: 12px 1.5rem 20px; transition: max-height 0.3s ease, padding 0.3s } .faq-item.active .faq-answer { padding: 1.5rem; max-height: 500px; } .faq-answer p { color: #555; line-height: 1.7; } /* Responsive Styles */ @media (max-width: 768px) { .faq-header h2 { font-size: 1.8rem; } .faq-header p { font-size: 1rem; } .faq-question { padding: 1rem; } .faq-question h3 { font-size: 1.1rem; } } @media (max-width: 576px) { .faq-header h2 { font-size: 1.6rem; } .faq-question h3 { font-size: 1rem; } }