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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #f8f9fa;
}

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

.main-header {
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #1a73e8;
}

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

.main-nav a {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    transition: color 0.3s;
}

.main-nav a:hover {
    color: #1a73e8;
}

.ad-label {
    background-color: #fff3cd;
    color: #856404;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #2c3e50;
    margin: 3px 0;
    transition: 0.3s;
}

.hero-section {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #34495e;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
}

.hero-overlay {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-text {
    max-width: 700px;
    color: #ffffff;
    padding: 40px;
    background-color: rgba(0, 0, 0, 0.4);
    border-radius: 8px;
}

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

.hero-text p {
    font-size: 20px;
    margin-bottom: 30px;
    line-height: 1.6;
}

.cta-primary {
    display: inline-block;
    padding: 16px 36px;
    background-color: #1a73e8;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 18px;
    transition: background-color 0.3s;
}

.cta-primary:hover {
    background-color: #1557b0;
}

.intro-section {
    padding: 80px 0;
    background-color: #ffffff;
}

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

.intro-content h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #1a73e8;
}

.intro-content p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #5a6c7d;
}

.courses-section {
    padding: 80px 0;
    background-color: #f0f4f8;
}

.courses-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 50px;
    color: #2c3e50;
}

.courses-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.course-card {
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    width: calc(33.333% - 20px);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.card-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
    background-color: #e1e8ed;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-content h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.card-content p {
    font-size: 16px;
    color: #5a6c7d;
    margin-bottom: 20px;
}

.course-features {
    list-style: none;
    margin-bottom: 25px;
}

.course-features li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    font-size: 15px;
    color: #5a6c7d;
}

.course-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #1a73e8;
    font-weight: bold;
}

.price-tag {
    font-size: 32px;
    font-weight: 700;
    color: #1a73e8;
    margin-bottom: 20px;
}

.btn-select {
    padding: 14px 28px;
    background-color: #1a73e8;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-top: auto;
}

.btn-select:hover {
    background-color: #1557b0;
}

.enrollment-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.enrollment-wrapper {
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

.enrollment-info {
    flex: 1;
}

.enrollment-info h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.enrollment-info p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #5a6c7d;
}

.enrollment-info img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.enrollment-form-container {
    flex: 1;
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.enrollment-form-container h3 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.form-notice {
    color: #856404;
    background-color: #fff3cd;
    padding: 12px;
    border-radius: 6px;
    margin-bottom: 25px;
    font-size: 14px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2c3e50;
}

.form-group input {
    width: 100%;
    padding: 12px;
    border: 1px solid #cbd5e0;
    border-radius: 6px;
    font-size: 16px;
}

.form-group input:focus {
    outline: none;
    border-color: #1a73e8;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background-color: #1a73e8;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-submit:hover:not(:disabled) {
    background-color: #1557b0;
}

.btn-submit:disabled {
    background-color: #cbd5e0;
    cursor: not-allowed;
}

.testimonials-section {
    padding: 80px 0;
    background-color: #1a73e8;
    color: #ffffff;
}

.testimonials-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 50px;
}

.testimonials-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.testimonial-card {
    flex: 1;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 12px;
    min-width: 280px;
}

.testimonial-card p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    font-weight: 600;
    font-size: 16px;
}

.benefits-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.benefits-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 50px;
    color: #2c3e50;
}

.benefits-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.benefit-item {
    flex: 1;
    min-width: 250px;
    background-color: #f8f9fa;
    padding: 35px;
    border-radius: 12px;
    text-align: center;
}

.benefit-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.benefit-item h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.benefit-item p {
    font-size: 16px;
    color: #5a6c7d;
}

.main-footer {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 60px 0 20px;
}

.footer-grid {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.footer-column {
    flex: 1;
    min-width: 200px;
}

.footer-column h4 {
    font-size: 20px;
    margin-bottom: 20px;
}

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

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column a {
    color: #cbd5e0;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: #ffffff;
}

.footer-column p {
    color: #cbd5e0;
    line-height: 1.6;
}

.footer-disclaimer {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.footer-disclaimer p {
    font-size: 14px;
    line-height: 1.6;
    color: #cbd5e0;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 20px;
    box-shadow: 0 -4px 16px rgba(0,0,0,0.2);
    z-index: 1000;
    display: none;
}

.cookie-banner.show {
    display: block;
}

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

.cookie-content p {
    flex: 1;
    font-size: 15px;
}

.cookie-actions {
    display: flex;
    gap: 15px;
}

.btn-accept {
    padding: 12px 28px;
    background-color: #1a73e8;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-accept:hover {
    background-color: #1557b0;
}

.btn-reject {
    padding: 12px 28px;
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-reject:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.page-hero {
    background: linear-gradient(135deg, #1a73e8 0%, #0d47a1 100%);
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
}

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.page-hero p {
    font-size: 20px;
    max-width: 700px;
    margin: 0 auto;
}

.about-content {
    padding: 80px 0;
    background-color: #ffffff;
}

.about-intro {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
}

.about-intro h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #1a73e8;
}

.about-intro p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #5a6c7d;
}

.about-story {
    display: flex;
    gap: 50px;
    align-items: center;
    margin-bottom: 80px;
}

.story-image {
    flex: 1;
    background-color: #e1e8ed;
    border-radius: 12px;
    overflow: hidden;
}

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

.story-text {
    flex: 1;
}

.story-text h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: #2c3e50;
}

.story-text p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #5a6c7d;
    line-height: 1.7;
}

.approach-section {
    margin-bottom: 80px;
}

.approach-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: #2c3e50;
}

.approach-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.approach-card {
    flex: 1;
    min-width: 250px;
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
}

.approach-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #1a73e8;
}

.approach-card p {
    font-size: 16px;
    color: #5a6c7d;
    line-height: 1.6;
}

.values-section {
    margin-bottom: 80px;
}

.values-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: #2c3e50;
}

.values-content {
    display: flex;
    gap: 50px;
    align-items: center;
}

.values-text {
    flex: 1;
}

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

.values-list li {
    margin-bottom: 25px;
    font-size: 17px;
    color: #5a6c7d;
    line-height: 1.7;
}

.values-list strong {
    color: #2c3e50;
}

.values-image {
    flex: 1;
    background-color: #e1e8ed;
    border-radius: 12px;
    overflow: hidden;
}

.values-image img {
    width: 100%;
    object-fit: cover;
}

.impact-section {
    margin-bottom: 80px;
}

.impact-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 30px;
    color: #2c3e50;
}

.impact-section p {
    max-width: 800px;
    margin: 0 auto 20px;
    font-size: 17px;
    color: #5a6c7d;
    line-height: 1.7;
}

.impact-image {
    margin-top: 40px;
    background-color: #e1e8ed;
    border-radius: 12px;
    overflow: hidden;
}

.impact-image img {
    width: 100%;
    object-fit: cover;
}

.commitment-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 30px;
    color: #2c3e50;
}

.commitment-section p {
    max-width: 800px;
    margin: 0 auto 20px;
    font-size: 17px;
    color: #5a6c7d;
    line-height: 1.7;
}

.cta-section {
    padding: 80px 0;
    background-color: #f0f4f8;
    text-align: center;
}

.cta-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #5a6c7d;
}

.cta-button {
    display: inline-block;
    padding: 16px 36px;
    background-color: #1a73e8;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 18px;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #1557b0;
}

.services-main {
    padding: 80px 0;
    background-color: #ffffff;
}

.services-intro {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
}

.services-intro h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #1a73e8;
}

.services-intro p {
    font-size: 18px;
    color: #5a6c7d;
}

.service-detailed {
    margin-bottom: 80px;
}

.service-content {
    display: flex;
    gap: 50px;
    align-items: center;
}

.service-content.reverse {
    flex-direction: row-reverse;
}

.service-text {
    flex: 1;
}

.service-text h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.service-text h4 {
    font-size: 22px;
    margin-top: 25px;
    margin-bottom: 15px;
    color: #1a73e8;
}

.service-text p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #5a6c7d;
    line-height: 1.7;
}

.service-text ul {
    margin-bottom: 25px;
    padding-left: 25px;
}

.service-text ul li {
    margin-bottom: 12px;
    font-size: 16px;
    color: #5a6c7d;
}

.service-pricing {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 30px 0;
}

.price-label {
    font-size: 18px;
    color: #5a6c7d;
}

.price-amount {
    font-size: 36px;
    font-weight: 700;
    color: #1a73e8;
}

.service-image {
    flex: 1;
    background-color: #e1e8ed;
    border-radius: 12px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    object-fit: cover;
}

.enrollment-cta {
    padding: 80px 0;
    background-color: #f0f4f8;
    text-align: center;
}

.enrollment-cta h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.enrollment-cta p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #5a6c7d;
}

.contact-main {
    padding: 80px 0;
    background-color: #ffffff;
}

.contact-grid {
    display: flex;
    gap: 50px;
    align-items: flex-start;
    margin-bottom: 80px;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #2c3e50;
}

.contact-info p {
    font-size: 17px;
    margin-bottom: 30px;
    color: #5a6c7d;
    line-height: 1.7;
}

.contact-details {
    margin-bottom: 40px;
}

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

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #1a73e8;
}

.contact-item p {
    font-size: 16px;
    color: #5a6c7d;
    line-height: 1.6;
    margin-bottom: 0;
}

.contact-note {
    background-color: #f8f9fa;
    padding: 25px;
    border-radius: 12px;
}

.contact-note h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.contact-note p {
    font-size: 16px;
    color: #5a6c7d;
    line-height: 1.6;
    margin-bottom: 0;
}

.contact-image {
    flex: 1;
    background-color: #e1e8ed;
    border-radius: 12px;
    overflow: hidden;
}

.contact-image img {
    width: 100%;
    object-fit: cover;
}

.location-section {
    margin-bottom: 80px;
}

.location-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 25px;
    color: #2c3e50;
}

.location-section p {
    max-width: 800px;
    margin: 0 auto 40px;
    text-align: center;
    font-size: 17px;
    color: #5a6c7d;
    line-height: 1.7;
}

.location-image {
    background-color: #e1e8ed;
    border-radius: 12px;
    overflow: hidden;
}

.location-image img {
    width: 100%;
    object-fit: cover;
}

.faq-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: #2c3e50;
}

.faq-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.faq-item {
    flex: 1;
    min-width: 250px;
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
}

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #1a73e8;
}

.faq-item p {
    font-size: 16px;
    color: #5a6c7d;
    line-height: 1.6;
}

.thanks-section {
    padding: 80px 0;
    background-color: #ffffff;
}

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

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: #10b981;
    color: #ffffff;
    font-size: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.thanks-message {
    font-size: 20px;
    color: #5a6c7d;
    margin-bottom: 40px;
}

.enrollment-details {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 50px;
}

.enrollment-details p {
    font-size: 17px;
    color: #5a6c7d;
    line-height: 1.7;
}

.thanks-info {
    margin-bottom: 50px;
}

.thanks-info h2 {
    font-size: 32px;
    margin-bottom: 40px;
    color: #2c3e50;
}

.steps-grid {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.step-item {
    flex: 1;
    min-width: 220px;
    max-width: 250px;
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: #1a73e8;
    color: #ffffff;
    font-size: 24px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.step-item h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.step-item p {
    font-size: 15px;
    color: #5a6c7d;
    line-height: 1.6;
}

.thanks-support {
    background-color: #fff3cd;
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 40px;
}

.thanks-support h2 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #856404;
}

.thanks-support p {
    font-size: 16px;
    color: #856404;
    line-height: 1.6;
}

.thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 50px;
}

.btn-primary {
    display: inline-block;
    padding: 16px 36px;
    background-color: #1a73e8;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 18px;
    transition: background-color 0.3s;
}

.btn-primary:hover {
    background-color: #1557b0;
}

.btn-secondary {
    display: inline-block;
    padding: 16px 36px;
    background-color: transparent;
    color: #1a73e8;
    text-decoration: none;
    border: 2px solid #1a73e8;
    border-radius: 6px;
    font-weight: 600;
    font-size: 18px;
    transition: background-color 0.3s, color 0.3s;
}

.btn-secondary:hover {
    background-color: #1a73e8;
    color: #ffffff;
}

.thanks-image {
    background-color: #e1e8ed;
    border-radius: 12px;
    overflow: hidden;
}

.thanks-image img {
    width: 100%;
    object-fit: cover;
}

.legal-page {
    padding: 80px 0;
    background-color: #ffffff;
}

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.last-updated {
    font-size: 16px;
    color: #5a6c7d;
    margin-bottom: 40px;
}

.legal-content {
    max-width: 900px;
}

.legal-content h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #1a73e8;
}

.legal-content h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.legal-content p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #5a6c7d;
    line-height: 1.7;
}

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

.legal-content ul li {
    margin-bottom: 10px;
    font-size: 16px;
    color: #5a6c7d;
    line-height: 1.7;
}

.legal-content a {
    color: #1a73e8;
    text-decoration: underline;
}

.legal-content a:hover {
    color: #1557b0;
}

@media (max-width: 968px) {
    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #ffffff;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    }

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

    .menu-toggle {
        display: flex;
    }

    .hero-text h1 {
        font-size: 36px;
    }

    .hero-text p {
        font-size: 18px;
    }

    .course-card {
        width: calc(50% - 15px);
    }

    .enrollment-wrapper {
        flex-direction: column;
    }

    .testimonials-grid {
        flex-direction: column;
    }

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

    .about-story {
        flex-direction: column;
    }

    .values-content {
        flex-direction: column;
    }

    .service-content,
    .service-content.reverse {
        flex-direction: column;
    }

    .contact-grid {
        flex-direction: column;
    }
}

@media (max-width: 640px) {
    .hero-text h1 {
        font-size: 28px;
    }

    .course-card {
        width: 100%;
    }

    .benefits-grid {
        flex-direction: column;
    }

    .approach-grid {
        flex-direction: column;
    }

    .faq-grid {
        flex-direction: column;
    }

    .thanks-actions {
        flex-direction: column;
    }

    .steps-grid {
        flex-direction: column;
    }
}