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

:root {
--primary: #2563eb;
--secondary: #7c3aed;
--accent: #f59e0b;
--dark: #1e293b;
--light: #f8fafc;
--gray: #64748b;
--border: #e2e8f0;
--success: #10b981;
}

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

h1, h2, h3, h4, h5, h6 {
font-family: 'Syne', sans-serif;
font-weight: 700;
line-height: 1.2;
margin-bottom: 0.8rem;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.2rem; }

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

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

section {
padding: 70px 0;
}

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

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

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

.privacy-content p {
margin: 0;
font-size: 14px;
flex: 1;
min-width: 0;
}

.privacy-buttons {
display: flex;
gap: 12px;
flex-wrap: wrap;
}

.btn-accept, .btn-learn {
padding: 10px 24px;
border-radius: 8px;
font-size: 14px;
font-weight: 600;
cursor: pointer;
transition: all 0.3s;
text-decoration: none;
display: inline-block;
border: none;
min-height: 44px;
min-width: 44px;
}

.btn-accept {
background: var(--accent);
color: white;
}

.btn-accept:hover {
background: #d97706;
transform: translateY(-2px);
}

.btn-learn {
background: transparent;
color: white;
border: 2px solid white;
}

.btn-learn:hover {
background: white;
color: var(--dark);
}

.header {
background: white;
padding: 18px 0;
box-shadow: 0 2px 15px rgba(0,0,0,0.08);
position: sticky;
top: 0;
z-index: 1000;
}

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

.logo {
font-family: 'Syne', sans-serif;
font-size: 1.2rem;
font-weight: 800;
color: var(--primary);
text-decoration: none;
transition: color 0.3s;
}

.logo:hover {
color: var(--secondary);
}

.nav {
display: flex;
gap: 30px;
align-items: center;
}

.nav-link {
color: var(--dark);
text-decoration: none;
font-weight: 500;
font-size: 15px;
transition: color 0.3s;
position: relative;
padding: 8px 0;
}

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

.nav-link.active {
color: var(--primary);
}

.nav-link.active::after {
content: '';
position: absolute;
bottom: 0;
left: 0;
right: 0;
height: 3px;
background: var(--primary);
border-radius: 3px;
}

.menu-toggle {
display: none;
flex-direction: column;
gap: 5px;
background: none;
border: none;
cursor: pointer;
padding: 8px;
min-width: 44px;
min-height: 44px;
justify-content: center;
align-items: center;
}

.menu-toggle span {
width: 26px;
height: 3px;
background: var(--dark);
transition: all 0.3s;
border-radius: 3px;
}

.btn-primary, .btn-secondary {
display: inline-block;
padding: 14px 32px;
border-radius: 10px;
font-weight: 600;
font-size: 15px;
text-decoration: none;
transition: all 0.3s;
border: none;
cursor: pointer;
text-align: center;
min-height: 44px;
min-width: 44px;
}

.btn-primary {
background: var(--primary);
color: white;
box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.btn-primary:hover {
background: var(--secondary);
transform: translateY(-3px);
box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

.btn-secondary {
background: white;
color: var(--primary);
border: 2px solid var(--primary);
}

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

.section-header {
text-align: center;
max-width: 750px;
margin: 0 auto 50px;
}

.section-header h2 {
margin-bottom: 15px;
}

.section-header p {
color: var(--gray);
font-size: 1.1rem;
line-height: 1.7;
}

.hero {
min-height: 90vh;
background: var(--dark);
color: white;
position: relative;
overflow: hidden;
display: flex;
align-items: center;
padding: 100px 0 80px;
}

.hero::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: linear-gradient(135deg, rgba(37, 99, 235, 0.92) 0%, rgba(124, 58, 237, 0.88) 100%);
z-index: 1;
}

.hero-bg {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-image: url('../creative_studio_assets/hero-workspace.jpg');
background-size: cover;
background-position: center;
z-index: 0;
}

.hero .container {
position: relative;
z-index: 2;
display: grid;
grid-template-columns: 1.3fr 0.7fr;
gap: 60px;
align-items: center;
}

.hero-content {
max-width: 700px;
}

.hero-badge {
display: inline-block;
background: rgba(245, 158, 11, 0.25);
color: var(--accent);
padding: 10px 24px;
border-radius: 50px;
font-size: 14px;
font-weight: 600;
margin-bottom: 28px;
border: 2px solid var(--accent);
backdrop-filter: blur(10px);
}

.hero-title {
font-size: 3.8rem;
margin-bottom: 1.8rem;
color: white;
line-height: 1.1;
font-weight: 800;
}

.hero-title span {
color: var(--accent);
display: inline-block;
}

.hero-text {
font-size: 1.2rem;
margin-bottom: 2.8rem;
opacity: 0.96;
line-height: 1.8;
}

.hero-buttons {
display: flex;
gap: 18px;
flex-wrap: wrap;
}

.hero-stats {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 25px;
background: rgba(255, 255, 255, 0.12);
backdrop-filter: blur(15px);
padding: 40px 30px;
border-radius: 20px;
border: 1px solid rgba(255, 255, 255, 0.25);
box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
max-width: 100%;
overflow: hidden;
}

.hero-stat-item {
text-align: center;
min-width: 0;
overflow: hidden;
}

.hero-stat-number {
font-size: 1.1rem;
font-weight: 800;
color: var(--accent);
font-family: 'Syne', sans-serif;
line-height: 1;
margin-bottom: 10px;
word-break: break-word;
}

.hero-stat-label {
font-size: 14px;
opacity: 0.92;
font-weight: 500;
word-break: break-word;
}

.features {
background: white;
}

.features-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
gap: 30px;
}

.feature-card {
background: white;
padding: 35px 28px;
border-radius: 16px;
box-shadow: 0 4px 20px rgba(0,0,0,0.08);
transition: all 0.3s;
border: 2px solid transparent;
}

.feature-card:hover {
transform: translateY(-8px);
box-shadow: 0 8px 30px rgba(37, 99, 235, 0.15);
border-color: var(--primary);
}

.feature-icon {
width: 70px;
height: 70px;
background: linear-gradient(135deg, var(--primary), var(--secondary));
border-radius: 16px;
display: flex;
align-items: center;
justify-content: center;
margin-bottom: 24px;
}

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

.feature-card h3 {
margin-bottom: 14px;
color: var(--dark);
}

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

.showcase {
background: white;
}

.showcase-wrapper {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 70px;
align-items: center;
}

.showcase-image {
border-radius: 20px;
overflow: hidden;
box-shadow: 0 20px 60px rgba(0,0,0,0.15);
position: relative;
}

.showcase-image::after {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(124, 58, 237, 0.1));
pointer-events: none;
}

.showcase-image img {
width: 100%;
height: auto;
display: block;
transition: transform 0.5s;
}

.showcase-image:hover img {
transform: scale(1.05);
}

.showcase-content h2 {
margin-bottom: 22px;
color: var(--dark);
}

.showcase-content p {
color: var(--gray);
margin-bottom: 24px;
line-height: 1.8;
font-size: 15.5px;
}

.showcase-list {
list-style: none;
margin-bottom: 35px;
}

.showcase-list li {
padding: 14px 0;
padding-left: 35px;
position: relative;
color: var(--gray);
font-size: 15px;
line-height: 1.6;
}

.showcase-list li::before {
content: '→';
position: absolute;
left: 0;
color: var(--accent);
font-weight: bold;
font-size: 20px;
}

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

.courses-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
gap: 35px;
}

.course-item {
background: white;
padding: 40px 32px;
border-radius: 18px;
box-shadow: 0 4px 20px rgba(0,0,0,0.08);
transition: all 0.3s;
border: 2px solid transparent;
}

.course-item:hover {
transform: translateY(-6px);
box-shadow: 0 8px 30px rgba(0,0,0,0.12);
border-color: var(--accent);
}

.course-icon {
width: 80px;
height: 80px;
background: var(--accent);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
margin-bottom: 24px;
box-shadow: 0 6px 20px rgba(245, 158, 11, 0.3);
}

.course-icon i {
font-size: 36px;
color: white;
}

.course-item h3 {
margin-bottom: 16px;
color: var(--dark);
}

.course-item > p {
color: var(--gray);
margin-bottom: 24px;
line-height: 1.7;
font-size: 15px;
}

.course-highlights {
list-style: none;
}

.course-highlights li {
padding: 10px 0;
padding-left: 28px;
position: relative;
font-size: 14.5px;
color: var(--gray);
}

.course-highlights li::before {
content: '✓';
position: absolute;
left: 0;
color: var(--success);
font-weight: bold;
font-size: 16px;
}

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

.stats-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
gap: 40px;
text-align: center;
}

.stat-item {
padding: 25px 20px;
}

.stat-number {
font-size: 3.5rem;
font-weight: 800;
font-family: 'Syne', sans-serif;
color: var(--accent);
margin-bottom: 12px;
line-height: 1;
}

.stat-label {
font-size: 1.05rem;
opacity: 0.92;
font-weight: 500;
}

.testimonial {
background: linear-gradient(135deg, rgba(37, 99, 235, 1) 0%, rgba(124, 58, 237, 1) 100%);
color: white;
padding: 80px 0;
}

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

blockquote {
font-size: 1.4rem;
line-height: 1.9;
font-style: italic;
margin: 0;
}

blockquote p {
margin-bottom: 30px;
}

blockquote footer {
font-size: 1.1rem;
font-style: normal;
opacity: 0.92;
font-weight: 600;
}

.page-hero {
background: var(--dark);
color: white;
padding: 90px 0;
text-align: center;
position: relative;
overflow: hidden;
}

.page-hero::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: linear-gradient(135deg, rgba(37, 99, 235, 0.95) 0%, rgba(124, 58, 237, 0.92) 100%);
z-index: 1;
}

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

.page-hero h1 {
color: white;
font-size: 3.2rem;
margin-bottom: 18px;
font-weight: 800;
}

.page-hero h1 span {
color: var(--accent);
}

.page-hero p {
font-size: 1.2rem;
opacity: 0.96;
max-width: 750px;
margin: 0 auto;
line-height: 1.7;
}

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

.schedule-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
gap: 35px;
}

.schedule-card {
background: white;
border-radius: 18px;
padding: 35px 30px;
box-shadow: 0 4px 20px rgba(0,0,0,0.08);
position: relative;
transition: all 0.3s;
border: 2px solid transparent;
}

.schedule-card:hover {
transform: translateY(-6px);
box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.schedule-card.featured {
border-color: var(--primary);
box-shadow: 0 6px 30px rgba(37, 99, 235, 0.2);
}

.featured-badge {
position: absolute;
top: -14px;
right: 25px;
background: var(--primary);
color: white;
padding: 6px 18px;
border-radius: 25px;
font-size: 13px;
font-weight: 700;
box-shadow: 0 4px 12px rgba(37, 99, 235, 0.4);
}

.schedule-header {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 28px;
}

.schedule-header h3 {
margin: 0;
color: var(--dark);
}

.schedule-icon {
width: 55px;
height: 55px;
background: linear-gradient(135deg, var(--primary), var(--secondary));
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
}

.schedule-icon i {
color: white;
font-size: 24px;
}

.schedule-details {
margin-bottom: 28px;
}

.schedule-item {
display: flex;
align-items: center;
gap: 14px;
padding: 12px 0;
font-size: 14.5px;
color: var(--gray);
word-break: break-word;
min-width: 0;
}

.schedule-item span {
flex: 1;
min-width: 0;
overflow-wrap: break-word;
}

.schedule-item i {
color: var(--primary);
width: 22px;
font-size: 16px;
}

.schedule-price {
font-size: 2.4rem;
font-weight: 800;
font-family: 'Syne', sans-serif;
color: var(--primary);
margin-bottom: 24px;
}

.course-info {
background: white;
}

.info-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
gap: 50px;
}

.info-block h2 {
margin-bottom: 28px;
color: var(--dark);
}

.info-list {
list-style: none;
}

.info-list li {
padding: 14px 0;
padding-left: 32px;
position: relative;
color: var(--gray);
font-size: 15px;
}

.info-list li i {
position: absolute;
left: 0;
color: var(--success);
font-size: 18px;
}

.prereq-item {
margin-bottom: 28px;
padding: 24px;
background: var(--light);
border-radius: 12px;
border-left: 4px solid var(--primary);
}

.prereq-item h4 {
color: var(--primary);
margin-bottom: 10px;
}

.prereq-item p {
font-size: 14.5px;
color: var(--gray);
line-height: 1.7;
margin: 0;
}

.enrollment-cta, .feedback-cta {
background: var(--dark);
color: white;
}

.cta-box {
text-align: center;
max-width: 750px;
margin: 0 auto;
}

.cta-box h2 {
color: white;
margin-bottom: 18px;
}

.cta-box p {
opacity: 0.94;
margin-bottom: 35px;
font-size: 1.1rem;
line-height: 1.7;
}

.testimonials {
background: white;
}

.testimonials-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
gap: 32px;
}

.testimonial-card {
background: white;
padding: 32px 28px;
border-radius: 16px;
box-shadow: 0 4px 20px rgba(0,0,0,0.08);
transition: all 0.3s;
border: 2px solid transparent;
}

.testimonial-card:hover {
transform: translateY(-5px);
box-shadow: 0 8px 30px rgba(0,0,0,0.12);
border-color: var(--accent);
}

.testimonial-rating {
color: #fbbf24;
margin-bottom: 18px;
font-size: 18px;
}

.testimonial-text {
font-size: 15px;
color: var(--gray);
line-height: 1.8;
margin-bottom: 24px;
}

.testimonial-author {
display: flex;
align-items: center;
gap: 16px;
}

.author-info h4 {
margin-bottom: 4px;
font-size: 16px;
color: var(--dark);
}

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

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

.success-stats h2 {
text-align: center;
margin-bottom: 50px;
color: var(--dark);
}

.success-stats .stats-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
gap: 35px;
}

.stat-card {
background: white;
padding: 40px 30px;
border-radius: 16px;
text-align: center;
box-shadow: 0 4px 20px rgba(0,0,0,0.08);
transition: all 0.3s;
}

.stat-card:hover {
transform: translateY(-5px);
box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.stat-card i {
font-size: 48px;
color: var(--primary);
margin-bottom: 20px;
}

.stat-card .stat-number {
font-size: 3rem;
font-weight: 800;
color: var(--primary);
margin-bottom: 12px;
}

.stat-card p {
color: var(--gray);
font-size: 15px;
margin: 0;
}

.contact-section {
background: white;
}

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

.contact-info h2 {
margin-bottom: 22px;
color: var(--dark);
}

.contact-info > p {
color: var(--gray);
margin-bottom: 40px;
line-height: 1.8;
font-size: 15.5px;
}

.contact-details {
display: flex;
flex-direction: column;
gap: 28px;
}

.contact-item {
display: flex;
gap: 22px;
align-items: start;
}

.contact-icon {
width: 55px;
height: 55px;
background: linear-gradient(135deg, var(--primary), var(--secondary));
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
}

.contact-icon i {
color: white;
font-size: 22px;
}

.contact-text h4 {
margin-bottom: 6px;
color: var(--dark);
}

.contact-text p {
font-size: 14.5px;
color: var(--gray);
line-height: 1.7;
margin: 0;
word-break: break-word;
}

.contact-form-wrapper {
background: var(--light);
padding: 45px 38px;
border-radius: 18px;
box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.contact-form h3 {
margin-bottom: 28px;
color: var(--dark);
}

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

.form-group input,
.form-group textarea {
width: 100%;
padding: 14px 18px;
border: 2px solid var(--border);
border-radius: 10px;
font-family: 'Space Grotesk', sans-serif;
font-size: 15px;
transition: all 0.3s;
background: white;
}

.form-group input:focus,
.form-group textarea:focus {
outline: none;
border-color: var(--primary);
box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

.form-group textarea {
resize: vertical;
min-height: 130px;
}

.checkbox-group {
display: flex;
align-items: flex-start;
}

.checkbox-label {
display: flex;
align-items: flex-start;
gap: 12px;
cursor: pointer;
font-size: 14px;
color: var(--gray);
}

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

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

.map-section h2 {
text-align: center;
margin-bottom: 35px;
color: var(--dark);
}

.map-container {
border-radius: 18px;
overflow: hidden;
box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.map-container iframe {
display: block;
width: 100%;
max-width: 100%;
}

.thank-you-main, .error-main {
min-height: calc(100vh - 40px);
display: flex;
align-items: center;
background: var(--light);
}

.thank-you-section, .error-section {
padding: 100px 0;
margin: 0 auto;
}

.thank-you-content, .error-content {
text-align: center;
max-width: 650px;
margin: 0 auto;
}

.thank-you-icon {
margin-bottom: 35px;
}

.thank-you-icon i {
font-size: 90px;
color: var(--success);
}

.thank-you-content h1, .error-content h1 {
margin-bottom: 22px;
color: var(--dark);
}

.thank-you-content p, .error-content p {
color: var(--gray);
font-size: 1.1rem;
margin-bottom: 40px;
line-height: 1.8;
}

.thank-you-actions, .error-actions {
display: flex;
gap: 18px;
justify-content: center;
flex-wrap: wrap;
}

.error-number {
font-size: 140px;
font-weight: 800;
font-family: 'Syne', sans-serif;
color: var(--primary);
line-height: 1;
margin-bottom: 25px;
}

.policy-content {
max-width: 950px;
margin: 0 auto;
background: white;
padding: 60px 50px;
border-radius: 18px;
box-shadow: 0 4px 20px rgba(0,0,0,0.08);
word-break: break-all;
}

.policy-content h1 {
margin-bottom: 18px;
color: var(--dark);
}

.policy-date {
color: var(--gray);
font-size: 14.5px;
margin-bottom: 40px;
display: block;
}

.policy-content h2 {
margin-top: 40px;
margin-bottom: 18px;
font-size: 1.7rem;
color: var(--dark);
}

.policy-content h3 {
margin-top: 28px;
margin-bottom: 14px;
font-size: 1.3rem;
color: var(--dark);
}

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

.policy-content ul, .policy-content ol {
margin-bottom: 18px;
padding-left: 28px;
color: var(--gray);
}

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

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

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

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

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

.footer-links a:hover {
opacity: 1;
color: var(--accent);
}

.footer-copy {
font-size: 14px;
opacity: 0.85;
}

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

.hero-stats {
grid-template-columns: repeat(3, 1fr);
gap: 20px;
padding: 30px 25px;
}

.showcase-wrapper {
grid-template-columns: 1fr;
gap: 50px;
}

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

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

h1 { font-size: 2rem; }
h2 { font-size: 1.7rem; }
h3 { font-size: 1.3rem; }
h4 { font-size: 1.1rem; }

.container {
padding: 0 18px;
max-width: 100%;
}

section {
padding: 50px 0;
}

.nav {
position: fixed;
top: 75px;
left: 0;
right: 0;
background: white;
flex-direction: column;
padding: 25px 20px;
box-shadow: 0 8px 20px rgba(0,0,0,0.15);
transform: translateY(-100%);
opacity: 0;
visibility: hidden;
transition: all 0.3s;
gap: 0;
}

.nav.active {
transform: translateY(0);
opacity: 1;
visibility: visible;
}

.nav-link {
padding: 14px 0;
width: 100%;
border-bottom: 1px solid var(--border);
}

.nav-link:last-child {
border-bottom: none;
}

.menu-toggle {
display: flex;
}

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

.hero .container {
gap: 40px;
}

.hero-title {
font-size: 2.5rem;
}

.hero-text {
font-size: 1.05rem;
}

.hero-stats {
grid-template-columns: 1fr;
gap: 20px;
padding: 25px 20px;
max-width: 100%;
}

.hero-stat-number {
font-size: 2.5rem;
}

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

.page-hero h1 {
font-size: 2.3rem;
}

.page-hero p {
font-size: 1.05rem;
}

.features-grid {
grid-template-columns: 1fr;
gap: 25px;
}

.feature-card {
padding: 28px 24px;
}

.courses-grid {
grid-template-columns: 1fr;
gap: 28px;
}

.course-item {
padding: 32px 26px;
}

.schedule-grid {
grid-template-columns: 1fr;
gap: 28px;
}

.testimonials-grid {
grid-template-columns: 1fr;
gap: 25px;
}

.stat-number {
font-size: 3rem;
}

blockquote {
font-size: 1.2rem;
}

.info-grid {
grid-template-columns: 1fr;
gap: 40px;
}

.contact-form-wrapper {
padding: 35px 28px;
}

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

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

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

.showcase-wrapper .showcase-image:last-child {
order: -1;
}
}

@media (max-width: 480px) {
h1 { font-size: 1.75rem; }
h2 { font-size: 1.5rem; }
h3 { font-size: 1.2rem; }

.container {
padding: 0 16px;
max-width: 100%;
}

section {
padding: 40px 0;
}

.privacy-content {
padding: 0 16px;
}

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

.btn-accept, .btn-learn {
width: 100%;
text-align: center;
padding: 12px 16px;
font-size: 13px;
}

.header {
padding: 14px 0;
}

.logo {
font-size: 0.8rem;
}

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

.hero-title {
font-size: 2rem;
margin-bottom: 1.4rem;
}

.hero-text {
font-size: 1rem;
margin-bottom: 2.2rem;
}

.hero-badge {
font-size: 12px;
padding: 8px 18px;
}

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

.hero-buttons .btn-primary,
.hero-buttons .btn-secondary {
width: 100%;
text-align: center;
padding: 12px 24px;
}

.hero-stat-number {
font-size: 2.2rem;
}

.hero-stat-label {
font-size: 12px;
}

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

.page-hero h1 {
font-size: 2rem;
}

.page-hero p {
font-size: 1rem;
}

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

.section-header p {
font-size: 1rem;
}

.feature-card {
padding: 24px 20px;
}

.feature-icon {
width: 60px;
height: 60px;
}

.feature-icon i {
font-size: 28px;
}

.course-icon {
width: 70px;
height: 70px;
}

.course-icon i {
font-size: 32px;
}

.stat-number {
font-size: 2.5rem;
}

.stat-label {
font-size: 0.95rem;
}

blockquote {
font-size: 1.1rem;
}

blockquote footer {
font-size: 1rem;
}

.schedule-card {
padding: 28px 22px;
}

.schedule-price {
font-size: 2rem;
}

.testimonial-card {
padding: 26px 22px;
}

.contact-form-wrapper {
padding: 30px 22px;
}

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

.error-number {
font-size: 100px;
}

.thank-you-icon i {
font-size: 70px;
}

.policy-content {
padding: 30px 20px;
}

.footer {
padding: 28px 0;
}
}

@media (max-width: 360px) {
.container {
padding: 0 14px;
max-width: 100%;
}

.hero-title {
font-size: 1.6rem;
word-wrap: break-word;
}

.hero-text {
font-size: 0.95rem;
}

.hero-stat-number {
font-size: 1.9rem;
}

.page-hero h1 {
font-size: 1.7rem;
word-wrap: break-word;
}

.stat-number {
font-size: 2.1rem;
}

.schedule-price {
font-size: 1.7rem;
}

.error-number {
font-size: 75px;
}
}

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

.container {
padding: 0 12px;
max-width: 100%;
}

.hero-title {
font-size: 1.5rem;
word-wrap: break-word;
}

.hero-text {
font-size: 0.9rem;
}

.hero-badge {
font-size: 11px;
padding: 6px 12px;
}

.btn-primary, .btn-secondary {
padding: 12px 16px;
font-size: 13px;
width: 100%;
box-sizing: border-box;
}

.feature-card, .course-item, .testimonial-card, .schedule-card {
padding: 18px 14px;
}

.feature-icon {
width: 55px;
height: 55px;
}

.feature-icon i {
font-size: 24px;
}

.course-icon {
width: 60px;
height: 60px;
}

.course-icon i {
font-size: 28px;
}

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

.policy-content {
padding: 20px 14px;
}

.schedule-price {
font-size: 1.6rem;
}

.schedule-icon {
width: 45px;
height: 45px;
}

.schedule-icon i {
font-size: 20px;
}

.contact-icon {
width: 45px;
height: 45px;
}

.contact-icon i {
font-size: 18px;
}

.hero-stat-number {
font-size: 1.8rem;
word-break: break-word;
}

.hero-stat-label {
font-size: 11px;
}

.stat-number {
font-size: 2rem;
}

.schedule-item {
flex-wrap: wrap;
font-size: 12.5px;
gap: 8px;
}

.schedule-item i {
flex-shrink: 0;
}

.featured-badge {
right: 15px;
padding: 5px 12px;
font-size: 11px;
}

.testimonial-text {
font-size: 13px;
line-height: 1.7;
}

.showcase-list li {
font-size: 13px;
padding: 10px 0;
padding-left: 28px;
}

.course-highlights li {
font-size: 12.5px;
padding: 8px 0;
padding-left: 24px;
}

.info-list li {
font-size: 13px;
padding: 10px 0;
padding-left: 28px;
}

.prereq-item {
padding: 16px;
margin-bottom: 20px;
}

.prereq-item h4 {
font-size: 1rem;
}

.prereq-item p {
font-size: 12.5px;
}

.section-header h2 {
font-size: 1.3rem;
}

.section-header p {
font-size: 0.9rem;
}

.cta-box h2 {
font-size: 1.3rem;
}

.cta-box p {
font-size: 0.9rem;
}

.hero-buttons .btn-primary,
.hero-buttons .btn-secondary {
padding: 12px 16px;
font-size: 13px;
}

.testimonial-rating {
font-size: 16px;
}

.author-info h4 {
font-size: 14px;
}

.author-info span {
font-size: 12px;
}

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

.stat-card i {
font-size: 40px;
}

.stat-card .stat-number {
font-size: 2rem;
}

.stat-card p {
font-size: 13px;
}

.contact-text h4 {
font-size: 1rem;
}

.contact-text p {
font-size: 13px;
}

.checkbox-label {
font-size: 12px;
}

.thank-you-content h1,
.error-content h1 {
font-size: 1.5rem;
}

.thank-you-content p,
.error-content p {
font-size: 0.9rem;
}

.policy-content h2 {
font-size: 1.4rem;
}

.policy-content h3 {
font-size: 1.1rem;
}

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

.page-hero h1 {
font-size: 1.6rem;
word-wrap: break-word;
}

.page-hero p {
font-size: 0.9rem;
}

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

.footer-links a {
font-size: 13px;
}

.footer-copy {
font-size: 12px;
}

blockquote {
font-size: 1rem;
}

blockquote footer {
font-size: 0.9rem;
}

.nav-link {
font-size: 14px;
}



.form-group input,
.form-group textarea {
font-size: 13px;
padding: 10px 12px;
}

.error-number {
font-size: 70px;
}

.thank-you-icon i {
font-size: 60px;
}
}
