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

html {
overflow-x: hidden;
}

body {
overflow-x: hidden;
min-width: 320px;
max-width: 100%;
}

:root {
--primary: #0ea5e9;
--primary-dark: #0284c7;
--secondary: #8b5cf6;
--accent: #f59e0b;
--dark: #0f172a;
--light: #f8fafc;
--gray: #64748b;
--success: #10b981;
--border: #e2e8f0;
}

body {
font-family: 'Space Grotesk', sans-serif;
font-size: 15px;
line-height: 1.6;
color: var(--dark);
background: var(--light);
word-wrap: break-word;
overflow-wrap: break-word;
}

.container {
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
width: 100%;
}

header {
background: rgba(255, 255, 255, 0.95);
backdrop-filter: blur(10px);
border-bottom: 1px solid var(--border);
position: sticky;
top: 0;
z-index: 1000;
transform: translateY(0);
transition: transform 0.3s ease;
}

header.hidden {
transform: translateY(-100%);
}

.header-container {
display: flex;
justify-content: space-between;
align-items: center;
padding: 15px 20px;
max-width: 1200px;
margin: 0 auto;
}

.logo a {
font-size: 20px;
font-weight: 700;
color: var(--primary);
text-decoration: none;
font-family: 'JetBrains Mono', monospace;
}

.main-nav ul {
display: flex;
list-style: none;
gap: 25px;
}

.main-nav a {
color: var(--dark);
text-decoration: none;
font-size: 14px;
font-weight: 500;
transition: color 0.3s;
}

.main-nav a:hover {
color: var(--primary);
}

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

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

.hero-bg {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
opacity: 0.1;
background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><rect width="100" height="100" fill="none"/><path d="M0 0L100 100M100 0L0 100" stroke="white" stroke-width="1"/></svg>');
}

.hero-grid {
display: grid;
grid-template-columns: 1.2fr 1fr;
gap: 50px;
align-items: center;
position: relative;
z-index: 1;
}

.hero-badge {
display: inline-block;
background: rgba(255, 255, 255, 0.2);
padding: 6px 16px;
border-radius: 20px;
font-size: 13px;
font-weight: 600;
margin-bottom: 20px;
}

.hero-content h1 {
font-size: 48px;
margin-bottom: 20px;
line-height: 1.1;
}

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

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

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

.btn-primary:hover {
transform: translateY(-2px);
box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

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

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

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

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

.stat-item strong {
font-size: 24px;
font-weight: 700;
margin-bottom: 4px;
}

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

.hero-visual {
position: relative;
}

.code-window {
background: rgba(15, 23, 42, 0.9);
border-radius: 12px;
overflow: hidden;
box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.window-header {
background: rgba(255, 255, 255, 0.1);
padding: 12px 15px;
display: flex;
gap: 8px;
}

.window-header span {
width: 12px;
height: 12px;
border-radius: 50%;
background: rgba(255, 255, 255, 0.3);
}

.code-content {
padding: 25px;
font-family: 'JetBrains Mono', monospace;
font-size: 14px;
line-height: 1.8;
}

.code-content code {
display: block;
color: #e2e8f0;
}

.code-keyword {
color: #c084fc;
}

.code-function {
color: #60a5fa;
}

.code-var {
color: #34d399;
}

.code-string {
color: #fbbf24;
}

.trust-section {
background: white;
padding: 30px 0;
border-bottom: 1px solid var(--border);
}

.trust-text {
text-align: center;
font-size: 13px;
color: var(--gray);
margin-bottom: 15px;
}

.trust-logos {
display: flex;
justify-content: center;
gap: 40px;
flex-wrap: wrap;
}

.trust-logos span {
font-size: 18px;
font-weight: 700;
color: var(--gray);
opacity: 0.6;
}

section {
padding: 70px 0;
}

.section-header {
text-align: center;
margin-bottom: 50px;
}

.section-header h2 {
font-size: 36px;
margin-bottom: 12px;
color: var(--dark);
}

.section-header p {
font-size: 16px;
color: var(--gray);
}

h2 {
font-size: 32px;
margin-bottom: 35px;
text-align: center;
color: var(--dark);
}

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

.features {
background: white;
}

.features-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 30px;
}

.feature-card {
padding: 30px;
border-radius: 12px;
background: var(--light);
transition: all 0.3s;
}

.feature-card:hover {
transform: translateY(-5px);
box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.feature-icon {
font-size: 48px;
margin-bottom: 15px;
}

.feature-card h3 {
font-size: 18px;
margin-bottom: 10px;
}

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

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

.courses-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 30px;
}

.course-card {
background: white;
border-radius: 12px;
overflow: hidden;
transition: all 0.3s;
position: relative;
}

.course-card:hover {
transform: translateY(-8px);
box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

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

.course-header {
position: relative;
overflow: hidden;
height: 200px;
}

.course-header img {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.3s;
}

.course-card:hover .course-header img {
transform: scale(1.05);
}

.course-body {
padding: 25px;
}

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

.course-level,
.course-duration {
font-size: 12px;
padding: 4px 10px;
border-radius: 4px;
background: var(--light);
color: var(--gray);
font-weight: 500;
}

.course-body h3 {
font-size: 20px;
margin-bottom: 12px;
}

.course-body p {
font-size: 14px;
color: var(--gray);
line-height: 1.7;
margin-bottom: 20px;
}

.course-features {
display: flex;
flex-wrap: wrap;
gap: 10px;
margin-bottom: 20px;
}

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

.btn-course {
display: block;
text-align: center;
padding: 12px;
background: var(--primary);
color: white;
text-decoration: none;
border-radius: 8px;
font-weight: 600;
font-size: 14px;
transition: background 0.3s;
}

.btn-course:hover {
background: var(--primary-dark);
}

.featured-course {
border: 2px solid var(--primary);
}

.learning-path {
background: white;
}

.path-timeline {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 25px;
}

.path-step {
text-align: center;
padding: 30px 20px;
background: var(--light);
border-radius: 12px;
position: relative;
}

.step-number {
width: 60px;
height: 60px;
background: var(--primary);
color: white;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 24px;
font-weight: 700;
margin: 0 auto 20px;
}

.path-step h3 {
font-size: 18px;
margin-bottom: 10px;
}

.path-step p {
font-size: 14px;
color: var(--gray);
line-height: 1.6;
}

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

.pricing-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 30px;
}

.price-card {
background: white;
padding: 40px 30px;
border-radius: 12px;
border: 2px solid var(--border);
text-align: center;
position: relative;
transition: all 0.3s;
}

.price-card:hover {
transform: translateY(-5px);
box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.price-card.featured {
background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
color: white;
border-color: var(--primary);
}

.price-card.featured h3,
.price-card.featured .price,
.price-card.featured .price-desc,
.price-card.featured ul li {
color: white;
}

.popular-badge {
position: absolute;
top: -15px;
left: 50%;
transform: translateX(-50%);
background: var(--accent);
color: white;
padding: 6px 20px;
border-radius: 20px;
font-size: 12px;
font-weight: 600;
}

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

.price {
font-size: 42px;
font-weight: 700;
color: var(--primary);
margin: 15px 0;
}

.price-desc {
font-size: 14px;
color: var(--gray);
margin-bottom: 25px;
}

.price-card ul {
list-style: none;
margin: 25px 0;
text-align: left;
}

.price-card ul li {
padding: 12px 0;
font-size: 14px;
color: var(--dark);
border-bottom: 1px solid var(--border);
}

.price-card.featured ul li {
border-bottom-color: rgba(255, 255, 255, 0.2);
}

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

.btn-price {
display: block;
padding: 14px;
background: var(--primary);
color: white;
text-decoration: none;
border-radius: 8px;
font-weight: 600;
font-size: 15px;
transition: background 0.3s;
margin-top: 25px;
}

.btn-price:hover {
background: var(--primary-dark);
}

.price-card.featured .btn-price {
background: white;
color: var(--primary);
}

.price-card.featured .btn-price:hover {
background: var(--light);
}

.testimonials {
background: white;
}

.testimonials-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 30px;
}

.testimonial-card {
background: var(--light);
padding: 30px;
border-radius: 12px;
}

.testimonial-rating {
color: var(--accent);
font-size: 18px;
margin-bottom: 15px;
}

.testimonial-card p {
font-size: 15px;
color: var(--dark);
line-height: 1.7;
margin-bottom: 20px;
}

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

.testimonial-author strong {
color: var(--dark);
font-size: 15px;
margin-bottom: 4px;
}

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

.stats-section {
background: var(--primary);
color: white;
}

.stats-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 40px;
}

.stat-box {
text-align: center;
}

.stat-number {
font-size: 42px;
font-weight: 700;
margin-bottom: 8px;
}

.stat-label {
font-size: 14px;
opacity: 0.9;
}

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

.faq-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 30px;
max-width: 1000px;
margin: 0 auto;
}

.faq-item {
background: white;
padding: 25px;
border-radius: 12px;
}

.faq-item h3 {
font-size: 17px;
margin-bottom: 10px;
color: var(--primary);
}

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

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

.cta-content h2 {
font-size: 38px;
color: white;
margin-bottom: 15px;
}

.cta-content p {
font-size: 17px;
margin-bottom: 30px;
opacity: 0.95;
}

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

.btn-cta:hover {
transform: translateY(-2px);
box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

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

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

.page-hero h1 {
font-size: 42px;
margin-bottom: 12px;
}

.page-hero p {
font-size: 17px;
opacity: 0.95;
}

.course-intro {
background: white;
}

.intro-content {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 50px;
align-items: center;
}

.intro-text h2 {
text-align: left;
font-size: 32px;
margin-bottom: 20px;
}

.intro-text p {
font-size: 15px;
color: var(--gray);
margin-bottom: 15px;
line-height: 1.7;
}

.intro-image img {
width: 100%;
height: auto;
border-radius: 12px;
box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

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

.curriculum-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 30px;
}

.module {
background: white;
border-radius: 12px;
padding: 30px;
border: 1px solid var(--border);
}

.module-header {
display: flex;
align-items: center;
gap: 15px;
margin-bottom: 20px;
}

.module-header div {
font-size: 32px;
}

.module-header h3 {
font-size: 20px;
margin: 0;
}

.module ul {
list-style: none;
}

.module ul li {
padding: 10px 0;
font-size: 14px;
color: var(--gray);
padding-left: 20px;
position: relative;
}

.module ul li:before {
content: "→";
position: absolute;
left: 0;
color: var(--primary);
}

.course-benefits {
background: white;
}

.benefits-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 30px;
}

.benefit-item {
text-align: center;
padding: 25px;
background: var(--light);
border-radius: 12px;
}

.benefit-item div {
font-size: 42px;
margin-bottom: 15px;
}

.benefit-item h3 {
font-size: 17px;
margin-bottom: 8px;
}

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

.contact-section {
background: white;
}

.contact-wrapper {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 60px;
}

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

.contact-info p {
color: var(--gray);
font-size: 15px;
margin-bottom: 30px;
line-height: 1.7;
}

.info-items {
display: flex;
flex-direction: column;
gap: 25px;
}

.info-item {
display: flex;
gap: 15px;
}

.info-item div:first-child {
font-size: 24px;
color: var(--primary);
margin-top: 3px;
}

.info-item h3 {
font-size: 17px;
margin-bottom: 5px;
}

.info-item p {
font-size: 14px;
color: var(--gray);
margin: 0;
}

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

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

.form-group label {
display: block;
margin-bottom: 8px;
font-weight: 600;
font-size: 14px;
color: var(--dark);
}

.form-group input,
.form-group textarea {
width: 100%;
padding: 12px;
border: 1px solid var(--border);
border-radius: 8px;
font-family: inherit;
font-size: 14px;
transition: border-color 0.3s;
}

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

.checkbox-group {
margin-top: 15px;
}

.checkbox-label {
display: flex;
align-items: flex-start;
gap: 10px;
font-size: 13px;
cursor: pointer;
}

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

.checkbox-label a {
color: var(--primary);
text-decoration: underline;
}

.contact-form button {
width: 100%;
padding: 14px;
background: var(--primary);
color: white;
border: none;
border-radius: 8px;
font-weight: 600;
font-size: 15px;
cursor: pointer;
transition: background 0.3s;
}

.contact-form button:hover {
background: var(--primary-dark);
}

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

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

.thankyou-section,
.error-section {
background: white;
min-height: calc(100vh - 40px);
display: flex;
align-items: center;
}

.thankyou-content,
.error-content {
text-align: center;
max-width: 600px;
margin: 0 auto;
}

.success-icon {
font-size: 80px;
margin-bottom: 20px;
}

.thankyou-content h1 {
font-size: 36px;
margin-bottom: 15px;
color: var(--dark);
}

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

.thankyou-actions {
display: flex;
gap: 15px;
justify-content: center;
margin-top: 30px;
flex-wrap: wrap;
}

.error-code {
font-size: 120px;
font-weight: 700;
color: var(--primary);
line-height: 1;
margin-bottom: 20px;
}

.error-content h1 {
font-size: 36px;
margin-bottom: 15px;
}

.error-content p {
font-size: 16px;
color: var(--gray);
margin-bottom: 30px;
line-height: 1.7;
}

.error-actions {
display: flex;
gap: 15px;
justify-content: center;
flex-wrap: wrap;
}

.policy-section {
background: white;
}

.policy-content {
max-width: 900px;
margin: 0 auto;
}

.update-date {
text-align: center;
color: var(--gray);
font-size: 14px;
margin-bottom: 30px;
}

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

.policy-content h3 {
text-align: left;
font-size: 19px;
margin-top: 20px;
margin-bottom: 10px;
}

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

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

.policy-content ul li {
font-size: 14px;
color: var(--gray);
margin-bottom: 8px;
line-height: 1.6;
}

.cookie-table {
width: 100%;
border-collapse: collapse;
margin: 20px 0;
}

.cookie-table th,
.cookie-table td {
padding: 12px;
text-align: left;
border: 1px solid var(--border);
font-size: 14px;
}

.cookie-table th {
background: var(--light);
font-weight: 600;
}

.form-template {
background: var(--light);
padding: 25px;
border-radius: 8px;
margin: 20px 0;
border-left: 4px solid var(--primary);
}

.form-template p {
margin-bottom: 10px;
}

footer {
background: var(--dark);
color: white;
padding: 30px 0;
}

.footer-content {
display: flex;
justify-content: space-between;
align-items: center;
flex-wrap: wrap;
gap: 20px;
}

.footer-info p {
font-size: 13px;
opacity: 0.8;
}

.footer-links {
display: flex;
gap: 20px;
flex-wrap: wrap;
}

.footer-links a {
color: white;
text-decoration: none;
font-size: 13px;
opacity: 0.8;
transition: opacity 0.3s;
}

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

.privacy-popup {
position: fixed;
bottom: 0;
left: 0;
right: 0;
background: var(--dark);
color: white;
padding: 20px;
z-index: 9999;
transform: translateY(100%);
transition: transform 0.3s;
}

.privacy-popup.show {
transform: translateY(0);
}

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

.privacy-content p {
font-size: 14px;
margin: 0;
}

.privacy-content a {
color: var(--primary);
text-decoration: underline;
}

#acceptPrivacy {
background: var(--primary);
color: white;
border: none;
padding: 10px 25px;
border-radius: 6px;
cursor: pointer;
font-weight: 600;
font-size: 14px;
white-space: nowrap;
}

#acceptPrivacy:hover {
background: var(--primary-dark);
}

@media (max-width: 992px) {
.hero-grid {
grid-template-columns: 1fr;
gap: 40px;
}

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

.features-grid {
grid-template-columns: repeat(2, 1fr);
}

.courses-grid {
grid-template-columns: repeat(2, 1fr);
}

.path-timeline {
grid-template-columns: repeat(2, 1fr);
}

.pricing-grid {
grid-template-columns: repeat(2, 1fr);
}

.testimonials-grid {
grid-template-columns: repeat(2, 1fr);
}

.stats-grid {
grid-template-columns: repeat(2, 1fr);
}

.benefits-grid {
grid-template-columns: repeat(2, 1fr);
}

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

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

.intro-image {
order: -1;
}

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

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

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

.main-nav {
position: fixed;
top: 60px;
left: -100%;
width: 100%;
background: white;
transition: left 0.3s;
border-top: 1px solid var(--border);
box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.main-nav.active {
left: 0;
}

.main-nav ul {
flex-direction: column;
padding: 20px;
gap: 0;
}

.main-nav ul li {
border-bottom: 1px solid var(--border);
}

.main-nav a {
display: block;
padding: 15px 0;
}

.hero {
padding: 50px 0 40px;
}

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

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

.hero-buttons {
flex-direction: column;
}

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

.code-window {
display: none;
}

.features-grid,
.courses-grid,
.pricing-grid,
.testimonials-grid,
.path-timeline,
.stats-grid,
.benefits-grid {
grid-template-columns: 1fr;
}

.section-header h2 {
font-size: 28px;
}

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

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

.privacy-content {
flex-direction: column;
text-align: center;
}

section {
padding: 50px 0;
}
}

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

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

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

.section-header h2 {
font-size: 24px;
}

h2 {
font-size: 24px;
}

.price {
font-size: 36px;
}

.stat-number {
font-size: 32px;
}

.error-code {
font-size: 80px;
}

.btn-primary,
.btn-outline,
.btn-cta {
padding: 12px 24px;
font-size: 14px;
}

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

@media (max-width: 320px) {
.hero-content h1 {
font-size: 22px;
}

.section-header h2 {
font-size: 20px;
}

.feature-card,
.course-body,
.module,
.benefit-item {
padding: 20px;
}

.price-card {
padding: 30px 20px;
}

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

.stat-item {
align-items: center;
text-align: center;
}
}

img {
display: block;
max-width: 100%;
height: auto;
}

iframe {
max-width: 100%;
}

table {
width: 100%;
max-width: 100%;
overflow-x: auto;
display: block;
}

pre, code {
max-width: 100%;
overflow-x: auto;
word-wrap: break-word;
white-space: pre-wrap;
}

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

.hero-content h1 {
font-size: 20px;
line-height: 1.2;
}

.section-header h2 {
font-size: 18px;
}

h2 {
font-size: 18px;
}

h3 {
font-size: 16px;
}

.feature-card,
.course-body,
.module,
.benefit-item {
padding: 15px;
}

.price-card {
padding: 25px 15px;
}

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

.stat-item {
align-items: center;
text-align: center;
}

.btn-primary,
.btn-outline,
.btn-cta,
.btn-course,
.btn-price {
padding: 12px 20px;
font-size: 13px;
min-height: 44px;
min-width: 44px;
}

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

.hero-buttons a {
width: 100%;
text-align: center;
}

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

.form-group input,
.form-group textarea {
font-size: 16px;
}

.logo a {
font-size: 16px;
max-width: 150px;
}

.main-nav a {
font-size: 14px;
}

.menu-toggle {
min-width: 44px;
min-height: 44px;
font-size: 20px;
}

.trust-logos {
gap: 20px;
}

.trust-logos span {
font-size: 14px;
}

.course-features {
flex-direction: column;
}

.course-meta {
flex-wrap: wrap;
}

.path-step {
padding: 20px 15px;
}

.step-number {
width: 50px;
height: 50px;
font-size: 20px;
}

.testimonial-card {
padding: 20px;
}

.stat-number {
font-size: 28px;
}

.error-code {
font-size: 60px;
}

.price {
font-size: 32px;
}

.code-content {
font-size: 11px;
padding: 15px;
}

.hero {
padding: 40px 0 30px;
}

section {
padding: 40px 0;
}

.section-header {
margin-bottom: 30px;
}

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

.policy-content h3 {
font-size: 16px;
}

.policy-content p,
.policy-content ul li {
font-size: 13px;
}

.footer-content {
flex-direction: column;
text-align: center;
}

.footer-links {
justify-content: center;
}

.thankyou-actions,
.error-actions {
width: 100%;
}

.thankyou-actions a,
.error-actions a {
width: 100%;
}
}
