/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1a4d2e;
    --secondary-color: #0f3823;
    --accent-color: #c9a227;
    --gold-color: #d4af37;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
    --gradient-start: #1a4d2e;
    --gradient-end: #c9a227;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
}

.logo img {
    height: 48px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s;
}

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

.btn-primary {
    background: var(--primary-color);
    color: white !important;
    padding: 10px 24px;
    border-radius: 8px;
    transition: background 0.3s;
}

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

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

.mobile-menu-toggle span {
    width: 24px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    margin-top: 80px;
    overflow: hidden;
}

.hero-banner {
    position: relative;
    min-height: 600px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.hero-overlay-new {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(15, 56, 35, 0.4) 0%, rgba(26, 77, 46, 0.85) 100%);
    z-index: -1;
}

.hero-content-new {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 60px 0;
}

.hero-gold-bar {
    width: 150px;
    height: 8px;
    background: linear-gradient(90deg, #d4af37 0%, #e6c34a 100%);
    margin-bottom: 50px;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.7);
}

.hero-tagline-new {
    text-align: left;
}

.hero-tagline-line {
    font-size: 56px;
    font-weight: 900;
    letter-spacing: 3px;
    margin: 10px 0;
    color: white;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.6);
    line-height: 1.2;
}

.hero-tagline-line:last-child {
    color: #d4af37;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
    z-index: -1;
}

.hero-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 80% 20%, rgba(212, 175, 55, 0.3) 0%, transparent 50%);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
}

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

.hero-content {
    max-width: 600px;
    color: white;
    padding: 60px 0;
}

.hero-image-right {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-right img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.hero-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: 1px;
}

.hero-title-centered {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    margin-top: 40px;
    margin-bottom: 48px;
    letter-spacing: 2px;
    text-align: center;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.hero-logo-centered {
    text-align: center;
    margin-top: 40px;
    margin-bottom: 48px;
}

.hero-logo-centered img {
    max-width: 500px;
    width: 100%;
    height: auto;
}

.hero-title-centered .title-top {
    font-size: 42px;
    font-weight: 600;
    letter-spacing: 3px;
    color: #ffffff;
}

.hero-title-centered .title-bottom {
    font-size: 64px;
    font-weight: 900;
    letter-spacing: 4px;
    color: var(--gold-color);
    text-shadow: 0 2px 8px rgba(212, 175, 55, 0.4);
}

.hero-tagline {
    font-size: 32px;
    font-weight: 800;
    line-height: 1.4;
    margin-bottom: 32px;
    color: var(--gold-color);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.5px;
    text-align: left;
}

.hero-tagline div {
    margin-bottom: 8px;
}

.hero-description {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 20px;
    opacity: 0.95;
}

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 32px;
    opacity: 0.95;
}

.btn-hero {
    display: inline-block;
    background: var(--gold-color);
    color: var(--primary-color);
    padding: 16px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
}

.btn-hero:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.4);
    background: #e6c34a;
}

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

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

.section-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 16px;
}

.title-underline {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--gold-color), var(--accent-color));
    border-radius: 2px;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-light);
    max-width: 700px;
}

/* About Section */
.about-section {
    background: var(--bg-white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
}

.about-text {
    font-size: 16px;
}

.about-text p {
    margin-bottom: 20px;
}

.lead-text {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 24px;
    color: var(--text-dark);
    line-height: 1.5;
}

.emphasis-text {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 28px 0 !important;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.about-image .placeholder-image {
    width: 100%;
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, #e8f5e9 0%, #f1f8e9 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-weight: 500;
    border: 2px solid rgba(201, 162, 39, 0.2);
}

.expertise-section {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px;
    background: var(--bg-light);
    border-radius: 12px;
    border-left: 4px solid var(--gold-color);
}

.expertise-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.expertise-list {
    list-style: none;
    margin-bottom: 32px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px;
}

.expertise-list li {
    padding-left: 32px;
    position: relative;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
}

.expertise-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold-color);
    font-weight: 700;
    font-size: 20px;
}

.expertise-note {
    font-size: 16px;
    font-style: italic;
    color: var(--text-light);
    line-height: 1.7;
    padding-top: 24px;
    border-top: 1px solid var(--border-color);
}

/* Why Choose Us Section */
.why-section {
    background: var(--bg-light);
}

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

.why-lead {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.7;
    color: var(--text-dark);
}

.why-subtitle {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 40px;
    text-align: center;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 32px;
    margin-bottom: 60px;
}

.why-card {
    background: white;
    padding: 40px;
    border-radius: 12px;
    border: 2px solid var(--border-color);
    transition: all 0.3s;
}

.why-card:hover {
    border-color: var(--gold-color);
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(201, 162, 39, 0.15);
}

.why-icon {
    width: 64px;
    height: 64px;
    color: var(--gold-color);
    margin-bottom: 24px;
}

.why-icon svg {
    width: 100%;
    height: 100%;
}

.why-card-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
    line-height: 1.3;
}

.why-card-text {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.why-card-note {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-light);
    font-style: italic;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--border-color);
}

.why-reality {
    background: linear-gradient(135deg, var(--primary-color) 0%, #0f3823 100%);
    padding: 48px;
    border-radius: 12px;
    text-align: center;
}

.reality-content {
    max-width: 800px;
    margin: 0 auto;
}

.reality-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--gold-color);
    margin-bottom: 20px;
}

.reality-text {
    font-size: 20px;
    line-height: 1.6;
    color: white;
    margin-bottom: 16px;
}

.reality-conclusion {
    font-size: 22px;
    font-weight: 700;
    line-height: 1.6;
    color: var(--gold-color);
}

/* Leadership Section */
.leadership-section {
    background: var(--bg-light);
}

.leader-card {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 60px;
    align-items: start;
}

.leader-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border: 3px solid var(--gold-color);
}

.leader-image .placeholder-image {
    width: 100%;
    aspect-ratio: 3/4;
    background: linear-gradient(135deg, #f1f8e9 0%, #e8f5e9 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-weight: 500;
    border: 2px solid rgba(201, 162, 39, 0.2);
}

.leader-name {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.leader-title {
    font-size: 20px;
    color: var(--gold-color);
    font-weight: 600;
    margin-bottom: 32px;
}

.leader-bio {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.leader-bio.emphasis {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 17px;
    padding: 20px;
    background: white;
    border-left: 4px solid var(--gold-color);
    border-radius: 4px;
    margin: 24px 0;
}

.leader-superpower {
    font-size: 20px;
    font-weight: 700;
    color: var(--gold-color);
    margin: 24px 0 16px 0;
    font-style: italic;
}

.leader-highlight {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 24px 0 16px 0;
}

/* Services Section */
.services-section {
    background: var(--bg-white);
}

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

.service-detailed-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 40px;
    text-align: center;
}

.pricing-card {
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 32px;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    border-color: var(--gold-color);
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(201, 162, 39, 0.15);
}

.pricing-card.featured {
    border-color: var(--gold-color);
    background: linear-gradient(135deg, #fffef7 0%, white 100%);
    margin-bottom: 40px;
    padding: 24px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-card.highlighted {
    border-color: var(--gold-color);
    border-width: 3px;
    background: linear-gradient(135deg, #f9fafb 0%, white 100%);
    position: relative;
}

.pricing-badge {
    position: absolute;
    top: -12px;
    right: 24px;
    background: var(--gold-color);
    color: var(--primary-color);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-header {
    margin-bottom: 20px;
    flex-grow: 1;
}

.pricing-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
    min-height: 60px;
    display: flex;
    align-items: center;
}

.pricing-description {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-light);
    min-height: 80px;
}

.pricing-commitment {
    font-size: 15px;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 16px;
    padding: 8px 16px;
    background: rgba(26, 77, 46, 0.05);
    border-radius: 6px;
    display: inline-block;
}

.pricing-rate {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-top: 20px;
}

.price {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary-color);
}

.period {
    font-size: 18px;
    color: var(--text-light);
    font-weight: 500;
}

.retainer-section {
    margin-top: 60px;
}

.retainer-heading {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 32px;
    text-align: center;
}

.retainer-note {
    font-size: 16px;
    font-weight: 400;
    color: var(--text-light);
    font-style: italic;
}

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

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    margin-top: 60px;
}

.service-card {
    padding: 40px;
    background: var(--bg-white);
    border: 2px solid var(--border-color);
    border-radius: 16px;
    transition: all 0.3s;
}

.service-card:hover {
    border-color: var(--gold-color);
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(201, 162, 39, 0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 24px;
    color: var(--gold-color);
}

.service-icon svg {
    width: 100%;
    height: 100%;
}

.service-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
}

.service-description {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
}

/* Training & Education Section */
.training-pricing {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 12px;
    margin-bottom: 60px;
    border-left: 4px solid var(--gold-color);
}

.training-subtitle {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 24px;
}

.training-options {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
}

.training-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    background: white;
    border-radius: 8px;
    flex-wrap: wrap;
    gap: 12px;
}

.training-type {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
}

.training-price {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
}

.training-note {
    font-size: 16px;
    color: var(--text-light);
    font-style: italic;
    padding-top: 16px;
    border-top: 1px solid var(--border-color);
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 32px;
}

.course-card {
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 32px;
    transition: all 0.3s;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.course-card:hover {
    border-color: var(--gold-color);
    box-shadow: 0 8px 20px rgba(201, 162, 39, 0.15);
    transform: translateY(-4px);
}

.course-number {
    position: absolute;
    top: -12px;
    left: 24px;
    background: var(--primary-color);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
}

.course-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
    margin-top: 12px;
    line-height: 1.4;
    min-height: 75px;
    display: flex;
    align-items: center;
}

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

.course-description {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
    min-height: 120px;
}

.course-section-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--gold-color);
    margin-top: 8px;
    margin-bottom: 12px;
}

.course-list {
    list-style: none;
    padding-left: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.course-list li {
    padding-left: 28px;
    position: relative;
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-dark);
}

.course-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold-color);
    font-weight: 700;
    font-size: 18px;
}

/* Contact Section */
.contact-section {
    background: var(--bg-light);
}

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

.contact-lead {
    font-size: 22px;
    font-weight: 600;
    line-height: 1.6;
    color: var(--text-dark);
    margin-bottom: 24px;
}

.contact-cta {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 24px;
}

.proposal-highlight {
    font-size: 20px;
    font-weight: 700;
    color: var(--gold);
    margin-top: 16px;
    margin-bottom: 32px;
}

.contact-tagline {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.7;
    color: var(--primary-color);
    font-style: italic;
}

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

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

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

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

.form-group input,
.form-group textarea {
    padding: 14px 16px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-family: inherit;
    font-size: 16px;
    transition: border-color 0.3s;
}

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

.form-group textarea::placeholder {
    color: var(--text-light);
    opacity: 0.7;
}

.btn-submit {
    padding: 16px 40px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
}

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

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

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

.contact-icon {
    width: 48px;
    height: 48px;
    color: var(--gold-color);
    flex-shrink: 0;
}

.contact-icon svg {
    width: 100%;
    height: 100%;
}

.contact-item h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.contact-item p {
    color: var(--text-dark);
}

.contact-item a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s;
}

.contact-item a:hover {
    color: var(--gold-color);
}

.contact-response {
    padding: 24px;
    background: white;
    border-radius: 8px;
    border-left: 4px solid var(--gold-color);
    margin-top: 16px;
}

.response-time {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--primary-color) 0%, #0f3823 50%, var(--primary-color) 100%);
    color: white;
    padding: 60px 0 24px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold-color) 0%, var(--accent-color) 50%, var(--gold-color) 100%);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-logo img {
    height: 50px;
    margin-bottom: 16px;
}

.footer-logo p {
    color: var(--gold-color);
    font-weight: 500;
}

.footer-links h4,
.footer-social h4 {
    margin-bottom: 16px;
    font-size: 18px;
    color: var(--gold-color);
    font-weight: 700;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    line-height: 2;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: white;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: background 0.3s;
}

.social-links a:hover {
    background: var(--gold-color);
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: white;
        flex-direction: column;
        padding: 40px;
        transition: left 0.3s;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        left: 0;
    }

    .mobile-menu-toggle {
        display: flex;
    }

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

    .hero-image-right {
        order: -1;
    }

    .hero-image-right img {
        max-width: 100%;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-title-centered {
        font-size: 36px;
        margin-bottom: 32px;
        letter-spacing: 1px;
    }

    .hero-logo-centered {
        margin-top: 30px;
        margin-bottom: 36px;
    }

    .hero-logo-centered img {
        max-width: 350px;
    }

    .hero-tagline-line {
        font-size: 36px;
        letter-spacing: 2px;
        margin: 8px 0;
    }

    .hero-gold-bar {
        width: 120px;
        height: 6px;
        margin-bottom: 40px;
    }

    .hero-title-centered .title-top {
        font-size: 28px;
        letter-spacing: 2px;
    }

    .hero-title-centered .title-bottom {
        font-size: 44px;
        letter-spacing: 2px;
    }

    .hero-tagline {
        font-size: 22px;
    }

    .hero-description {
        font-size: 16px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .section-title {
        font-size: 32px;
    }

    .about-content,
    .leader-card,
    .contact-content,
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .why-card {
        padding: 32px 24px;
    }

    .why-reality {
        padding: 32px 24px;
    }

    .expertise-list {
        grid-template-columns: 1fr;
    }

    .expertise-section {
        padding: 32px 24px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

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

    .pricing-card {
        padding: 24px;
    }

    .course-card {
        padding: 24px;
    }

    .training-pricing {
        padding: 24px;
    }

    .training-option {
        flex-direction: column;
        align-items: flex-start;
    }

    .service-detailed-title {
        font-size: 28px;
    }

    .retainer-heading {
        font-size: 24px;
    }

    .container {
        padding: 0 20px;
    }

    .section {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 24px;
    }

    .hero-title-centered {
        font-size: 26px;
        margin-bottom: 24px;
        letter-spacing: 0.5px;
    }

    .hero-logo-centered {
        margin-top: 20px;
        margin-bottom: 28px;
    }

    .hero-logo-centered img {
        max-width: 280px;
    }

    .hero-tagline-line {
        font-size: 28px;
        letter-spacing: 1px;
        margin: 6px 0;
    }

    .hero-gold-bar {
        width: 100px;
        height: 5px;
        margin-bottom: 30px;
    }

    .hero-banner {
        min-height: 500px;
    }

    .hero-title-centered .title-top {
        font-size: 20px;
        letter-spacing: 1px;
    }

    .hero-title-centered .title-bottom {
        font-size: 32px;
        letter-spacing: 1px;
    }

    .hero-tagline {
        font-size: 19px;
    }

    .hero-description {
        font-size: 15px;
    }

    .section-title {
        font-size: 28px;
    }

    .service-card {
        padding: 32px 24px;
    }

    .pricing-rate {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }

    .price {
        font-size: 28px;
    }

    .period {
        font-size: 16px;
    }
}
