* {
    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;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo {
    font-size: 28px;
    font-weight: bold;
    color: #00786a;
    display: flex;
    align-items: center;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.logo-img {
    height: 50px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo-text {
    font-size: 28px;
    font-weight: bold;
    color: #00786a;
}

/* Menu Toggle Button (Hamburger) */
.menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    gap: 5px;
    z-index: 1001;
}

.menu-toggle span {
    width: 28px;
    height: 3px;
    background: #00786a;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

nav.nav-menu {
    display: flex;
    gap: 25px;
    transition: all 0.3s ease;
}

nav.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    padding: 10px 18px;
    transition: all 0.3s ease;
    font-size: 16px;
    border-radius: 6px;
    position: relative;
}

nav.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: #00786a;
    transition: width 0.3s ease;
}

nav.nav-menu a:hover::after {
    width: calc(100% - 36px);
}

nav.nav-menu a:hover {
    color: #00786a;
    background: rgba(0, 120, 106, 0.05);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1b877b 0%, #00786a 100%);
    color: #333;
    padding: 100px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
    pointer-events: none;
}

.hero .container {
    position: relative;
    z-index: 1;
}

.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: linear-gradient(135deg, #00786a 0%, #005a4f 100%);
    color: white;
    padding: 18px 45px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: none;
    box-shadow: 0 4px 15px rgba(0, 120, 106, 0.3);
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.cta-button:hover::before {
    width: 300px;
    height: 300px;
}

.cta-button:hover {
    background: linear-gradient(135deg, #005a4f 0%, #00786a 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 120, 106, 0.4);
}

.cta-button:active {
    transform: translateY(0);
}

/* Section Styles */
section {
    padding: 80px 0;
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    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: 35px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-align: center;
    border: 1px solid rgba(0, 120, 106, 0.1);
}

.benefit-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 120, 106, 0.25);
    border-color: 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: linear-gradient(to bottom, white 0%, rgb(225, 247, 250) 100%);
}

.content-list {
    max-width: 900px;
    margin: 0 auto;
}

.content-item {
    background: rgb(225, 247, 250);
    padding: 25px;
    margin-bottom: 18px;
    border-radius: 12px;
    border-left: 5px solid #00786a;
    font-size: 18px;
    transition: all 0.3s ease;
    text-align: justify;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.content-item:hover {
    background: white;
    transform: translateX(12px);
    box-shadow: 0 6px 20px rgba(0, 120, 106, 0.15);
}

.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-title-before-form {
    font-size: 32px;
    color: #00786a;
    margin: 30px 0 20px 0;
    font-weight: 700;
    text-align: center;
}

.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: linear-gradient(135deg, rgb(225, 247, 250) 0%, white 100%);
    padding: 50px;
    border-radius: 20px;
    margin-top: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 120, 106, 0.1);
}

.registration-form .pricing-note {
    text-align: center;
    font-size: 16px;
    color: #666;
    margin: 10px 0 25px 0;
    padding: 0;
    background: transparent;
    font-style: italic;
}

.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: 14px 18px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: white;
    font-family: inherit;
}

.form-group input:focus {
    outline: none;
    border-color: #00786a;
    box-shadow: 0 0 0 3px rgba(0, 120, 106, 0.1);
    transform: translateY(-1px);
}

.form-group input:hover {
    border-color: #00786a;
}

.submit-btn {
    width: 100%;
    background: linear-gradient(135deg, #00786a 0%, #005a4f 100%);
    color: white;
    padding: 16px;
    font-size: 18px;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: none;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 120, 106, 0.3);
    position: relative;
    overflow: hidden;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.submit-btn:hover::before {
    width: 400px;
    height: 400px;
}

.submit-btn:hover {
    background: linear-gradient(135deg, #005a4f 0%, #00786a 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 120, 106, 0.4);
}

.submit-btn:active {
    transform: translateY(0);
}

.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* 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: linear-gradient(to bottom, rgb(225, 247, 250) 0%, white 100%);
    padding: 80px 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: linear-gradient(135deg, rgb(225, 247, 250) 0%, white 100%);
    padding: 30px;
    border-radius: 12px;
    margin: 30px 0;
    border-left: 5px solid #00786a;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.example-box:hover {
    box-shadow: 0 8px 25px rgba(0, 120, 106, 0.15);
}

.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: linear-gradient(135deg, rgb(225, 247, 250) 0%, white 100%);
    border: 3px solid #00786a;
    padding: 30px;
    border-radius: 15px;
    margin: 40px auto;
    max-width: 900px;
    box-shadow: 0 5px 20px rgba(0, 120, 106, 0.15);
    transition: all 0.3s ease;
}

.warning-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 120, 106, 0.2);
}

.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;
}

/* Platform Security Section */
.platform-security {
    background: white;
    padding: 80px 0;
}

/* 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: 25px;
    margin-bottom: 30px;
    background: white;
    padding: 35px;
    border-radius: 15px;
    border-left: 5px solid #00786a;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.step-item:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 30px rgba(0, 120, 106, 0.2);
}

.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;
}

/* 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;
}

/* Force Mobile View - Áp dụng khi có class force-mobile-view */
body.force-mobile-view,
html.force-mobile-view {
    max-width: 100vw;
    overflow-x: hidden;
}

body.force-mobile-view .container {
    max-width: 100%;
    padding: 0 18px;
}

body.force-mobile-view {
    font-size: 17px;
    line-height: 1.75;
}

body.force-mobile-view header {
    padding: 15px 0;
}

body.force-mobile-view header .container {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

body.force-mobile-view .logo {
    font-size: 24px;
}

body.force-mobile-view .logo-img {
    height: 45px;
}

body.force-mobile-view .menu-toggle {
    display: flex;
}

body.force-mobile-view nav.nav-menu {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background: white;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 40px 20px;
    gap: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: left 0.3s ease;
    z-index: 999;
    overflow-y: auto;
}

body.force-mobile-view nav.nav-menu.active {
    left: 0;
}

body.force-mobile-view nav.nav-menu a {
    width: 100%;
    text-align: center;
    padding: 15px 20px;
    font-size: 17px;
    border-radius: 8px;
    background: rgb(225, 247, 250);
    transition: all 0.3s ease;
}

body.force-mobile-view nav.nav-menu a::after {
    display: none;
}

body.force-mobile-view nav.nav-menu a:hover {
    background: #00786a;
    color: white;
    transform: translateX(5px);
}

body.force-mobile-view .hero {
    padding: 60px 0 50px;
}

body.force-mobile-view .hero-tagline h2 {
    font-size: 19px;
    line-height: 1.6;
    margin-bottom: 25px;
    text-align: justify;
    font-weight: 500;
}

body.force-mobile-view .hero-title {
    font-size: 26px;
    line-height: 1.4;
    margin-bottom: 20px;
    font-weight: 700;
}

body.force-mobile-view .hero-subtitle {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 20px;
    text-align: justify;
    font-weight: 400;
}

body.force-mobile-view .hero-description {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 30px;
    text-align: justify;
}

body.force-mobile-view .cta-button {
    font-size: 18px;
    padding: 15px 35px;
}

body.force-mobile-view .section-title {
    font-size: 24px;
    line-height: 1.4;
    margin-bottom: 25px;
}

body.force-mobile-view .content-section h3 {
    font-size: 20px;
    line-height: 1.5;
    margin-bottom: 20px;
}

body.force-mobile-view .content-section h4 {
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 15px;
}

body.force-mobile-view .content-block p,
body.force-mobile-view .content-section p {
    font-size: 16px;
    line-height: 1.75;
    margin-bottom: 18px;
    text-align: justify;
}

body.force-mobile-view .floating-cta {
    bottom: 20px;
    right: 20px;
    padding: 12px 25px;
    font-size: 14px;
}

/* 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: row;
        justify-content: space-between;
        align-items: center;
        gap: 15px;
    }

    .logo {
        font-size: 24px;
    }

    .logo-img {
        height: 45px;
    }

    /* Menu Toggle Button - Hiển thị trên mobile */
    .menu-toggle {
        display: flex;
    }

    nav.nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: white;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding: 40px 20px;
        gap: 20px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        transition: left 0.3s ease;
        z-index: 999;
        overflow-y: auto;
    }

    nav.nav-menu.active {
        left: 0;
    }

    nav.nav-menu a {
        width: 100%;
        text-align: center;
        padding: 15px 20px;
        font-size: 17px;
        border-radius: 8px;
        background: rgb(225, 247, 250);
        transition: all 0.3s ease;
    }

    nav.nav-menu a::after {
        display: none;
    }

    nav.nav-menu a:hover {
        background: #00786a;
        color: white;
        transform: translateX(5px);
    }

    /* Hero Section - Cải thiện typography */
    .hero {
        padding: 60px 0 50px;
    }

    .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;
    }

    /* 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;
    }

    /* Đả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: 50px 0;
    }

    .main-content {
        padding: 50px 0;
    }

    .course-content {
        padding: 50px 0;
    }

    .learning-method {
        padding: 50px 0;
    }

    .course-description-section {
        padding: 50px 0 20px 0;
    }

    /* Floating CTA Button - Mobile */
    .floating-cta {
        bottom: 20px !important;
        right: 20px !important;
        padding: 14px 24px !important;
        font-size: 15px !important;
    }
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.benefit-card,
.content-item,
.audience-item {
    animation: fadeInUp 0.8s ease-out;
}

/* Smooth fade in for sections */
section {
    animation: fadeIn 0.6s ease-out;
}

/* Improved loading state for images */
img {
    transition: opacity 0.3s ease;
}

img[src=""], img:not([src]) {
    opacity: 0;
}

/* Testimonials Grid - Học Viên Nói Gì - Layout 2 cột 3 dòng */
.testimonials-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 25px;
    margin-top: 30px;
    width: 100%;
    grid-auto-rows: minmax(400px, auto);
}

/* Đảm bảo tất cả video đều hiển thị */
.testimonials-grid .testimonial-item {
    width: 100% !important;
    min-height: 400px;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative !important;
    overflow: visible !important;
}

/* Video thứ 5 (Duy Tân) sẽ căn giữa ở hàng 3 */
.testimonials-grid .testimonial-item:nth-child(5) {
    grid-column: 1 / 3 !important;
    max-width: 50% !important;
    margin: 0 auto !important;
    justify-self: center !important;
}

.testimonial-item {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: block;
    visibility: visible;
    opacity: 1;
}

.testimonial-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 12px rgba(0,0,0,0.15);
}

.testimonial-item h3 {
    color: #00786a;
    margin-bottom: 15px;
    font-size: 20px;
    text-align: center;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 15px;
    background: #000;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Responsive cho Testimonials */
@media (max-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px;
    }
    
    .testimonials-grid .testimonial-item {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .testimonials-grid .testimonial-item:nth-child(5) {
        grid-column: 1 / 3 !important;
        max-width: 50% !important;
        margin: 0 auto !important;
    }
}

@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr !important;
        gap: 20px;
    }
    
    .testimonials-grid .testimonial-item {
        padding: 15px;
        min-height: auto;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .testimonials-grid .testimonial-item:nth-child(5) {
        grid-column: 1 !important;
        max-width: 100% !important;
        margin: 0 !important;
    }
    
    .testimonial-item h3 {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .testimonials-grid {
        gap: 15px;
    }
    
    .testimonial-item {
        padding: 12px;
    }
    
    .testimonial-item h3 {
        font-size: 16px;
    }
}

