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

:root {
--primary-color: #1a1a2e;
--secondary-color: #0f3460;
--accent-color: #e94560;
--text-color: #333;
--light-bg: #f8f9fa;
--white: #ffffff;
--gray: #6c757d;
--border-color: #dee2e6;
}

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

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

header {
background: var(--primary-color);
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;
max-width: 1200px;
margin: 0 auto;
padding: 0 15px;
}

.logo {
font-size: 18px;
font-weight: 700;
color: var(--white);
text-decoration: none;
}

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

nav a {
color: var(--white);
text-decoration: none;
font-size: 13px;
transition: opacity 0.3s;
}

nav a:hover {
opacity: 0.8;
}

.menu-toggle {
display: none;
background: none;
border: none;
color: var(--white);
font-size: 22px;
cursor: pointer;
}

.hero-modern {
position: relative;
min-height: 85vh;
display: flex;
align-items: center;
background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
overflow: hidden;
padding: 80px 0;
}

.hero-overlay {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: radial-gradient(circle at 20% 50%, rgba(233, 69, 96, 0.1) 0%, transparent 50%);
pointer-events: none;
}

.hero-shapes {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
overflow: hidden;
pointer-events: none;
}

.shape {
position: absolute;
border-radius: 50%;
opacity: 0.1;
}

.shape-1 {
width: 400px;
height: 400px;
background: var(--accent-color);
top: -100px;
right: -100px;
}

.shape-2 {
width: 300px;
height: 300px;
background: var(--accent-color);
bottom: -80px;
left: -80px;
}

.shape-3 {
width: 200px;
height: 200px;
background: var(--white);
top: 50%;
right: 20%;
}

.hero-container {
position: relative;
z-index: 1;
}

.hero-content-modern {
max-width: 800px;
color: var(--white);
}

.hero-badge {
display: inline-block;
background: rgba(233, 69, 96, 0.2);
color: var(--accent-color);
padding: 8px 20px;
border-radius: 30px;
font-size: 12px;
font-weight: 600;
margin-bottom: 20px;
border: 1px solid var(--accent-color);
}

.hero-content-modern h1 {
font-size: 48px;
line-height: 1.2;
margin-bottom: 20px;
font-weight: 800;
}

.hero-content-modern p {
font-size: 18px;
line-height: 1.6;
margin-bottom: 35px;
opacity: 0.9;
max-width: 650px;
}

.hero-buttons {
display: flex;
gap: 15px;
margin-bottom: 50px;
flex-wrap: wrap;
}

.btn-hero-primary {
background: var(--accent-color);
color: var(--white);
padding: 14px 32px;
text-decoration: none;
border-radius: 6px;
font-size: 15px;
font-weight: 600;
transition: all 0.3s;
display: inline-block;
}

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

.btn-hero-secondary {
background: transparent;
color: var(--white);
padding: 14px 32px;
text-decoration: none;
border-radius: 6px;
font-size: 15px;
font-weight: 600;
border: 2px solid var(--white);
transition: all 0.3s;
display: inline-block;
}

.btn-hero-secondary:hover {
background: var(--white);
color: var(--primary-color);
}

.hero-stats {
display: flex;
gap: 40px;
flex-wrap: wrap;
}

.stat-item {
display: flex;
flex-direction: column;
}

.stat-item strong {
font-size: 32px;
font-weight: 700;
color: var(--accent-color);
line-height: 1;
margin-bottom: 5px;
}

.stat-item span {
font-size: 13px;
opacity: 0.8;
}

.page-hero {
background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
color: var(--white);
padding: 50px 0;
text-align: center;
}

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

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

.btn {
display: inline-block;
background: var(--secondary-color);
color: var(--white);
padding: 10px 24px;
text-decoration: none;
border-radius: 4px;
font-size: 13px;
font-weight: 600;
transition: background 0.3s;
border: none;
cursor: pointer;
}

.btn:hover {
background: #d63851;
}

.btn-secondary {
display: inline-block;
background: var(--white);
color: var(--primary-color);
padding: 10px 24px;
text-decoration: none;
border-radius: 4px;
font-size: 13px;
font-weight: 600;
transition: all 0.3s;
border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
background: var(--primary-color);
color: var(--white);
}

section {
padding: 50px 0;
}

section h2 {
font-size: 26px;
margin-bottom: 30px;
text-align: center;
color: var(--primary-color);
}

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

.features {
background: var(--light-bg);
}

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

.feature-icon {
font-size: 32px;
color: var(--accent-color);
margin-bottom: 15px;
}

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

.feature-item h3 {
margin-bottom: 10px;
}

.feature-item p {
font-size: 13px;
color: var(--gray);
line-height: 1.6;
}

.course-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 30px;
}

.course-card {
background: var(--white);
border-radius: 8px;
overflow: hidden;
box-shadow: 0 3px 12px rgba(0,0,0,0.1);
transition: transform 0.3s;
}

.course-card:hover {
transform: translateY(-5px);
}

.course-card img {
width: 100%;
height: auto;
display: block;
}

.course-card h3 {
padding: 20px 20px 10px;
font-size: 18px;
}

.course-card p {
padding: 0 20px;
font-size: 13px;
color: var(--gray);
margin-bottom: 15px;
}

.section-intro {
text-align: center;
font-size: 15px;
color: var(--gray);
max-width: 700px;
margin: -15px auto 35px;
}

.course-image-wrapper {
position: relative;
}

.course-badge {
position: absolute;
top: 15px;
right: 15px;
background: var(--accent-color);
color: var(--white);
padding: 6px 14px;
border-radius: 20px;
font-size: 11px;
font-weight: 600;
}

.course-content {
padding: 20px;
}

.course-meta {
display: flex;
gap: 15px;
margin-bottom: 20px;
flex-wrap: wrap;
}

.course-meta span {
font-size: 12px;
color: var(--gray);
background: var(--light-bg);
padding: 5px 12px;
border-radius: 15px;
}

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

.course-card .price {
font-size: 24px;
font-weight: 700;
color: var(--accent-color);
}

.course-card .btn {
margin: 0 20px 20px;
display: inline-block;
}

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

.about-content-grid {
display: grid;
grid-template-columns: 1.5fr 1fr;
gap: 40px;
align-items: start;
}

.about-text p {
font-size: 14px;
line-height: 1.8;
margin-bottom: 15px;
}

.about-highlights {
display: flex;
flex-direction: column;
gap: 20px;
}

.highlight-box {
background: var(--white);
padding: 25px;
border-radius: 8px;
border-left: 4px solid var(--accent-color);
box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.highlight-box h4 {
font-size: 16px;
color: var(--primary-color);
margin-bottom: 10px;
}

.highlight-box p {
font-size: 13px;
color: var(--gray);
line-height: 1.6;
}

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

.testimonial {
background: var(--white);
padding: 25px;
border-radius: 6px;
border-left: 4px solid var(--accent-color);
box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.testimonial p {
font-size: 13px;
font-style: italic;
margin-bottom: 12px;
line-height: 1.6;
}

.testimonial-rating {
color: #ffc107;
font-size: 16px;
margin-bottom: 12px;
}

.testimonial-author {
display: flex;
flex-direction: column;
gap: 3px;
}

.testimonial-author strong {
font-size: 13px;
color: var(--primary-color);
}

.testimonial-author span {
font-size: 12px;
color: var(--gray);
}

.skills-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
gap: 15px;
}

.skills-mastery {
background: var(--light-bg);
}

.skill-item {
background: var(--white);
color: var(--primary-color);
padding: 15px;
text-align: center;
border-radius: 6px;
font-size: 13px;
font-weight: 500;
border: 2px solid var(--accent-color);
transition: all 0.3s;
}

.skill-item:hover {
background: var(--accent-color);
color: var(--white);
transform: translateY(-3px);
}

.skill-item span {
display: block;
}

.learning-path {
background: var(--white);
}

.path-timeline {
max-width: 900px;
margin: 0 auto;
position: relative;
}

.timeline-item {
display: flex;
gap: 25px;
margin-bottom: 40px;
position: relative;
}

.timeline-marker {
flex-shrink: 0;
width: 50px;
height: 50px;
background: var(--accent-color);
color: var(--white);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 20px;
font-weight: 700;
box-shadow: 0 4px 12px rgba(233, 69, 96, 0.3);
}

.timeline-content h3 {
font-size: 18px;
color: var(--primary-color);
margin-bottom: 10px;
}

.timeline-content p {
font-size: 14px;
color: var(--gray);
line-height: 1.7;
}

.investment-value {
background: var(--light-bg);
}

.value-content {
max-width: 900px;
margin: 0 auto;
text-align: center;
}

.value-content h2 {
margin-bottom: 20px;
}

.value-content > p {
font-size: 15px;
color: var(--gray);
margin-bottom: 40px;
line-height: 1.7;
}

.value-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 25px;
margin-bottom: 40px;
text-align: left;
}

.value-item {
background: var(--white);
padding: 25px;
border-radius: 8px;
box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.value-item h4 {
font-size: 16px;
color: var(--primary-color);
margin-bottom: 10px;
}

.value-item p {
font-size: 13px;
color: var(--gray);
line-height: 1.6;
}

.btn-large {
background: var(--accent-color);
color: var(--white);
padding: 16px 40px;
text-decoration: none;
border-radius: 6px;
font-size: 16px;
font-weight: 600;
transition: all 0.3s;
display: inline-block;
}

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

.enrollment-cta {
background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
color: var(--white);
text-align: center;
}

.cta-content h2 {
color: var(--white);
margin-bottom: 15px;
font-size: 32px;
}

.cta-content > p {
font-size: 16px;
margin-bottom: 30px;
opacity: 0.95;
max-width: 700px;
margin-left: auto;
margin-right: auto;
}

.btn-cta {
background: var(--accent-color);
color: var(--white);
padding: 16px 40px;
text-decoration: none;
border-radius: 6px;
font-size: 16px;
font-weight: 600;
transition: all 0.3s;
display: inline-block;
margin-bottom: 20px;
}

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

.cta-note {
font-size: 13px;
opacity: 0.8;
}

.faq-list {
max-width: 800px;
margin: 0 auto;
}

.faq-item {
background: var(--white);
padding: 20px;
margin-bottom: 15px;
border-radius: 6px;
box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

.faq-item h3 {
font-size: 15px;
margin-bottom: 10px;
}

.faq-item p {
font-size: 13px;
color: var(--gray);
line-height: 1.6;
}

.course-overview {
background: var(--light-bg);
}

.course-overview p {
font-size: 14px;
line-height: 1.8;
margin-bottom: 15px;
max-width: 900px;
margin-left: auto;
margin-right: auto;
}

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

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

.curriculum-item h3 {
margin-bottom: 10px;
font-size: 16px;
}

.curriculum-item p {
font-size: 13px;
color: var(--gray);
line-height: 1.6;
}

.course-details {
background: var(--light-bg);
}

.details-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 25px;
max-width: 900px;
margin: 0 auto;
}

.detail-item {
text-align: center;
padding: 20px;
background: var(--white);
border-radius: 6px;
}

.detail-item h3 {
font-size: 15px;
margin-bottom: 8px;
}

.detail-item p {
font-size: 13px;
color: var(--gray);
}

.pricing {
text-align: center;
}

.price-card {
max-width: 400px;
margin: 0 auto;
background: var(--white);
padding: 35px;
border-radius: 8px;
box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.price-card h3 {
font-size: 20px;
margin-bottom: 20px;
}

.price-amount {
font-size: 42px;
font-weight: 700;
color: var(--secondary-color);
margin-bottom: 25px;
}

.price-features {
list-style: none;
margin-bottom: 25px;
text-align: left;
}

.price-features li {
padding: 8px 0;
font-size: 13px;
border-bottom: 1px solid var(--border-color);
}

.price-features li:last-child {
border-bottom: none;
}

.contact-content {
background: var(--light-bg);
}

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

.contact-info h2 {
text-align: left;
font-size: 24px;
margin-bottom: 15px;
}

.contact-info p {
font-size: 14px;
line-height: 1.7;
margin-bottom: 20px;
}

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

.info-item h3 {
font-size: 15px;
margin-bottom: 8px;
}

.info-item p {
font-size: 13px;
color: var(--gray);
margin-bottom: 5px;
}

.contact-form-wrapper h2 {
text-align: left;
font-size: 24px;
margin-bottom: 20px;
}

.contact-form {
background: var(--white);
padding: 30px;
border-radius: 8px;
box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

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

.form-group label {
display: block;
margin-bottom: 6px;
font-size: 13px;
font-weight: 600;
color: var(--primary-color);
}

.form-group input,
.form-group textarea {
width: 100%;
padding: 10px;
border: 1px solid var(--border-color);
border-radius: 4px;
font-size: 13px;
font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
outline: none;
border-color: var(--accent-color);
}

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

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

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

.map-wrapper {
border-radius: 8px;
overflow: hidden;
box-shadow: 0 2px 12px rgba(0,0,0,0.1);
}

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

.fullpage-content {
text-align: center;
color: var(--white);
max-width: 600px;
}

.thank-you-message h1,
.error-message h1 {
font-size: 32px;
margin-bottom: 20px;
}

.error-message h1 {
font-size: 72px;
margin-bottom: 10px;
}

.error-message h2 {
font-size: 28px;
margin-bottom: 15px;
color: var(--white);
}

.thank-you-message p,
.error-message p {
font-size: 15px;
margin-bottom: 15px;
line-height: 1.7;
opacity: 0.95;
}

.thank-you-actions,
.error-actions {
margin-top: 30px;
display: flex;
gap: 15px;
justify-content: center;
flex-wrap: wrap;
}

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

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

.policy-date {
font-size: 13px;
color: var(--gray);
margin-bottom: 30px;
}

.policy-content h2 {
font-size: 22px;
margin-top: 35px;
margin-bottom: 15px;
color: var(--primary-color);
text-align: left;
}

.policy-content h3 {
font-size: 18px;
margin-top: 25px;
margin-bottom: 12px;
color: var(--primary-color);
}

.policy-content p {
font-size: 14px;
line-height: 1.8;
margin-bottom: 15px;
}

.policy-content ul,
.policy-content ol {
margin-left: 25px;
margin-bottom: 15px;
}

.policy-content li {
font-size: 14px;
line-height: 1.8;
margin-bottom: 8px;
}

footer {
background: var(--primary-color);
color: var(--white);
padding: 40px 0 20px;
}

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

.footer-section h4 {
font-size: 16px;
margin-bottom: 15px;
}

.footer-section p {
font-size: 13px;
line-height: 1.6;
opacity: 0.9;
margin-bottom: 8px;
}

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

.footer-section li {
margin-bottom: 8px;
}

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

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

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

.footer-bottom p {
font-size: 12px;
opacity: 0.8;
}

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

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

.popup-content {
max-width: 1200px;
margin: 0 auto;
display: flex;
justify-content: space-between;
align-items: center;
gap: 20px;
flex-wrap: wrap;
}

.popup-content p {
font-size: 13px;
flex: 1;
min-width: 250px;
}

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

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

@media (max-width: 768px) {
nav ul {
display: none;
position: absolute;
top: 100%;
left: 0;
right: 0;
background: var(--primary-color);
flex-direction: column;
padding: 15px;
gap: 10px;
}

nav ul.active {
display: flex;
}

.menu-toggle {
display: block;
}

.hero-modern {
min-height: 70vh;
padding: 60px 0;
}

.hero-content-modern h1 {
font-size: 32px;
}

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

.hero-stats {
gap: 25px;
}

.stat-item strong {
font-size: 26px;
}

.shape-1, .shape-2, .shape-3 {
display: none;
}

.about-content-grid {
grid-template-columns: 1fr;
}

.timeline-item {
flex-direction: column;
gap: 15px;
}

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

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

section h2 {
font-size: 22px;
}

.course-grid,
.feature-grid,
.testimonial-grid,
.curriculum-grid {
grid-template-columns: 1fr;
}

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

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

.popup-content {
flex-direction: column;
align-items: flex-start;
}

.popup-buttons {
width: 100%;
justify-content: space-between;
}
}

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

.logo {
font-size: 16px;
}

.hero-modern {
min-height: 60vh;
padding: 40px 0;
}

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

.hero-content-modern p {
font-size: 14px;
}

.hero-buttons {
flex-direction: column;
width: 100%;
}

.btn-hero-primary,
.btn-hero-secondary {
width: 100%;
text-align: center;
}

.hero-stats {
flex-direction: column;
gap: 20px;
}

section {
padding: 35px 0;
}

section h2 {
font-size: 20px;
margin-bottom: 20px;
}

.btn {
padding: 9px 20px;
font-size: 12px;
}

.course-card h3 {
font-size: 16px;
}

.price-amount {
font-size: 36px;
}

.cta-content h2 {
font-size: 24px;
}

.thank-you-message h1,
.error-message h2 {
font-size: 24px;
}

.error-message h1 {
font-size: 56px;
}

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

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

@media (max-width: 320px) {
.container {
padding: 0 10px;
}

.hero-content-modern h1 {
font-size: 22px;
}

.hero-content-modern p {
font-size: 13px;
}

.stat-item strong {
font-size: 22px;
}

section h2 {
font-size: 18px;
}

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

.thank-you-actions,
.error-actions {
flex-direction: column;
}

.btn,
.btn-secondary {
width: 100%;
margin-top: 10px;
}
}
