 {} *{} {} #IE-warning { display: none; position: fixed; width: 100%; height: 100%; z-index: 9999; background: white; } .IE-warning-message { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); text-align: center; } :root { --primary-blue: #0052CC; --primary-dark: #001F3F; --accent-gold: #FFB81C; --accent-teal: #00B8D4; --success-green: #36B37E; --gradient-primary: linear-gradient(135deg, #0052CC 0%, #00B8D4 100%); --gradient-dark: linear-gradient(135deg, #001F3F 0%, #0052CC 100%); --gradient-gold: linear-gradient(135deg, #FFB81C 0%, #FF9100 100%); --font-primary: 'Inter', sans-serif; --font-display: 'Playfair Display', serif; --shadow-sm: 0 2px 12px rgba(0,0,0,0.08); --shadow-md: 0 8px 24px rgba(0,0,0,0.12); --shadow-lg: 0 16px 48px rgba(0,0,0,0.16); } * { margin: 0; padding: 0; box-sizing: border-box; } body { font-family: var(--font-primary); color: #1a1a1a; overflow-x: hidden; background: #ffffff; } h1, h2, h3, h4, h5, h6 { font-family: var(--font-display); font-weight: 800; line-height: 1.2; } /* Navigation */ .navbar-custom { background: rgba(255, 255, 255, 0.98); backdrop-filter: blur(20px); box-shadow: var(--shadow-sm); padding: 1rem 0; position: fixed; width: 100%; top: 0; z-index: 1000; transition: all 0.3s ease; } .navbar-custom.scrolled { padding: 0.5rem 0; box-shadow: var(--shadow-md); } .navbar-brand-custom { font-family: var(--font-display); font-size: 1.25rem; font-weight: 900; color: var(--primary-blue); text-decoration: none; display: flex; align-items: center; gap: 0.5rem; } .navbar-brand-custom .brand-year { color: var(--accent-gold); font-size: 1.05rem; } .nav-cta-btn { background: var(--gradient-primary); color: white; padding: 0.75rem 2rem; border-radius: 50px; font-weight: 700; text-decoration: none; display: inline-flex; align-items: center; gap: 0.5rem; transition: all 0.3s ease; box-shadow: var(--shadow-sm); } .nav-cta-btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); color: white; } /* Hero Section */ .hero-section { background: var(--gradient-dark); color: white; padding: 140px 0 80px; position: relative; overflow: hidden; } .hero-section::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: radial-gradient(circle at 20% 50%, rgba(0, 184, 212, 0.15) 0%, transparent 50%), radial-gradient(circle at 80% 20%, rgba(255, 184, 28, 0.1) 0%, transparent 50%); pointer-events: none; } . .hero-title .highlight::before { content: ''; display: inline-block; width: 0.25em; /* Adjust spacing as needed */ } /* OR simpler: */ .hero-title .highlight { margin-left: 0.25em; } hero-section::after { content: ''; position: absolute; bottom: -2px; left: 0; right: 0; height: 100px; background: white; clip-path: polygon(0 50%, 100% 0, 100% 100%, 0 100%); } .hero-content { position: relative; z-index: 2; } .hero-badge { display: inline-flex; align-items: center; gap: 0.75rem; background: rgba(255, 184, 28, 0.2); border: 2px solid var(--accent-gold); padding: 0.75rem 1.5rem; border-radius: 50px; font-weight: 700; font-size: 0.95rem; color: var(--accent-gold); margin-bottom: 2rem; } .hero-title { font-size: clamp(2.5rem, 6vw, 4.5rem); margin-bottom: 1.5rem; line-height: 1.1; } .hero-title .highlight { background: var(--gradient-gold); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; } .hero-subtitle { font-size: clamp(1.125rem, 2vw, 1.5rem); color: rgba(255, 255, 255, 0.9); margin-bottom: 2.5rem; line-height: 1.6; max-width: 700px; } .btn-hero-primary { background: var(--gradient-gold); color: var(--primary-dark); padding: 1.25rem 3rem; font-size: 1.25rem; font-weight: 800; border-radius: 50px; border: none; display: inline-flex; align-items: center; gap: 1rem; transition: all 0.3s ease; box-shadow: 0 8px 24px rgba(255, 184, 28, 0.3); text-decoration: none; } .btn-hero-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(255, 184, 28, 0.4); color: var(--primary-dark); } .btn-hero-primary .btn-icon { font-size: 1.5rem; animation: arrowBounce 1.5s ease-in-out infinite; } @keyframes arrowBounce { 0%, 100% { transform: translateX(0); } 50% { transform: translateX(5px); } } .btn-hero-secondary { background: transparent; color: white; padding: 1.25rem 3rem; font-size: 1.125rem; font-weight: 700; border-radius: 50px; border: 2px solid white; display: inline-flex; align-items: center; gap: 0.75rem; transition: all 0.3s ease; text-decoration: none; } .btn-hero-secondary:hover { background: white; color: var(--primary-blue); } .hero-stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 2rem; margin-top: 4rem; } .stat-card { text-align: center; padding: 2rem 1.5rem; background: rgba(255, 255, 255, 0.1); backdrop-filter: blur(10px); border-radius: 16px; border: 1px solid rgba(255, 255, 255, 0.2); } .stat-number { font-size: 3.5rem; font-weight: 900; color: var(--accent-gold); display: block; line-height: 1; } .stat-label { font-size: 0.95rem; color: rgba(255, 255, 255, 0.9); margin-top: 0.75rem; display: block; } .hero-card { background: white; border-radius: 24px; padding: 3rem; box-shadow: var(--shadow-lg); position: sticky; top: 100px; } .hero-card h3 { color: var(--primary-blue); margin-bottom: 1.5rem; font-size: 1.75rem; } .hero-benefits { list-style: none; padding: 0; margin: 0 0 2rem 0; } .hero-benefits li { padding: 1rem 0 1rem 2.5rem; position: relative; border-bottom: 1px solid #f0f0f0; color: #444; font-size: 1rem; line-height: 1.5; } .hero-benefits li:last-child { border-bottom: none; } .hero-benefits li::before { content: '✓'; position: absolute; left: 0; color: var(--success-green); font-weight: 900; font-size: 1.5rem; } .card-cta-btn { background: var(--gradient-primary); color: white; width: 100%; padding: 1.25rem; font-size: 1.125rem; font-weight: 700; border-radius: 12px; border: none; display: flex; align-items: center; justify-content: center; gap: 0.75rem; transition: all 0.3s ease; text-decoration: none; } .card-cta-btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); color: white; } .card-footnote { text-align: center; font-size: 0.875rem; color: #666; margin-top: 1rem; } /* Trust Bar */ .trust-bar { background: #f8f9fa; padding: 2rem 0; border-bottom: 1px solid #e0e0e0; } .trust-items { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; } .trust-item { display: flex; align-items: center; gap: 1rem; } .trust-icon { font-size: 2.5rem; } .trust-text strong { display: block; font-size: 1.5rem; font-weight: 900; color: var(--primary-blue); } .trust-text span { font-size: 0.875rem; color: #666; } /* Section Styles */ section { padding: 80px 0; } .section-header { text-align: center; max-width: 900px; margin: 0 auto 4rem; } .section-label { display: inline-block; background: var(--primary-blue); color: white; padding: 0.5rem 1.5rem; border-radius: 50px; font-size: 0.875rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 1.5rem; } .section-label.label-gold { background: var(--gradient-gold); color: var(--primary-dark); } .section-title { font-size: clamp(2rem, 4vw, 3.5rem); color: var(--primary-dark); margin-bottom: 1.5rem; } .section-subtitle { font-size: clamp(1.125rem, 2vw, 1.375rem); color: #555; line-height: 1.7; } /* Value Cards */ .value-card { background: white; border-radius: 20px; padding: 2.5rem; height: 100%; transition: all 0.3s ease; border: 2px solid #f0f0f0; } .value-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: var(--primary-blue); } .value-icon { width: 80px; height: 80px; background: var(--gradient-primary); border-radius: 16px; display: flex; align-items: center; justify-content: center; font-size: 2.5rem; margin-bottom: 1.5rem; } .value-card h3 { color: var(--primary-blue); font-size: 1.5rem; margin-bottom: 1rem; } .value-card p { color: #555; line-height: 1.7; margin: 0; } /* Testimonial Section */ .testimonial-section { background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%); } .testimonial-card { background: white; border-radius: 20px; padding: 2.5rem; height: 100%; box-shadow: var(--shadow-sm); transition: all 0.3s ease; position: relative; } .testimonial-card:hover { box-shadow: var(--shadow-md); } .quote-icon { position: absolute; top: 1.5rem; right: 1.5rem; font-size: 4rem; color: rgba(0, 82, 204, 0.1); font-family: Georgia, serif; line-height: 1; } .testimonial-text { font-style: italic; color: #444; line-height: 1.7; margin-bottom: 1.5rem; position: relative; z-index: 2; } .testimonial-author { display: flex; align-items: center; gap: 1rem; } .author-avatar { width: 60px; height: 60px; border-radius: 50%; background: var(--gradient-primary); display: flex; align-items: center; justify-content: center; color: white; font-weight: 900; font-size: 1.25rem; } .author-info h5 { margin: 0; font-size: 1.125rem; color: var(--primary-dark); } .author-info p { margin: 0.25rem 0 0 0; font-size: 0.875rem; color: #666; } .testimonial-metrics { display: flex; gap: 2rem; margin-top: 1.5rem; padding-top: 1.5rem; border-top: 2px solid #f0f0f0; } .metric { text-align: center; } .metric strong { display: block; font-size: 1.75rem; font-weight: 900; color: var(--success-green); } .metric span { font-size: 0.875rem; color: #666; } /* Tabs */ .audience-tabs { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; margin-bottom: 3rem; } .audience-tab { background: white; border: 2px solid #e0e0e0; padding: 1rem 2rem; border-radius: 50px; font-weight: 700; color: #444; display: flex; align-items: center; gap: 0.75rem; cursor: pointer; transition: all 0.3s ease; } .audience-tab:hover, .audience-tab.active { background: var(--primary-blue); color: white; border-color: var(--primary-blue); transform: translateY(-2px); box-shadow: var(--shadow-sm); } .audience-tab .tab-icon { font-size: 1.5rem; } .audience-content { display: none; } .audience-content.active { display: block; } /* Revenue Callout */ .revenue-callout { background: var(--gradient-primary); color: white; padding: 2rem; border-radius: 16px; margin: 2rem 0; display: flex; align-items: center; gap: 1.5rem; } .revenue-icon { font-size: 3rem; flex-shrink: 0; } .revenue-content h4 { color: white; margin-bottom: 0.5rem; font-size: 1.5rem; } .revenue-content p { margin: 0; color: rgba(255, 255, 255, 0.95); } /* Timeline */ .timeline { position: relative; padding-left: 3rem; } .timeline::before { content: ''; position: absolute; left: 10px; top: 0; bottom: 0; width: 3px; background: var(--accent-gold); } .timeline-item { position: relative; padding-bottom: 2rem; } .timeline-marker { position: absolute; left: -2.65rem; width: 32px; height: 32px; background: var(--accent-gold); color: var(--primary-dark); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 900; font-size: 0.875rem; } .timeline-content strong { color: var(--primary-blue); display: block; margin-bottom: 0.25rem; } /* Framework Cards */ .framework-section { background: var(--gradient-dark); color: white; } .framework-card { background: rgba(255, 255, 255, 0.05); backdrop-filter: blur(10px); border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 20px; padding: 2.5rem; height: 100%; transition: all 0.3s ease; } .framework-card:hover { background: rgba(255, 255, 255, 0.08); transform: translateY(-5px); } .pillar-header { display: flex; align-items: center; gap: 1.5rem; margin-bottom: 1.5rem; } .pillar-number { width: 60px; height: 60px; background: var(--accent-gold); color: var(--primary-dark); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.75rem; font-weight: 900; flex-shrink: 0; } .framework-card h4 { color: white; margin: 0; font-size: 1.5rem; } .framework-card p { color: rgba(255, 255, 255, 0.9); line-height: 1.7; } .pillar-outcomes { margin-top: 1.5rem; padding-top: 1.5rem; border-top: 1px solid rgba(255, 255, 255, 0.2); } .pillar-outcomes strong { color: var(--accent-gold); display: block; margin-bottom: 0.75rem; } .pillar-outcomes ul { list-style: none; padding: 0; margin: 0; } .pillar-outcomes li { padding-left: 1.5rem; position: relative; margin-bottom: 0.5rem; color: rgba(255, 255, 255, 0.85); font-size: 0.95rem; } .pillar-outcomes li::before { content: '→'; position: absolute; left: 0; color: var(--accent-gold); } /* Event Details */ .event-details { background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%); } .detail-card-large { background: white; border-radius: 24px; padding: 3rem; box-shadow: var(--shadow-md); } .detail-icon-large { font-size: 4rem; margin-bottom: 1.5rem; } .detail-card-large h3 { color: var(--primary-blue); font-size: 2rem; margin-bottom: 1rem; } .venue-name { font-size: 1.5rem; font-weight: 700; color: var(--primary-dark); margin-bottom: 1.5rem; } .venue-features { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1rem; margin-top: 2rem; } .feature-item { display: flex; align-items: center; gap: 0.75rem; padding: 1rem; background: #f8f9fa; border-radius: 12px; } .feature-icon { font-size: 1.5rem; } /* Schedule */ .schedule-day-card { background: white; border-radius: 24px; padding: 2.5rem; margin-bottom: 2rem; box-shadow: var(--shadow-sm); } .day-header { margin-bottom: 2rem; } .day-badge { display: inline-block; background: var(--gradient-gold); color: var(--primary-dark); padding: 0.5rem 1.5rem; border-radius: 50px; font-weight: 900; font-size: 0.875rem; margin-bottom: 1rem; } .day-header h4 { color: var(--primary-blue); font-size: 1.75rem; margin-bottom: 0.5rem; } .day-date { color: #666; font-size: 1.125rem; } .schedule-timeline { position: relative; padding-left: 8rem; } .schedule-item { display: flex; gap: 2rem; padding: 1.5rem 0; border-bottom: 1px solid #f0f0f0; } .schedule-item:last-child { border-bottom: none; } .schedule-item.highlight { background: linear-gradient(to right, rgba(0, 82, 204, 0.05), transparent); padding-left: 1rem; margin-left: -1rem; border-radius: 12px; } .item-time { position: absolute; left: 0; font-weight: 700; color: var(--primary-blue); font-size: 1rem; width: 6rem; } .item-content strong { display: block; color: var(--primary-dark); font-size: 1.125rem; margin-bottom: 0.25rem; } .item-content p { margin: 0; color: #666; font-size: 0.95rem; } /* Investment Section */ .investment-section { background: var(--gradient-primary); color: white; } .pricing-card { background: white; border-radius: 32px; padding: 4rem; max-width: 700px; margin: 0 auto; box-shadow: var(--shadow-lg); } .pricing-badge { display: inline-block; background: var(--gradient-gold); color: var(--primary-dark); padding: 0.75rem 2rem; border-radius: 50px; font-weight: 900; margin-bottom: 2rem; } .price-tag { font-size: 5rem; font-weight: 900; color: var(--primary-blue); line-height: 1; margin-bottom: 0.5rem; } .price-tag sup { font-size: 2.5rem; vertical-align: super; } .price-period { font-size: 1.125rem; color: #666; margin-bottom: 2.5rem; } /* Investment Section - Value Breakdown Table */ .value-breakdown { background: #f8f9fa; border-radius: 20px; padding: 2rem; margin: 2rem 0; } .value-breakdown h4 { color: var(--primary-dark); margin-bottom: 1.5rem; font-weight: 700; } .breakdown-item { display: flex; justify-content: space-between; align-items: center; padding: 1rem 0; border-bottom: 1px solid #e0e0e0; } .breakdown-item:last-of-type { border-bottom: 2px solid var(--primary-blue); padding-bottom: 1rem; margin-bottom: 1rem; } .breakdown-item span { color: #444; /* LEFT SIDE TEXT - Make it visible */ font-size: 1rem; font-weight: 500; } .breakdown-item strong { color: var(--primary-blue); /* RIGHT SIDE TEXT - Make it visible */ font-weight: 700; font-size: 1rem; } .breakdown-total { display: flex; justify-content: space-between; align-items: center; padding-top: 1rem; font-size: 1.25rem; font-weight: 900; } .breakdown-total span { color: var(--primary-dark); /* LEFT SIDE - Make it visible */ } .breakdown-total strong { color: var(--primary-blue); /* RIGHT SIDE - Make it visible */ font-size: 1.5rem; } .guarantee-badge { background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%); padding: 1.5rem; border-radius: 16px; margin-top: 2rem; display: flex; align-items: center; gap: 1rem; } .guarantee-icon { font-size: 2.5rem; flex-shrink: 0; } .guarantee-text { font-size: 0.95rem; color: #444; } .guarantee-text strong { color: var(--primary-blue); } /* Process Steps */ .process-step { background: white; border-radius: 20px; padding: 2.5rem; text-align: center; height: 100%; border: 2px solid #f0f0f0; transition: all 0.3s ease; } .process-step:hover { border-color: var(--primary-blue); transform: translateY(-5px); box-shadow: var(--shadow-md); } .step-number { width: 60px; height: 60px; background: var(--gradient-primary); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.75rem; font-weight: 900; margin: 0 auto 1.5rem; } .step-icon { font-size: 3rem; margin-bottom: 1.5rem; } .process-step h4 { color: var(--primary-blue); margin-bottom: 1rem; font-size: 1.5rem; } .process-step p { color: #555; line-height: 1.6; margin-bottom: 1rem; } .step-time { display: inline-block; background: rgba(0, 82, 204, 0.1); color: var(--primary-blue); padding: 0.5rem 1rem; border-radius: 50px; font-size: 0.875rem; font-weight: 700; } /* FAQ */ .faq-item { background: white; border-radius: 16px; margin-bottom: 1rem; overflow: hidden; box-shadow: var(--shadow-sm); } .faq-question { padding: 1.5rem 2rem; cursor: pointer; display: flex; justify-content: space-between; align-items: center; font-weight: 700; color: var(--primary-blue); transition: all 0.3s ease; } .faq-question:hover { background: #f8f9fa; } .faq-toggle { font-size: 1.5rem; color: var(--accent-gold); font-weight: 900; transition: transform 0.3s ease; } .faq-item.active .faq-toggle { transform: rotate(45deg); } .faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; } .faq-item.active .faq-answer { max-height: 800px; } .faq-answer-content { padding: 0 2rem 1.5rem; color: #555; line-height: 1.7; } /* Final CTA */ .final-cta { background: var(--gradient-dark); color: white; text-align: center; padding: 100px 0; } .final-cta h2 { font-size: clamp(2rem, 4vw, 3.5rem); color: white; margin-bottom: 1.5rem; } .final-cta .lead-text { font-size: clamp(1.125rem, 2vw, 1.5rem); color: rgba(255, 255, 255, 0.9); margin-bottom: 1rem; max-width: 800px; margin-left: auto; margin-right: auto; } .urgency-notice { background: rgba(255, 184, 28, 0.2); border: 2px solid var(--accent-gold); padding: 1.5rem 2rem; border-radius: 16px; display: inline-block; margin-top: 2rem; color: var(--accent-gold); font-weight: 700; } /* Footer */ .footer { background: var(--primary-dark); color: rgba(255, 255, 255, 0.8); padding: 60px 0 20px; } .footer h5 { color: white; font-size: 1.25rem; margin-bottom: 1.5rem; } .footer-links { list-style: none; padding: 0; } .footer-links li { margin-bottom: 0.75rem; } .footer-links a { color: rgba(255, 255, 255, 0.7); text-decoration: none; transition: color 0.3s ease; } .footer-links a:hover { color: var(--accent-gold); } .footer-cta-btn { background: var(--gradient-gold); color: var(--primary-dark); padding: 0.75rem 2rem; border-radius: 50px; font-weight: 700; text-decoration: none; display: inline-block; margin-top: 1rem; } .footer-badge { background: rgba(255, 184, 28, 0.2); border: 2px solid var(--accent-gold); color: var(--accent-gold); padding: 0.5rem 1rem; border-radius: 50px; font-weight: 700; font-size: 0.875rem; margin-top: 1rem; display: inline-block; } .footer-bottom { border-top: 1px solid rgba(255, 255, 255, 0.1); margin-top: 3rem; padding-top: 2rem; text-align: center; } .footer-legal { margin-top: 1rem; } .footer-legal a { color: rgba(255, 255, 255, 0.6); text-decoration: none; margin: 0 1rem; } /* Responsive */ @media (max-width: 768px) { .hero-section { padding: 120px 0 60px; } .hero-stats { grid-template-columns: 1fr; } .schedule-timeline { padding-left: 0; } .item-time { position: relative; width: auto; margin-bottom: 0.5rem; } .schedule-item { flex-direction: column; gap: 0.5rem; } .btn-hero-primary, .btn-hero-secondary { width: 100%; justify-content: center; } } /* Animations */ @keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } } .fade-in-up { animation: fadeInUp 0.8s ease-out; } /* FAQ - Essential Styles */ .faq-item { background: white; border-radius: 16px; margin-bottom: 1rem; overflow: hidden; box-shadow: 0 2px 12px rgba(0,0,0,0.08); } .faq-question { padding: 1.5rem 2rem; cursor: pointer; display: flex; justify-content: space-between; align-items: center; font-weight: 700; color: #0052CC; transition: all 0.3s ease; user-select: none; } .faq-question:hover { background: #f8f9fa; } .faq-toggle { font-size: 1.5rem; color: #FFB81C; font-weight: 900; transition: transform 0.3s ease; flex-shrink: 0; margin-left: 1rem; } .faq-item.active .faq-toggle { transform: rotate(45deg); } .faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; } .faq-answer-content { padding: 0 2rem 1.5rem; color: #555; line-height: 1.7; } .faq-answer-content p { margin: 0; } .fade-in { opacity: 0; animation: fadeIn 0.8s ease-in forwards; } @keyframes fadeIn { to { opacity: 1; } } .fade-in-up { opacity: 0; transform: translateY(30px); animation: fadeInUp 0.8s ease-out forwards; } @keyframes fadeInUp { to { opacity: 1; transform: translateY(0); } } /* =================================== FAQ - HTML5 DETAILS/SUMMARY =================================== */ .faq-details { background: white; border-radius: 16px; margin-bottom: 1rem; box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08); overflow: hidden; transition: all 0.3s ease; } .faq-details:hover { box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12); } .faq-summary { padding: 1.5rem 2rem; cursor: pointer; list-style: none; font-weight: 700; color: #0052CC; font-size: 1.05rem; display: flex; justify-content: space-between; align-items: center; transition: all 0.3s ease; user-select: none; } .faq-summary::-webkit-details-marker { display: none; } .faq-summary:hover { background: #f8f9fa; } .faq-icon { font-size: 1.75rem; color: #FFB81C; font-weight: 900; transition: transform 0.3s ease; flex-shrink: 0; margin-left: 1rem; } .faq-details[open] .faq-icon { transform: rotate(45deg); } .faq-details[open] .faq-summary { background: #f8f9fa; } .faq-content { padding: 0 2rem 1.5rem 2rem; color: #555; line-height: 1.7; } .faq-content p { margin: 0; } /* Smooth animation */ .faq-details[open] { animation: fadeIn 0.3s ease-in; } @keyframes fadeIn { from { opacity: 0.8; } to { opacity: 1; } } .apply-btn { pointer-events: auto !important; position: relative; z-index: 1000; }
