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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    line-height: 1.8;
    overflow-x: hidden;
    background: white;
}

/* Căn đều 2 bên cho tất cả đoạn văn mặc định */
p {
    text-align: justify;
}

/* Loại trừ các phần tử không cần căn đều (tiêu đề, nút, v.v.) */
.hero-title,
.section-title,
.content-section h3,
.step-content h4,
.instructor-card h3,
.pricing-header h2,
.registration-form h3,
.footer h2,
.benefit-card h3,
.refund-policy,
.guarantee,
.course-summary,
.testimonial-intro:last-child,
.cta-button,
.submit-btn {
    text-align: inherit;
}

/* Các phần tử cần căn đều đặc biệt */
.footer-motto {
    text-align: center;
}

.promo-note p {
    text-align: center;
}

.pricing-note {
    text-align: center;
}

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

/* Header */
header {
    background: white;
    border-bottom: 1px solid #e0e0e0;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 28px;
    font-weight: bold;
    color: #00786a;
    display: flex;
    align-items: center;
}

.logo-img {
    height: 50px;
    width: auto;
}

.logo-text {
    font-size: 28px;
    font-weight: bold;
    color: #00786a;
}

nav {
    display: flex;
    gap: 25px;
}

nav a {
    text-decoration: none;
    color: #333;
    font-weight: 400;
    padding: 8px 12px;
    transition: all 0.3s;
    font-size: 16px;
}

nav a:hover {
    color: #00786a;
}

/* Hero Section */
.hero {
    background: #1b877b;
    color: #333;
    padding: 80px 0 60px;
    text-align: center;
}

.hero-tagline h2 {
    font-size: 18px;
    margin-bottom: 30px;
    font-weight: 400;
    color: white;
    text-transform: none;
    letter-spacing: 0;
    text-align: justify;
}

.hero-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.4;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    color: white;
}

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 25px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
    color: white;
    text-align: justify;
}

.hero-description {
    font-size: 18px;
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
    color: white;
    text-align: justify;
}

.hero-note {
    font-size: 18px;
    margin-bottom: 30px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
}

.hero-cta-text {
    font-size: 18px;
    margin-bottom: 30px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    background: #00786a;
    color: white;
    padding: 15px 40px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s;
    text-transform: none;
}

.cta-button:hover {
    background: #005a4f;
}

/* Section Styles */
section {
    padding: 60px 0;
}

.section-title {
    font-size: 32px;
    text-align: left;
    margin-bottom: 30px;
    color: #00786a;
    font-weight: 700;
    line-height: 1.3;
}

.section-intro {
    font-size: 18px;
    margin-bottom: 20px;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    color: #555;
}

/* Benefits Section */
.benefits {
    background: rgb(225, 247, 250);
}

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

.benefit-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 120, 106, 0.3);
}

.benefit-icon {
    font-size: 50px;
    margin-bottom: 15px;
}

.benefit-card h3 {
    font-size: 22px;
    color: #00786a;
    margin-bottom: 15px;
}

.benefit-card p {
    color: #666;
    line-height: 1.6;
    text-align: justify;
}

/* Course Content Section */
.course-content {
    background: white;
}

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

.content-item {
    background: rgb(225, 247, 250);
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 10px;
    border-left: 4px solid #00786a;
    font-size: 18px;
    transition: all 0.3s;
    text-align: justify;
}

.content-item:hover {
    background: white;
    transform: translateX(10px);
}

.course-summary {
    margin-top: 30px;
    text-align: center;
    font-size: 20px;
    color: #00786a;
    font-weight: 500;
    padding: 20px;
    background: rgb(225, 247, 250);
    border-radius: 10px;
}

/* Who Is This For Section */
.who-is-this-for {
    background: rgb(225, 247, 250);
}

.target-audience {
    max-width: 900px;
    margin: 0 auto;
}

.audience-item {
    background: white;
    padding: 25px;
    margin-bottom: 15px;
    border-radius: 10px;
    font-size: 18px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    text-align: justify;
}

.audience-item:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 20px rgba(0, 120, 106, 0.3);
}

/* Testimonials Section */
.testimonials {
    background: white;
}

.testimonial-content {
    max-width: 900px;
    margin: 0 auto;
    background: rgb(225, 247, 250);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.testimonial-intro {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #555;
    text-align: justify;
}

.testimonial-intro:last-child {
    margin-bottom: 0;
    font-size: 20px;
    color: #00786a;
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: 10px;
    border-left: 4px solid #00786a;
}

/* Pricing Section */
.pricing {
    background: rgb(225, 247, 250);
    color: #333;
    padding: 20px 0 60px 0;
}

.pricing-card {
    background: white;
    color: #333;
    border-radius: 8px;
    padding: 0;
    max-width: 900px;
    margin: 0 auto;
    border: none;
}

.pricing-header {
    text-align: left;
    margin-bottom: 30px;
}

.pricing-header h2 {
    font-size: 32px;
    color: #00786a;
    margin-bottom: 15px;
    font-weight: 700;
}

.pricing-note {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 30px;
    padding: 20px;
    background: rgb(225, 247, 250);
    border-radius: 10px;
    text-align: justify;
    font-style: italic;
}

.price {
    margin: 30px 0;
}

.pricing-policies {
    margin-top: 20px;
}

.old-price {
    display: block;
    font-size: 32px;
    text-decoration: line-through;
    color: #999;
    margin-bottom: 10px;
}

.new-price {
    display: block;
    font-size: 48px;
    font-weight: bold;
    color: #00786a;
}

.refund-policy {
    background: #00786a;
    color: white;
    padding: 15px;
    border-radius: 10px;
    margin: 15px 0;
    font-weight: bold;
    text-align: center;
}

.guarantee {
    background: #00786a;
    color: white;
    padding: 15px;
    border-radius: 10px;
    margin: 15px 0;
    font-weight: bold;
    text-align: center;
}

.bonuses {
    background: rgb(225, 247, 250);
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 40px;
}

.bonuses h3 {
    color: #00786a;
    font-size: 24px;
    margin-bottom: 20px;
}

.bonus-item {
    padding: 15px;
    margin-bottom: 10px;
    background: white;
    border-radius: 8px;
    font-size: 16px;
    line-height: 1.6;
    text-align: justify;
}

/* Registration Form */
.registration-form {
    background: rgb(225, 247, 250);
    padding: 40px;
    border-radius: 8px;
    margin-top: 20px;
}

.registration-form .pricing-note {
    text-align: center;
    font-size: 16px;
    color: #666;
    margin: 10px 0 25px 0;
    padding: 0;
    background: transparent;
    font-style: italic;
}

.pricing-title-before-form {
    font-size: 32px;
    color: #00786a;
    margin: 0 0 10px 0;
    font-weight: 700;
    text-align: center;
}

.registration-form h3 {
    color: #00786a;
    font-size: 28px;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 700;
}

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

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

.form-group input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 16px;
    transition: border-color 0.3s;
    background: white;
}

.form-group input:focus {
    outline: none;
    border-color: #00786a;
}

.submit-btn {
    width: 100%;
    background: #00786a;
    color: white;
    padding: 15px;
    font-size: 18px;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: none;
    text-align: center;
}

.submit-btn:hover {
    background: #005a4f;
}

/* Instructor Section */
.instructor {
    background: white;
}

.instructor-card {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 0;
}

.instructor-card h3 {
    color: #00786a;
    font-size: 24px;
    margin-bottom: 20px;
}

.instructor-card p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #333;
    text-align: justify;
}

.instructor-role {
    font-size: 20px;
    color: #666;
    margin-bottom: 25px;
    font-style: italic;
    text-align: justify;
}

.instructor-info {
    list-style: none;
    margin-bottom: 25px;
}

.instructor-info li {
    padding: 15px;
    margin-bottom: 10px;
    background: white;
    border-radius: 8px;
    border-left: 4px solid #00786a;
    font-size: 16px;
    line-height: 1.6;
    text-align: justify;
}

.instructor-philosophy {
    background: white;
    padding: 20px;
    border-radius: 10px;
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    border-left: 4px solid #00786a;
    text-align: justify;
}

/* Footer */
.footer {
    background: white;
    color: #333;
    padding: 60px 0 40px;
    text-align: left;
    border-top: 1px solid #e0e0e0;
}

.footer h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #00786a;
    font-weight: 700;
}

.contact-info {
    max-width: 900px;
    margin: 0 auto 30px;
    text-align: left;
    background: white;
    padding: 0;
}

.contact-info p {
    margin-bottom: 12px;
    font-size: 16px;
    color: #333;
    text-align: justify;
}

.footer-motto {
    font-size: 22px;
    font-weight: 500;
    margin: 25px 0;
    color: #00786a;
    font-style: italic;
}

.copyright {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    color: #bbb;
}

/* Social Media Links */
.social-links {
    margin: 40px 0 30px;
    padding: 30px 0;
    border-top: 2px solid #e0e0e0;
    border-bottom: 2px solid #e0e0e0;
}

.social-links h4 {
    font-size: 22px;
    color: #00786a;
    margin-bottom: 25px;
    text-align: center;
    font-weight: 700;
}

.social-icons-row {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 15px;
    max-width: 1200px;
    margin: 0 auto;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 20px;
    background: linear-gradient(135deg, #00786a 0%, #005a4f 100%);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 120, 106, 0.25);
    flex: 1 1 auto;
    min-width: 160px;
    max-width: 280px;
    justify-content: center;
    white-space: nowrap;
    text-align: center;
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 120, 106, 0.4);
    background: linear-gradient(135deg, #005a4f 0%, #00786a 100%);
}

.social-icon {
    font-size: 20px;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

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

.social-text {
    line-height: 1.2;
}

.youtube-link {
    background: linear-gradient(135deg, #FF0000 0%, #CC0000 100%);
    box-shadow: 0 4px 12px rgba(255, 0, 0, 0.25);
}

.youtube-link:hover {
    background: linear-gradient(135deg, #CC0000 0%, #FF0000 100%);
    box-shadow: 0 6px 20px rgba(255, 0, 0, 0.4);
}

.facebook-link {
    background: linear-gradient(135deg, #1877F2 0%, #0d5fcc 100%);
    box-shadow: 0 4px 12px rgba(24, 119, 242, 0.25);
}

.facebook-link:hover {
    background: linear-gradient(135deg, #0d5fcc 0%, #1877F2 100%);
    box-shadow: 0 6px 20px rgba(24, 119, 242, 0.4);
}

/* Course Description Section */
.course-description-section {
    background: rgb(225, 247, 250);
    padding: 60px 0 20px 0;
}

/* Main Content Section */
.main-content {
    background: rgb(225, 247, 250);
    padding: 60px 0;
}

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

.content-block p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: justify;
    color: #333;
}

.example-box {
    background: rgb(225, 247, 250);
    padding: 30px;
    border-radius: 8px;
    margin: 30px 0;
    border-left: 4px solid #00786a;
}

.example-box p {
    margin-bottom: 15px;
    font-size: 18px;
    line-height: 1.8;
    text-align: justify;
    color: #333;
}

.example-note {
    font-style: italic;
    color: #00786a;
    font-weight: 500;
    margin-top: 15px;
    text-align: justify;
}

.warning-box {
    background: rgb(225, 247, 250);
    border: 2px solid #00786a;
    padding: 25px;
    border-radius: 8px;
    margin: 40px auto;
    max-width: 900px;
}

.warning-box h3 {
    color: #00786a;
    font-size: 18px;
    line-height: 1.8;
    font-weight: 500;
    margin: 0;
    text-align: justify;
}

/* Course Content New Styles */
.content-section {
    max-width: 900px;
    margin: 0 auto 40px;
}

.content-section h3 {
    color: #00786a;
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 600;
}

.content-section p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 15px;
    text-align: justify;
    color: #333;
}

.techniques-list {
    list-style: disc;
    padding-left: 30px;
    margin: 25px 0;
}

.techniques-list li {
    background: white;
    padding: 8px 0;
    margin-bottom: 8px;
    border: none;
    border-left: none;
    font-size: 18px;
    line-height: 1.8;
    color: #333;
    list-style-position: outside;
    text-align: justify;
}

.note-text {
    background: rgb(225, 247, 250);
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #00786a;
    margin-top: 25px;
    color: #00786a;
    font-size: 18px;
    line-height: 1.8;
    text-align: justify;
}

.requirement-box {
    background: rgb(225, 247, 250);
    border: 2px solid #00786a;
    padding: 25px;
    border-radius: 8px;
    margin: 40px auto;
    max-width: 900px;
}

.requirement-box p {
    color: #00786a;
    font-size: 18px;
    margin: 0;
    line-height: 1.8;
    text-align: justify;
}

/* Learning Method Section */
.learning-method {
    background: rgb(225, 247, 250);
    padding: 60px 0;
}

.sub-title {
    text-align: left;
    color: #00786a;
    font-size: 24px;
    margin-bottom: 30px;
    font-style: italic;
    font-weight: 500;
}

.method-steps {
    max-width: 900px;
    margin: 0 auto 40px;
}

.step-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    background: white;
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid #00786a;
}

.step-number {
    background: #00786a;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: bold;
    flex-shrink: 0;
}

.step-content h4 {
    color: #00786a;
    font-size: 22px;
    margin-bottom: 12px;
    font-weight: 600;
}

.step-content p {
    font-size: 18px;
    line-height: 1.8;
    color: #333;
    text-align: justify;
}

.warning-note {
    max-width: 900px;
    margin: 40px auto 0;
    background: white;
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid #00786a;
}

.warning-note p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 15px;
    color: #333;
    text-align: justify;
}

.warning-note p:last-child {
    margin-bottom: 0;
}

/* Instructor New Styles */
.instructor-summary {
    background: rgb(225, 247, 250);
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid #00786a;
    margin: 30px 0;
    color: #00786a;
    font-size: 18px;
    line-height: 1.8;
    text-align: justify;
}

.highlight-box {
    background: rgb(225, 247, 250);
    border: 2px solid #00786a;
    padding: 30px;
    border-radius: 8px;
    margin-top: 30px;
}

.highlight-box p {
    color: #00786a;
    font-size: 18px;
    margin: 0;
    text-align: justify;
    line-height: 1.8;
}

/* Video Examples Section */
.video-examples {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

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

.video-examples .section-title {
    margin-bottom: 50px;
    text-align: center;
    font-size: 32px;
    color: #00786a;
    font-weight: 700;
    line-height: 1.4;
}

.video-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
    margin-top: 50px;
}

.video-item {
    background: white;
    border-radius: 16px;
    padding: 35px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.video-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 120, 106, 0.2);
    border-color: #00786a;
}

.video-item h3 {
    color: #00786a;
    font-size: 26px;
    margin-bottom: 25px;
    text-align: center;
    font-weight: 700;
    padding-bottom: 15px;
    border-bottom: 3px solid #00786a;
    letter-spacing: 0.5px;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    background: #000;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 12px;
}

/* Pricing New Styles */
.pricing-description {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 8px;
}

.pricing-description p {
    font-size: 18px;
    line-height: 2.4;
    margin-bottom: 25px;
    text-align: justify;
    color: #333;
    padding-left: 30px;
    padding-right: 20px;
}

.pricing-note {
    font-size: 18px;
    color: #00786a;
    font-weight: bold;
    text-align: center;
    margin-top: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Cải thiện typography tổng thể cho mobile */
    body {
        font-size: 17px;
        line-height: 1.75;
    }

    .container {
        padding: 0 18px;
    }

    header {
        padding: 15px 0;
    }

    header .container {
        flex-direction: column;
        gap: 15px;
    }

    .logo {
        font-size: 24px;
    }

    .logo-img {
        height: 45px;
    }

    nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    nav a {
        font-size: 15px;
        padding: 10px 15px;
    }

    /* Hero Section - Cải thiện typography */
    .hero {
        padding: 50px 0 40px;
    }

    .hero-tagline h2 {
        font-size: 19px;
        line-height: 1.6;
        margin-bottom: 25px;
        text-align: justify;
        font-weight: 500;
    }

    .hero-title {
        font-size: 26px;
        line-height: 1.4;
        margin-bottom: 20px;
        font-weight: 700;
    }

    .hero-subtitle {
        font-size: 17px;
        line-height: 1.7;
        margin-bottom: 20px;
        text-align: justify;
        font-weight: 400;
    }

    .hero-description {
        font-size: 16px;
        line-height: 1.75;
        margin-bottom: 30px;
        text-align: justify;
    }

    .cta-button {
        padding: 16px 35px;
        font-size: 17px;
        font-weight: 600;
    }

    /* Section Titles */
    .section-title {
        font-size: 26px;
        line-height: 1.3;
        margin-bottom: 25px;
    }

    .sub-title {
        font-size: 22px;
        line-height: 1.4;
        margin-bottom: 25px;
    }

    /* Content Sections - Cải thiện readability */
    .content-block p,
    .content-section p {
        font-size: 17px;
        line-height: 1.8;
        margin-bottom: 18px;
        text-align: justify;
        color: #333;
    }

    .content-section h3 {
        font-size: 22px;
        line-height: 1.4;
        margin-bottom: 18px;
    }

    .example-box {
        padding: 25px 20px;
        margin: 25px 0;
    }

    .example-box p {
        font-size: 17px;
        line-height: 1.8;
        margin-bottom: 12px;
    }

    .example-note {
        font-size: 16px;
        line-height: 1.75;
    }

    .warning-box {
        padding: 22px 20px;
        margin: 30px auto;
    }

    .warning-box h3 {
        font-size: 17px;
        line-height: 1.75;
        text-align: justify;
    }

    /* Techniques List */
    .techniques-list {
        padding-left: 25px;
        margin: 20px 0;
    }

    .techniques-list li {
        font-size: 17px;
        line-height: 1.8;
        margin-bottom: 10px;
        padding: 10px 0;
    }

    .note-text {
        font-size: 17px;
        line-height: 1.8;
        padding: 18px;
    }

    .requirement-box {
        padding: 22px 20px;
        margin: 30px auto;
    }

    .requirement-box p {
        font-size: 17px;
        line-height: 1.8;
    }

    /* Learning Method */
    .step-item {
        flex-direction: column;
        text-align: left;
        padding: 25px 20px;
        margin-bottom: 25px;
    }

    .step-number {
        margin: 0 auto 18px;
        width: 45px;
        height: 45px;
        font-size: 22px;
    }

    .step-content {
        text-align: justify;
    }

    .step-content h4 {
        font-size: 20px;
        line-height: 1.4;
        margin-bottom: 12px;
    }

    .step-content p {
        font-size: 17px;
        line-height: 1.8;
        text-align: justify;
    }

    .warning-note {
        padding: 25px 20px;
        margin: 30px auto;
    }

    .warning-note p {
        font-size: 17px;
        line-height: 1.8;
        margin-bottom: 12px;
        text-align: justify;
    }

    .warning-note p:last-child {
        margin-bottom: 0;
    }

    /* Instructor Section */
    .instructor-card {
        padding: 0;
    }

    .instructor-card p {
        font-size: 17px;
        line-height: 1.8;
        margin-bottom: 18px;
        text-align: justify;
    }

    .instructor-summary {
        font-size: 17px;
        line-height: 1.8;
        padding: 22px 20px;
        margin: 25px 0;
    }

    .highlight-box {
        padding: 25px 20px;
        margin-top: 25px;
    }

    .highlight-box p {
        font-size: 17px;
        line-height: 1.8;
    }

    /* Pricing Section */
    .pricing {
        padding: 20px 0 50px 0;
    }

    .pricing-card {
        padding: 0;
    }

    .pricing-title-before-form {
        font-size: 24px;
        line-height: 1.3;
        margin: 25px 0 15px 0;
    }

    .pricing-note {
        font-size: 15px;
        line-height: 1.7;
        margin-bottom: 25px;
        padding: 18px;
    }

    .registration-form {
        padding: 30px 20px;
        margin-top: 20px;
    }

    .registration-form h3 {
        font-size: 24px;
        margin-bottom: 25px;
    }

    .registration-form .pricing-note {
        font-size: 15px;
        margin: 8px 0 20px 0;
        padding: 0;
    }

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

    .form-group label {
        font-size: 16px;
        margin-bottom: 10px;
    }

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

    .submit-btn {
        padding: 16px;
        font-size: 17px;
        font-weight: 600;
    }

    .new-price {
        font-size: 38px;
    }

    .old-price {
        font-size: 26px;
    }

    /* Course Description */
    .pricing-description {
        padding: 30px 20px;
    }

    .pricing-description p {
        font-size: 17px;
        line-height: 2.2;
        margin-bottom: 20px;
        padding-left: 20px;
        padding-right: 15px;
    }

    /* Benefits Grid */
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .benefit-card {
        padding: 25px 20px;
    }

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

    .benefit-card p {
        font-size: 17px;
        line-height: 1.75;
        text-align: justify;
    }

    /* Footer */
    .footer {
        padding: 50px 0 30px;
    }

    .footer h2 {
        font-size: 24px;
        margin-bottom: 18px;
    }

    .footer-motto {
        font-size: 20px;
        margin: 20px 0;
    }

    .contact-info {
        text-align: left;
        margin-bottom: 25px;
    }

    .contact-info p {
        font-size: 16px;
        line-height: 1.75;
        margin-bottom: 10px;
        text-align: justify;
    }

    /* Social Links Responsive */
    .social-links {
        margin: 30px 0 25px;
        padding: 25px 0;
    }

    .social-links h4 {
        font-size: 19px;
        margin-bottom: 18px;
    }

    .social-icons-row {
        flex-direction: column;
        gap: 12px;
        padding: 0 10px;
    }

    .social-link {
        font-size: 15px;
        padding: 14px 20px;
        min-width: 100%;
        max-width: 100%;
        width: 100%;
    }

    .social-icon {
        font-size: 19px;
    }

    .social-text {
        font-size: 15px;
    }

    /* Video Examples Section */
    .video-examples {
        padding: 45px 0;
    }

    .video-container {
        padding: 0 18px;
    }

    .video-examples .section-title {
        font-size: 24px;
        line-height: 1.3;
        margin-bottom: 30px;
    }

    .video-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top: 30px;
    }

    .video-item {
        padding: 25px 20px;
        border-radius: 12px;
    }

    .video-item h3 {
        font-size: 20px;
        line-height: 1.4;
        margin-bottom: 20px;
        padding-bottom: 12px;
    }

    .video-wrapper {
        border-radius: 8px;
    }

    /* Đảm bảo tất cả text đều căn đều trên mobile */
    .content-item,
    .audience-item,
    .bonus-item,
    .instructor-role,
    .instructor-info li,
    .instructor-philosophy,
    .testimonial-intro {
        font-size: 17px;
        line-height: 1.8;
        text-align: justify;
    }

    /* Section spacing */
    section {
        padding: 45px 0;
    }

    .main-content {
        padding: 45px 0;
    }

    .course-content {
        padding: 45px 0;
    }

    .learning-method {
        padding: 45px 0;
    }

    .course-description-section {
        padding: 45px 0 20px 0;
    }
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.benefit-card,
.content-item,
.audience-item {
    animation: fadeInUp 0.6s ease-out;
}
