/* Reset */
* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Segoe UI', sans-serif; }
body { background: #fdfdfd; color: #333; }

/* Header */
header { display: flex; justify-content: space-between; align-items: center; padding: 1rem 2rem; border-bottom: 1px solid #eee; background: #fff; position: sticky; top: 0; z-index: 10; }
header .logo { display: flex; align-items: center; }
header img { width: 40px; margin-right: 10px; }
header nav a { margin-left: 20px; text-decoration: none; color: #0078d7; font-weight: 500; }
header nav a:hover { text-decoration: underline; }

/* Hero Section */
.hero { display: flex; align-items: center; justify-content: space-between; padding: 4rem 2rem; background: linear-gradient(120deg, #0078d7, #5ca9ff); color: white; flex-wrap: wrap; }
.hero-text { max-width: 50%; }
.hero-text h2 { font-size: 2.5rem; margin-bottom: 1rem; }
.hero-text p { font-size: 1.2rem; margin-bottom: 2rem; }
.cta-btn { background: #fff; color: #0078d7; padding: 0.8rem 1.5rem; text-decoration: none; border-radius: 6px; font-weight: bold; transition: 0.3s; }
.cta-btn:hover { background: #f2f2f2; }
.hero-img img { max-width: 400px; }

/* Plans Section */
.plans { padding: 3rem 2rem; text-align: center; background: #f9f9f9; }
.plans h3 { margin-bottom: 2rem; font-size: 1.8rem; }
.plan-list { display: flex; justify-content: center; gap: 2rem; flex-wrap: wrap; }
.plan-card { background: #fff; padding: 1.5rem; border: 1px solid #eee; border-radius: 8px; width: 250px; box-shadow: 0 2px 6px rgba(0,0,0,0.05); }
.plan-card h4 { margin-bottom: 1rem; color: #0078d7; }

/* Form Section */
.form-section { padding: 3rem 2rem; text-align: center; }
.form-section h3 { margin-bottom: 1.5rem; font-size: 1.8rem; }
form { max-width: 500px; margin: 0 auto; display: flex; flex-direction: column; gap: 1rem; }
form input, form textarea, form select { padding: 0.8rem; border: 1px solid #ccc; border-radius: 6px; }
form button { background: #0078d7; color: #fff; padding: 0.8rem; border: none; border-radius: 6px; cursor: pointer; transition: 0.3s; }
form button:hover { background: #005ea0; }
.form-message { margin-top: 1rem; font-size: 0.9rem; }

/* Contact Section */
.contact { padding: 2rem; text-align: center; background: #f1f1f1; }

/* Footer */
footer { text-align: center; padding: 1rem; background: #f8f8f8; border-top: 1px solid #eee; font-size: 0.9rem; }
