* {
margin: 0;
padding: 0;
box-sizing: border-box;
}

:root {
--primary: #1a1a2e;
--secondary: #16213e;
--accent: #0f3460;
--highlight: #e94560;
--text: #1a1a2e;
--bg: #ffffff;
--light: #f8f9fa;
--gray: #6c757d;
}

body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
line-height: 1.5;
color: var(--text);
background: var(--bg);
font-size: 15px;
}

.container {
max-width: 1200px;
margin: 0 auto;
padding: 0 15px;
}

.header {
background: var(--primary);
padding: 12px 0;
position: relative;
box-shadow: 0 2px 8px rgba(0,0,0,0.1);
z-index: 999;
}

.header-content {
display: flex;
justify-content: space-between;
align-items: center;
}

.logo {
font-size: 18px;
font-weight: 700;
color: var(--bg);
letter-spacing: -0.5px;
}

.nav-toggle {
display: none;
flex-direction: column;
background: none;
border: none;
cursor: pointer;
padding: 5px;
}

.nav-toggle span {
width: 22px;
height: 2px;
background: var(--bg);
margin: 3px 0;
transition: 0.3s;
}

.nav-menu {
display: flex;
list-style: none;
gap: 20px;
}

.nav-menu a {
color: var(--bg);
text-decoration: none;
font-size: 14px;
transition: color 0.3s;
}

.nav-menu a:hover {
color: var(--accent);
}

.hero {
background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 50%, var(--accent) 100%);
color: var(--bg);
padding: 80px 0;
position: relative;
overflow: hidden;
}

.hero::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
opacity: 0.3;
}

.hero-content {
position: relative;
z-index: 1;
max-width: 800px;
margin: 0 auto;
text-align: center;
}

.hero h1 {
font-size: 42px;
margin-bottom: 20px;
font-weight: 800;
line-height: 1.2;
letter-spacing: -1px;
}

.hero p {
font-size: 18px;
margin-bottom: 30px;
opacity: 0.95;
line-height: 1.6;
}

.btn {
display: inline-block;
padding: 12px 32px;
background: var(--highlight);
color: var(--bg);
text-decoration: none;
border-radius: 50px;
font-size: 15px;
font-weight: 700;
transition: all 0.3s;
border: none;
cursor: pointer;
box-shadow: 0 4px 15px rgba(233, 69, 96, 0.3);
}

.btn:hover {
background: #d63851;
transform: translateY(-2px);
box-shadow: 0 6px 20px rgba(233, 69, 96, 0.4);
}

section {
padding: 40px 0;
}

h2 {
font-size: 28px;
margin-bottom: 20px;
color: var(--primary);
font-weight: 700;
}

h3 {
font-size: 18px;
margin-bottom: 12px;
color: var(--dark);
}

h4 {
font-size: 16px;
margin-bottom: 10px;
color: var(--dark);
}

p {
margin-bottom: 12px;
}

.about {
background: var(--light);
}

.features-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 20px;
margin-top: 25px;
}

.feature-item {
background: var(--bg);
padding: 20px;
border-radius: 6px;
box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.benefits ul {
list-style: none;
}

.benefits li {
padding: 8px 0 8px 25px;
position: relative;
}

.benefits li:before {
content: "";
position: absolute;
left: 0;
width: 6px;
height: 6px;
background: var(--highlight);
border-radius: 50%;
top: 10px;
}

.testimonial-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 20px;
margin-top: 25px;
}

.testimonial {
background: var(--light);
padding: 20px;
border-radius: 8px;
border-left: 4px solid var(--highlight);
box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.testimonial cite {
display: block;
margin-top: 10px;
font-style: normal;
color: var(--gray);
font-size: 13px;
}

.pricing {
background: var(--light);
}

.pricing-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
gap: 20px;
margin-top: 25px;
}

.pricing-item {
background: var(--bg);
padding: 25px;
border-radius: 6px;
text-align: center;
box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.pricing-item.featured {
border: 2px solid var(--highlight);
transform: scale(1.02);
box-shadow: 0 4px 20px rgba(233, 69, 96, 0.2);
}

.price {
font-size: 32px;
font-weight: 800;
color: var(--highlight);
margin: 15px 0;
}

.pricing-item ul {
list-style: none;
margin: 20px 0;
text-align: left;
}

.pricing-item li {
padding: 6px 0;
font-size: 14px;
}

.journey {
background: linear-gradient(135deg, var(--accent) 0%, var(--secondary) 100%);
color: var(--bg);
padding: 50px 0;
text-align: center;
}

.journey h2 {
color: var(--bg);
text-align: center;
margin-bottom: 20px;
}

.journey p {
color: rgb(19, 19, 49);
margin-bottom: 25px;
}

.journey .btn {
background: var(--highlight);
color: var(--bg);
}

.journey .btn:hover {
background: #d63851;
}

.journey-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 25px;
margin-top: 30px;
}

.journey-step {
background: rgba(255,255,255,0.1);
padding: 25px;
border-radius: 8px;
background: rgba(255,255,255,0.95);
color: var(--text);
}

.journey-step h3 {
color: var(--highlight);
margin-bottom: 12px;
}

.step-number {
font-size: 36px;
font-weight: 800;
color: var(--highlight);
opacity: 0.3;
line-height: 1;
margin-bottom: 10px;
}

.stats {
background: var(--light);
}

.stats .feature-item h3 {
font-size: 32px;
color: var(--highlight);
font-weight: 800;
margin-bottom: 10px;
}

.stats .feature-item p {
font-size: 14px;
}

.map-container {
margin-top: 20px;
border-radius: 6px;
overflow: hidden;
}

.address {
text-align: center;
margin-top: 15px;
font-weight: 600;
}

.footer {
background: var(--primary);
color: var(--bg);
padding: 35px 0 15px;
margin-top: 40px;
}

.footer-content {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 25px;
margin-bottom: 25px;
}

.footer-section h4 {
color: var(--bg);
margin-bottom: 12px;
font-size: 15px;
}

.footer-section p {
font-size: 13px;
opacity: 0.9;
}

.footer-section ul {
list-style: none;
}

.footer-section li {
margin: 6px 0;
}

.footer-section a {
color: var(--bg);
text-decoration: none;
font-size: 13px;
opacity: 0.9;
transition: opacity 0.3s;
}

.footer-section a:hover {
opacity: 1;
}

.footer-bottom {
border-top: 1px solid rgba(255,255,255,0.1);
padding-top: 15px;
text-align: center;
font-size: 13px;
}

.footer-links {
margin-top: 10px;
display: flex;
justify-content: center;
gap: 15px;
flex-wrap: wrap;
}

.footer-links a {
color: var(--bg);
text-decoration: none;
font-size: 12px;
opacity: 0.8;
}

.footer-links a:hover {
opacity: 1;
}

.privacy-popup {
position: fixed;
bottom: 0;
left: 0;
right: 0;
background: var(--dark);
color: var(--bg);
padding: 20px;
box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
z-index: 1000;
display: none;
}

.privacy-popup.show {
display: block;
}

.privacy-content {
max-width: 1200px;
margin: 0 auto;
}

.privacy-content h3 {
color: var(--bg);
font-size: 16px;
margin-bottom: 8px;
}

.privacy-content p {
font-size: 13px;
margin-bottom: 12px;
}

.privacy-buttons {
display: flex;
gap: 15px;
align-items: center;
}

.privacy-buttons button {
padding: 8px 20px;
background: var(--secondary);
color: var(--bg);
border: none;
border-radius: 4px;
cursor: pointer;
font-size: 13px;
font-weight: 600;
}

.privacy-buttons a {
color: var(--bg);
font-size: 13px;
text-decoration: underline;
}

.page-hero {
background: var(--primary);
color: var(--bg);
padding: 40px 0;
text-align: center;
}

.page-hero h1 {
font-size: 28px;
margin-bottom: 10px;
}

.page-hero p {
font-size: 15px;
opacity: 0.9;
}

.curriculum-modules {
margin-top: 25px;
}

.module {
background: var(--light);
padding: 20px;
margin-bottom: 20px;
border-radius: 8px;
border-left: 4px solid var(--highlight);
}

.module ul {
margin-top: 12px;
padding-left: 20px;
}

.module li {
margin: 6px 0;
font-size: 14px;
}

.schedule, .requirements {
background: var(--light);
}

.requirements ul {
padding-left: 20px;
}

.requirements li {
margin: 8px 0;
}

.mentors-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 25px;
margin-top: 25px;
}

.mentor {
background: var(--light);
padding: 20px;
border-radius: 6px;
text-align: center;
}

.mentor img {
width: 100%;
height: auto;
border-radius: 6px;
margin-bottom: 15px;
}

.mentor-title {
color: var(--highlight);
font-weight: 600;
font-size: 14px;
margin-bottom: 10px;
}

.approach, .experience {
background: var(--light);
}

.experience ul {
padding-left: 20px;
}

.experience li {
margin: 8px 0;
}

.contact-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 30px;
margin-top: 25px;
}

.contact-item {
margin-bottom: 20px;
}

.contact-form-wrapper {
background: var(--light);
padding: 25px;
border-radius: 6px;
}

.contact-form-wrapper h2 {
font-size: 22px;
}

.form-group {
margin-bottom: 15px;
}

.form-group label {
display: block;
margin-bottom: 5px;
font-weight: 600;
font-size: 14px;
}

.form-group input,
.form-group textarea {
width: 100%;
padding: 10px;
border: 1px solid #ddd;
border-radius: 4px;
font-size: 14px;
font-family: inherit;
}

.form-group textarea {
resize: vertical;
}

.checkbox-group label {
display: flex;
align-items: flex-start;
gap: 8px;
font-weight: normal;
}

.checkbox-group input[type="checkbox"] {
width: auto;
margin-top: 3px;
}

.checkbox-group a {
color: var(--highlight);
}

.map-section {
background: var(--light);
}

.fullpage-wrapper {
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 50%, var(--accent) 100%);
color: var(--bg);
text-align: center;
padding: 20px;
}

.fullpage-content h1 {
font-size: 48px;
margin-bottom: 15px;
}

.fullpage-content h2 {
font-size: 24px;
color: var(--bg);
margin-bottom: 15px;
}

.fullpage-content p {
font-size: 16px;
margin-bottom: 25px;
opacity: 0.9;
}

.fullpage-content .btn {
margin-top: 10px;
}

.policy-content {
padding: 40px 0;
}

.policy-content h1 {
font-size: 30px;
color: var(--primary);
margin-bottom: 10px;
}

.policy-content h2 {
font-size: 18px;
margin-top: 30px;
margin-bottom: 15px;
}

.policy-content h3 {
font-size: 18px;
margin-top: 20px;
margin-bottom: 12px;
}

.policy-content ul {
margin: 15px 0;
padding-left: 25px;
}

.policy-content li {
margin: 8px 0;
}

.last-updated {
color: var(--gray);
font-size: 13px;
font-style: italic;
margin-bottom: 25px;
}

@media (max-width: 768px) {
.nav-toggle {
display: flex;
}

.nav-menu {
position: absolute;
top: 100%;
left: 0;
right: 0;
background: var(--primary);
flex-direction: column;
padding: 15px;
gap: 10px;
display: none;
}

.nav-menu.active {
display: flex;
}

.hero {
padding: 50px 0;
}

.hero h1 {
font-size: 30px;
}

.hero p {
font-size: 16px;
}

h2 {
font-size: 22px;
}

.features-grid,
.testimonial-grid,
.pricing-grid,
.mentors-grid {
grid-template-columns: 1fr;
}

.pricing-item.featured {
transform: scale(1);
}

.footer-content {
grid-template-columns: 1fr;
gap: 20px;
}

.footer-links {
flex-direction: column;
gap: 8px;
}

.contact-grid {
grid-template-columns: 1fr;
}

.fullpage-content h1 {
font-size: 36px;
}

.policy-content h1 {
font-size: 26px;
}
}

@media (max-width: 480px) {
body {
font-size: 14px;
}

.container {
padding: 0 12px;
}

.logo {
font-size: 16px;
}

.hero {
padding: 40px 0;
}

.hero h1 {
font-size: 26px;
}

.hero p {
font-size: 15px;
}

section {
padding: 30px 0;
}

h2 {
font-size: 20px;
}

h3 {
font-size: 16px;
}

.btn {
padding: 9px 18px;
font-size: 13px;
}

.feature-item,
.testimonial,
.pricing-item,
.module {
padding: 15px;
}

.price {
font-size: 24px;
}

.footer {
padding: 25px 0 12px;
}

.privacy-popup {
padding: 15px;
}

.privacy-content h3 {
font-size: 15px;
}

.privacy-content p {
font-size: 12px;
}

.page-hero {
padding: 30px 0;
}

.page-hero h1 {
font-size: 24px;
}

.fullpage-content h1 {
font-size: 28px;
}

.fullpage-content h2 {
font-size: 20px;
}

.contact-form-wrapper {
padding: 20px;
}
}

@media (max-width: 360px) {
.logo {
font-size: 15px;
}

.hero h1 {
font-size: 24px;
}

h2 {
font-size: 18px;
}

.fullpage-content h1 {
font-size: 24px;
}
}
