/* Global Reset */ * { margin: 0; padding: 0; box-sizing: border-box; } /* Font Imports */ @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap'); /* Root Variables */ :root { --primary-color: #00e676; /* Vibrant green for buttons and highlights */ --secondary-color: #2a2a2a; /* Dark secondary for cards */ --accent-color: #ffeb3b; /* Bright yellow for emphasis */ --text-color: #e0e0e0; /* Bright text for dark theme */ --background-color: #121212; /* Dark background */ --shadow: 0 12px 30px rgba(0, 0, 0, 0.3); --border-radius: 12px; --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1); } /* Body Styling */ body { font-family: 'Poppins', sans-serif; background: linear-gradient(135deg, #1a1a1a 0%, #263238 100%); /* Dark gradient */ color: var(--text-color); line-height: 1.7; min-height: 100vh; } /* Container */ .container { max-width: 1000px; /* Reduced max-width */ margin: 0 auto; padding: 0 15px; } /* Header */ .header { background: rgba(33, 33, 33, 0.95); /* Dark semi-transparent header */ backdrop-filter: blur(12px); box-shadow: var(--shadow); padding: 15px 0; position: sticky; top: 0; z-index: 1000; } .header .container { display: flex; justify-content: space-between; align-items: center; } .logo-img { max-width: 120px; transition: var(--transition); } .logo-img:hover { transform: scale(1.05); } .nav a { color: var(--text-color); text-decoration: none; margin-left: 20px; font-weight: 500; font-size: 0.95em; transition: var(--transition); position: relative; } .nav a:hover { color: var(--primary-color); } .nav a::after { content: ''; position: absolute; width: 0; height: 2px; bottom: -4px; left: 0; background: var(--primary-color); transition: var(--transition); } .nav a:hover::after { width: 100%; } /* Hero Section */ .hero { text-align: center; padding: 80px 15px; background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" fill="%23ffffff10"><path d="M0,100 L500,0 L1000,100 Z"/></svg>') no-repeat center/cover; } .hero-title { font-size: 2.8em; font-weight: 700; margin-bottom: 20px; color: var(--text-color); text-shadow: 0 4px 16px rgba(0, 0, 0, 0.4); } .hero-title .brand-highlight { font-weight: 800; background: linear-gradient(135deg, var(--primary-color), var(--accent-color)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; text-shadow: 0 0 10px rgba(0, 230, 118, 0.5); /* Slight glow */ } .hero-subtitle { font-size: 1.3em; color: rgba(255, 255, 255, 0.85); margin-bottom: 30px; max-width: 550px; margin-left: auto; margin-right: auto; } /* CTA Button */ .cta-button { display: inline-flex; align-items: center; padding: 16px 40px; font-size: 1.1em; font-weight: 600; text-decoration: none; border-radius: 50px; cursor: pointer; transition: var(--transition); background: linear-gradient(135deg, var(--primary-color), #00c853); /* Bright green gradient */ color: #121212; box-shadow: 0 8px 24px rgba(0, 230, 118, 0.5); gap: 8px; border: 2px solid var(--accent-color); /* Bright yellow border */ } .cta-button:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0, 230, 118, 0.6); background: linear-gradient(135deg, #00f062, #00e676); border-color: #fff176; } .cta-button.large { padding: 18px 50px; font-size: 1.2em; } .cta-button .material-icons { font-size: 1.4em; } /* Content Section */ .content { padding: 60px 15px; background: var(--secondary-color); border-radius: var(--border-radius); } .section-title { font-size: 2.4em; font-weight: 600; margin-bottom: 25px; color: var(--text-color); text-align: center; } .subsection-title { font-size: 1.8em; font-weight: 600; margin: 35px 0 15px; color: var(--primary-color); } .intro-text, .content p { font-size: 1em; margin-bottom: 20px; color: #b0b0b0; line-height: 1.8; text-align: justify; } .safety-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 15px; margin: 25px 0; } .safety-card { background: #333333; border-radius: var(--border-radius); padding: 15px; text-align: center; box-shadow: var(--shadow); transition: var(--transition); } .safety-card:hover { transform: translateY(-5px); } .safety-card .material-icons { font-size: 2.2em; color: var(--accent-color); margin-bottom: 8px; } .safety-card h4 { font-size: 1.1em; margin-bottom: 8px; color: var(--text-color); } .content-list { list-style: none; margin-bottom: 25px; } .content-list li { display: flex; align-items: flex-start; font-size: 1em; margin-bottom: 12px; gap: 8px; } .content-list .material-icons { color: var(--primary-color); font-size: 1.4em; margin-top: 2px; } .features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; margin: 40px 0; } .feature-card { background: #333333; border-radius: var(--border-radius); padding: 20px; text-align: center; box-shadow: var(--shadow); transition: var(--transition); border: 1px solid rgba(255, 255, 255, 0.1); } .feature-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25); } .feature-card .material-icons { font-size: 2.8em; color: var(--primary-color); margin-bottom: 12px; } .feature-card h4 { font-size: 1.2em; margin-bottom: 10px; color: var(--text-color); } .feature-card p { color: #b0b0b0; line-height: 1.6; } /* Comparison Table */ .comparison-table { width: 100%; border-collapse: collapse; margin: 25px 0; background: #333333; border-radius: var(--border-radius); overflow: hidden; box-shadow: var(--shadow); } .comparison-table th, .comparison-table td { padding: 12px; text-align: center; border-bottom: 1px solid rgba(255, 255, 255, 0.1); } .comparison-table th { background: var(--primary-color); color: #121212; font-weight: 600; } .comparison-table td { color: var(--text-color); } .comparison-table tr:last-child td { border-bottom: none; } /* FAQ Section */ .faq-list { max-width: 800px; margin: 35px auto; text-align: left; } .faq-item { background: #333333; border-radius: 10px; padding: 20px; margin-bottom: 15px; box-shadow: var(--shadow); transition: var(--transition); } .faq-item:hover { transform: translateX(5px); } .faq-item h3 { font-size: 1.2em; margin-bottom: 10px; color: var(--text-color); } .faq-item p { color: #b0b0b0; line-height: 1.7; } .faq-item a { color: var(--primary-color); text-decoration: none; } .faq-item a:hover { text-decoration: underline; } /* Footer */ .footer { background: #1a1a1a; color: var(--text-color); padding: 25px 0; text-align: center; } .footer a { color: var(--accent-color); text-decoration: none; transition: var(--transition); } .footer a:hover { color: #fff; text-decoration: underline; } /* Responsive Design */ @media (max-width: 768px) { .hero-title { font-size: 2.2em; } .hero-title .brand-highlight { font-size: 1em; } .hero-subtitle { font-size: 1.1em; } .nav { display: none; /* Hide nav on smaller screens */ } .safety-grid { grid-template-columns: 1fr; } .features-grid { grid-template-columns: 1fr; } .comparison-table { font-size: 0.85em; } .cta-button { padding: 12px 30px; font-size: 1em; } .cta-button.large { padding: 14px 40px; font-size: 1.1em; } } @media (max-width: 480px) { .hero { padding: 50px 10px; } .hero-title { font-size: 1.8em; } .hero-title .brand-highlight { font-size: 0.9em; } .hero-subtitle { font-size: 1em; } .content { padding: 30px 10px; } .section-title { font-size: 2em; } .subsection-title { font-size: 1.5em; } .safety-card, .feature-card { padding: 15px; } .comparison-table { display: block; overflow-x: auto; font-size: 0.8em; } .faq-item { padding: 15px; } } @media (max-width: 320px) { .hero-title { font-size: 1.6em; } .hero-subtitle { font-size: 0.9em; } .cta-button { padding: 10px 25px; font-size: 0.9em; } .cta-button.large { padding: 12px 30px; font-size: 1em; } .section-title { font-size: 1.8em; } .subsection-title { font-size: 1.3em; } }