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

:root {
--primary: #7C3AED;
--primary-dark: #6D28D9;
--secondary: #F59E0B;
--dark: #1F2937;
--gray: #6B7280;
--light: #F9FAFB;
--white: #ffffff;
}

html {
scroll-behavior: smooth;
}

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

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

h1, h2, h3, h4, h5, h6 {
font-family: 'Space Grotesk', sans-serif;
font-weight: 700;
line-height: 1.2;
}

h1 {
font-size: 2.2rem;
}

h2 {
font-size: 1.8rem;
margin-bottom: 1.5rem;
}

h3 {
font-size: 1.2rem;
}

a {
text-decoration: none;
color: inherit;
}

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

.privacy-popup {
position: fixed;
bottom: 0;
left: 0;
right: 0;
background: var(--dark);
color: var(--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;
align-items: center;
justify-content: space-between;
gap: 20px;
flex-wrap: wrap;
}

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

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

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

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

.header {
background: var(--white);
padding: 16px 0;
border-bottom: 1px solid var(--light);
position: sticky;
top: 0;
z-index: 1000;
transition: transform 0.3s;
}

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

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

.logo {
font-family: 'Space Grotesk', sans-serif;
font-size: 1.3rem;
font-weight: 700;
color: var(--primary);
}

.nav {
display: flex;
gap: 30px;
}

.nav a {
font-weight: 500;
font-size: 14px;
color: var(--dark);
transition: color 0.3s;
position: relative;
}

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

.nav a::after {
content: '';
position: absolute;
bottom: -4px;
left: 0;
width: 0;
height: 2px;
background: var(--primary);
transition: width 0.3s;
}

.nav a:hover::after {
width: 100%;
}

.menu-toggle {
display: none;
flex-direction: column;
gap: 4px;
background: none;
border: none;
cursor: pointer;
padding: 8px;
}

.menu-toggle span {
width: 24px;
height: 2px;
background: var(--dark);
transition: all 0.3s;
}

.menu-toggle.active span:nth-child(1) {
transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
transform: rotate(-45deg) translate(6px, -6px);
}

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

.hero::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: url('../creative_visuals/hero-workspace.png') center/cover no-repeat;
opacity: 0.08;
z-index: 0;
}

.hero::after {
content: '';
position: absolute;
top: -50%;
right: -10%;
width: 600px;
height: 600px;
background: var(--secondary);
border-radius: 50%;
filter: blur(120px);
opacity: 0.15;
z-index: 0;
}

.hero-bg {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: 
radial-gradient(circle at 10% 20%, rgba(124, 58, 237, 0.3) 0%, transparent 40%),
radial-gradient(circle at 90% 80%, rgba(245, 158, 11, 0.2) 0%, transparent 40%);
z-index: 1;
}

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

.hero-wrapper {
max-width: 1100px;
margin: 0 auto;
display: grid;
grid-template-columns: 1fr 1fr;
gap: 60px;
align-items: center;
}

.hero-content {
text-align: left;
}

.hero-visual {
position: relative;
}

.hero-image-main {
position: relative;
border-radius: 20px;
overflow: hidden;
box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
transform: perspective(1000px) rotateY(-5deg);
transition: transform 0.6s;
}

.hero-image-main:hover {
transform: perspective(1000px) rotateY(0deg);
}

.hero-image-main img {
width: 100%;
height: auto;
display: block;
}

.hero-badge {
display: inline-flex;
align-items: center;
gap: 8px;
background: rgba(255, 255, 255, 0.15);
backdrop-filter: blur(10px);
color: var(--white);
padding: 10px 24px;
border-radius: 50px;
font-size: 14px;
font-weight: 600;
margin-bottom: 28px;
border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-badge::before {
content: '✦';
color: var(--secondary);
font-size: 16px;
}

.hero h1 {
color: var(--white);
font-size: 4rem;
margin-bottom: 28px;
line-height: 1.1;
font-weight: 800;
letter-spacing: -0.02em;
}

.hero h1 .highlight {
background: linear-gradient(120deg, var(--secondary), #FBBF24);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}

.hero p {
color: rgba(255, 255, 255, 0.9);
font-size: 1.25rem;
margin-bottom: 40px;
line-height: 1.8;
}

.hero-cta {
display: flex;
gap: 20px;
margin-bottom: 50px;
flex-wrap: wrap;
}

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

.stat-item {
text-align: left;
padding: 20px;
background: rgba(255, 255, 255, 0.1);
backdrop-filter: blur(10px);
border-radius: 12px;
border: 1px solid rgba(255, 255, 255, 0.15);
}

.stat-number {
display: block;
font-size: 2.8rem;
font-weight: 800;
color: var(--secondary);
margin-bottom: 6px;
line-height: 1;
}

.stat-label {
display: block;
font-size: 13px;
color: rgba(255, 255, 255, 0.8);
font-weight: 500;
}

.btn-primary, .btn-secondary, .btn-outline {
display: inline-block;
padding: 16px 36px;
border-radius: 12px;
font-weight: 600;
font-size: 16px;
transition: all 0.3s;
border: 2px solid transparent;
cursor: pointer;
}

.btn-primary {
background: var(--secondary);
color: var(--dark);
box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.btn-primary:hover {
background: #FBBF24;
transform: translateY(-3px);
box-shadow: 0 8px 25px rgba(245, 158, 11, 0.4);
}

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

.btn-secondary:hover {
background: var(--primary-dark);
transform: translateY(-2px);
}

.btn-outline {
background: rgba(255, 255, 255, 0.1);
backdrop-filter: blur(10px);
color: var(--white);
border-color: rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
background: rgba(255, 255, 255, 0.2);
border-color: var(--white);
}

section {
padding: 70px 0;
}

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

.section-tag {
display: inline-block;
background: var(--light);
color: var(--primary);
padding: 6px 16px;
border-radius: 20px;
font-size: 13px;
font-weight: 600;
margin-bottom: 16px;
}

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

.section-header p {
color: var(--gray);
max-width: 600px;
margin: 0 auto;
}

.features {
background: var(--white);
}

.features h2 {
text-align: center;
margin-bottom: 50px;
}

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

.feature-card {
padding: 30px;
background: var(--light);
border-radius: 12px;
text-align: center;
transition: transform 0.3s, box-shadow 0.3s;
}

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

.feature-card h3 {
margin-bottom: 12px;
}

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

.courses {
background: var(--white);
padding: 80px 0;
}

.courses-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
gap: 40px;
max-width: 1100px;
margin: 0 auto;
}

.course-card {
background: var(--white);
border-radius: 16px;
overflow: hidden;
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
transition: transform 0.3s, box-shadow 0.3s;
}

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

.course-image {
width: 100%;
height: 250px;
overflow: hidden;
}

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

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

.course-content {
padding: 30px;
}

.course-level {
display: inline-block;
background: var(--accent);
color: var(--white);
padding: 4px 12px;
border-radius: 12px;
font-size: 12px;
font-weight: 600;
margin-bottom: 16px;
}

.course-content h3 {
margin-bottom: 16px;
font-size: 1.5rem;
}

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

.course-meta {
display: flex;
gap: 16px;
margin-bottom: 24px;
flex-wrap: wrap;
}

.course-meta span {
font-size: 13px;
color: var(--gray);
font-weight: 500;
}

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

.pricing h2 {
text-align: center;
margin-bottom: 50px;
}

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

.pricing-card {
background: var(--light);
border-radius: 16px;
padding: 40px 30px;
text-align: center;
position: relative;
transition: transform 0.3s, box-shadow 0.3s;
}

.pricing-card:hover {
transform: translateY(-8px);
box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

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

.pricing-card.featured h3,
.pricing-card.featured .price,
.pricing-card.featured p,
.pricing-card.featured li {
color: var(--white);
}

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

.pricing-card h3 {
margin-bottom: 16px;
font-size: 1.4rem;
}

.price {
font-size: 2.5rem;
font-weight: 700;
color: var(--primary);
margin-bottom: 12px;
}

.pricing-card > p {
color: var(--gray);
margin-bottom: 30px;
font-size: 14px;
}

.pricing-card ul {
list-style: none;
margin-bottom: 30px;
text-align: left;
}

.pricing-card ul li {
padding: 12px 0;
color: var(--gray);
font-size: 14px;
position: relative;
padding-left: 24px;
}

.pricing-card ul li::before {
content: '✓';
position: absolute;
left: 0;
color: var(--primary);
font-weight: 700;
font-size: 16px;
}

.pricing-card.featured ul li {
color: var(--white);
}

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

.process h2 {
text-align: center;
margin-bottom: 50px;
}

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

.step {
text-align: center;
padding: 30px 20px;
}

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

.step h3 {
margin-bottom: 12px;
}

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

.testimonials {
background: var(--light);
padding: 80px 0;
}

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

.testimonial-card {
background: var(--white);
padding: 30px;
border-radius: 16px;
border-left: 4px solid var(--primary);
}

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

.testimonial-author strong {
display: block;
color: var(--dark);
margin-bottom: 4px;
}

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

.tools {
background: var(--white);
padding: 80px 0;
}

.tools-list {
display: flex;
flex-wrap: wrap;
gap: 16px;
justify-content: center;
max-width: 800px;
margin: 0 auto;
}

.tool-item {
background: var(--light);
padding: 16px 32px;
border-radius: 30px;
font-weight: 600;
color: var(--dark);
font-size: 15px;
transition: all 0.3s;
}

.tool-item:hover {
background: var(--primary);
color: var(--white);
transform: translateY(-2px);
}

.final-cta {
background: var(--dark);
padding: 80px 0;
}

.final-cta-wrapper {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 60px;
align-items: center;
}

.final-cta-content h2 {
color: var(--white);
margin-bottom: 20px;
}

.final-cta-content p {
color: rgba(255, 255, 255, 0.8);
margin-bottom: 30px;
line-height: 1.7;
font-size: 1.1rem;
}

.final-cta-image img {
border-radius: 16px;
box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.footer {
background: var(--dark);
color: var(--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: 14px;
opacity: 0.8;
}

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

.footer-links a {
font-size: 14px;
opacity: 0.8;
transition: opacity 0.3s;
}

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

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

.page-hero h1 {
color: var(--white);
margin-bottom: 16px;
}

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

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

.overview-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 60px;
align-items: center;
}

.overview-content p {
color: var(--gray);
margin-bottom: 20px;
}

.course-stats {
display: flex;
gap: 30px;
margin-top: 30px;
flex-wrap: wrap;
}

.stat {
display: flex;
align-items: center;
gap: 10px;
}

.stat span {
font-weight: 600;
color: var(--dark);
}

.overview-image img {
border-radius: 16px;
box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

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

.curriculum h2 {
text-align: center;
margin-bottom: 50px;
}

.curriculum-list {
max-width: 900px;
margin: 0 auto;
}

.curriculum-item {
display: flex;
gap: 24px;
padding: 30px;
background: var(--white);
border-radius: 12px;
margin-bottom: 20px;
transition: transform 0.3s, box-shadow 0.3s;
}

.curriculum-item:hover {
transform: translateX(8px);
box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.curriculum-icon {
width: 60px;
height: 60px;
background: linear-gradient(135deg, var(--primary), var(--primary-dark));
color: var(--white);
border-radius: 12px;
display: flex;
align-items: center;
justify-content: center;
font-size: 1.2rem;
font-weight: 700;
flex-shrink: 0;
}

.curriculum-content h3 {
margin-bottom: 8px;
}

.curriculum-content p {
color: var(--gray);
font-size: 14px;
}

.benefits {
background: var(--white);
}

.benefits h2 {
text-align: center;
margin-bottom: 50px;
}

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

.benefit-item {
text-align: center;
padding: 30px 20px;
}

.benefit-item h3 {
margin-bottom: 12px;
}

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

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

.methodology h2 {
text-align: center;
margin-bottom: 50px;
}

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

.method-card {
background: var(--white);
padding: 40px 30px;
border-radius: 12px;
text-align: center;
}

.method-card h3 {
margin-bottom: 12px;
}

.method-card p {
color: var(--gray);
font-size: 14px;
}

.contact-section {
background: var(--white);
}

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

.contact-info h2 {
margin-bottom: 16px;
}

.contact-info > p {
color: var(--gray);
margin-bottom: 40px;
}

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

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

.contact-item h3 {
margin-bottom: 6px;
font-size: 1rem;
}

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

.contact-form-wrapper h2 {
margin-bottom: 30px;
}

.contact-form {
display: flex;
flex-direction: column;
gap: 20px;
}

.form-group {
display: flex;
flex-direction: column;
gap: 8px;
}

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

.form-group input,
.form-group textarea {
padding: 12px 16px;
border: 2px solid var(--light);
border-radius: 8px;
font-family: 'Sora', sans-serif;
font-size: 15px;
transition: border-color 0.3s;
}

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

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

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

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

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

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

.map-section h2 {
text-align: center;
margin-bottom: 40px;
}

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

.contact-cta {
background: var(--white);
}

.thankyou-section,
.error-section {
min-height: calc(100vh - 140px);
display: flex;
align-items: center;
justify-content: center;
background: var(--light);
}

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

.thankyou-content h1,
.error-content h1 {
margin-bottom: 20px;
}

.thankyou-content p,
.error-content p {
color: var(--gray);
font-size: 1.1rem;
margin-bottom: 40px;
}

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

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

.policy-content {
background: var(--white);
max-width: 900px;
margin: 0 auto;
}

.policy-content h2 {
margin-top: 40px;
margin-bottom: 20px;
}

.policy-content h3 {
margin-top: 30px;
margin-bottom: 16px;
}

.policy-content p {
color: var(--gray);
margin-bottom: 16px;
line-height: 1.8;
}

.policy-content ul {
margin-bottom: 20px;
padding-left: 30px;
}

.policy-content li {
color: var(--gray);
margin-bottom: 10px;
line-height: 1.8;
}

@media (max-width: 768px) {
h1 {
font-size: 1.8rem;
}

h2 {
font-size: 1.5rem;
}

.nav {
position: fixed;
top: 70px;
left: 0;
right: 0;
background: var(--white);
flex-direction: column;
padding: 20px;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
transform: translateX(-100%);
transition: transform 0.3s;
gap: 0;
}

.nav.active {
transform: translateX(0);
}

.nav a {
padding: 12px 0;
border-bottom: 1px solid var(--light);
}

.menu-toggle {
display: flex;
}

.hero {
padding: 80px 0 60px;
min-height: auto;
}

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

.hero-content {
text-align: center;
}

.hero-visual {
order: -1;
}

.hero-image-main {
transform: none;
}

.hero h1 {
font-size: 2.2rem;
}

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

.hero-stats {
grid-template-columns: 1fr;
gap: 16px;
}

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

.overview-grid,
.contact-wrapper,
.final-cta-wrapper {
grid-template-columns: 1fr;
gap: 40px;
}

.overview-image,
.final-cta-image {
order: -1;
}

section {
padding: 50px 0;
}

.features-grid,
.courses-grid,
.pricing-grid,
.process-steps,
.benefits-grid,
.methodology-content,
.testimonials-grid {
grid-template-columns: 1fr;
}

.course-stats {
flex-direction: column;
gap: 16px;
}

.thankyou-section,
.error-section {
min-height: calc(100vh - 150px);
}

.error-code {
font-size: 5rem;
}

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

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

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

h1 {
font-size: 1.5rem;
}

h2 {
font-size: 1.3rem;
}

.hero h1 {
font-size: 1.9rem;
}

.hero-stats {
gap: 12px;
}

.stat-item {
padding: 16px;
}

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

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

.hero-cta .btn-primary,
.hero-cta .btn-outline {
width: 100%;
}

.btn-primary,
.btn-secondary,
.btn-outline {
padding: 14px 28px;
font-size: 15px;
}

.feature-card,
.course-card,
.pricing-card {
padding: 24px;
}

.error-code {
font-size: 4rem;
}

.tools-list {
gap: 10px;
}

.tool-item {
padding: 12px 20px;
font-size: 13px;
}
}

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

.hero h1 {
font-size: 1.7rem;
}

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

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

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

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

.hero h1 {
font-size: 1.5rem;
}

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

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

.stat-item {
padding: 12px;
}

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

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

.btn-primary,
.btn-secondary,
.btn-outline {
padding: 12px 20px;
font-size: 13px;
}

.feature-card,
.course-card,
.pricing-card {
padding: 20px;
}

.tool-item {
padding: 10px 16px;
font-size: 12px;
}
}


.impact {
background: var(--light);
padding: 90px 0;
}

.impact-grid {
display: flex;
flex-direction: column;
gap: 80px;
}

.impact-card {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 60px;
align-items: center;
}

.impact-card.reverse {
direction: rtl;
}

.impact-card.reverse > * {
direction: ltr;
}

.impact-image img {
border-radius: 16px;
box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
width: 100%;
}

.impact-content h3 {
font-size: 1.8rem;
margin-bottom: 20px;
color: var(--dark);
}

.impact-content p {
color: var(--gray);
line-height: 1.8;
margin-bottom: 16px;
}

.success-stories {
background: var(--white);
padding: 80px 0;
}

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

.story-card {
background: var(--light);
border-radius: 16px;
overflow: hidden;
}

.story-image img {
width: 100%;
height: 300px;
object-fit: cover;
}

.story-content {
padding: 30px;
}

.story-content h3 {
font-size: 1.3rem;
margin-bottom: 16px;
color: var(--dark);
}

.story-content p {
color: var(--gray);
line-height: 1.7;
margin-bottom: 24px;
}

.story-author strong {
display: block;
color: var(--dark);
font-weight: 600;
margin-bottom: 4px;
}

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

@media (max-width: 768px) {
.impact-card,
.impact-card.reverse {
grid-template-columns: 1fr;
gap: 30px;
direction: ltr;
}

.impact-image {
order: -1;
}

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