/* MoneyWise Financial Productivity Course Styles */
/* Version 2025 - Unique Implementation */

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

body {
    font-family: 'Inter', Arial, sans-serif;
    background: #f8fafc;
    font-size: 16px;
    line-height: 1.7;
    font-weight: 400;
    color: #4a5568;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
    font-family: 'Playfair Display', Georgia, serif;
    color: #2d3748;
    font-weight: 600;
}

.z7m1-section-part-cookie-notification {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%);
    color: #e2e8f0;
    padding: 18px 25px;
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: space-between;
    border-top: 3px solid #38a169;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
}

.cookie-banner-content-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.cookie-banner-message-text {
    margin: 0;
    font-size: 15px;
    font-weight: 400;
}

.cookie-banner-action-buttons {
    display: flex;
    gap: 12px;
}

.cookie-accept-button, .cookie-manage-button {
    padding: 10px 20px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.cookie-accept-button {
    background: #38a169;
    color: white;
}

.cookie-accept-button:hover {
    background: #2f855a;
    transform: translateY(-2px);
}

.cookie-manage-button {
    background: transparent;
    color: #cbd5e0;
    border: 1px solid #4a5568;
}

.cookie-manage-button:hover {
    background: #4a5568;
    color: white;
}

.z7m1-section-part-navigation-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    z-index: 999;
    padding: 15px 0;
    border-bottom: 1px solid #e2e8f0;
}

.main-navigation-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 25px;
}

.company-brand-name {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 700;
    color: #2d3748;
    letter-spacing: -1px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.company-brand-name:hover {
    color: #38a169;
}

.navigation-links-wrapper {
    display: flex;
    align-items: center;
    gap: 35px;
}

.nav-link-item {
    text-decoration: none;
    color: #4a5568;
    font-weight: 500;
    font-size: 15px;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link-item:hover {
    color: #38a169;
}

.nav-link-item::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #38a169;
    transition: width 0.3s ease;
}

.nav-link-item.active {
    color: #38a169;
    font-weight: 600;
}

.nav-link-item.active::after {
    width: 100%;
}

.consultation-booking-link {
    background: linear-gradient(135deg, #38a169 0%, #2f855a 100%);
    color: white !important;
    padding: 12px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(49,130,206,0.3);
}

.consultation-booking-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(49,130,206,0.4);
}

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

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #1a2332;
    transition: 0.3s;
}

.z7m1-section-part-hero-introduction {
    padding: 140px 0 100px;
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
    position: relative;
    overflow: hidden;
}

.z7m1-section-part-hero-introduction::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 60%;
    height: 200%;
    background: radial-gradient(ellipse at center, rgba(49,130,206,0.08) 0%, transparent 70%);
    transform: rotate(15deg);
}

.hero-content-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 0 25px;
    position: relative;
    z-index: 2;
}

.primary-hero-headline {
    font-size: 58px;
    line-height: 1.2;
    margin-bottom: 25px;
    background: linear-gradient(135deg, #1a2332 0%, #2d3748 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description-text {
    font-size: 19px;
    line-height: 1.6;
    margin-bottom: 35px;
    color: #4a5568;
    font-weight: 400;
}

.hero-action-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 45px;
}

.primary-action-button {
    background: linear-gradient(135deg, #38a169 0%, #2f855a 100%);
    color: white;
    padding: 18px 35px;
    border-radius: 35px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.4s ease;
    box-shadow: 0 8px 30px rgba(49,130,206,0.3);
}

.primary-action-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(49,130,206,0.4);
}

.secondary-action-button {
    color: #38a169;
    padding: 18px 35px;
    border: 2px solid #3182ce;
    border-radius: 35px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    background: transparent;
}

.secondary-action-button:hover {
    background: #38a169;
    color: white;
}

.trust-indicators-row {
    display: flex;
    gap: 30px;
}

.trust-metric {
    font-size: 14px;
    color: #718096;
    font-weight: 500;
    position: relative;
}

.trust-metric:not(:last-child)::after {
    content: '•';
    position: absolute;
    right: -18px;
    color: #cbd5e0;
}

.hero-main-image {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

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

.z7m1-section-part-problem-identification {
    padding: 120px 0;
    background: #1a2332;
    color: white;
    position: relative;
}

.problem-content-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 25px;
}

.problem-section-title {
    font-size: 44px;
    text-align: center;
    margin-bottom: 70px;
    color: white;
}

.problem-points-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.problem-point-item {
    padding: 35px;
    background: rgba(255,255,255,0.05);
    border-radius: 12px;
    border-left: 4px solid #3182ce;
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
}

.problem-point-item:hover {
    transform: translateY(-8px);
    background: rgba(255,255,255,0.08);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.problem-point-item h3 {
    color: #38a169;
    font-size: 20px;
    margin-bottom: 15px;
}

.problem-point-item p {
    color: #cbd5e0;
    line-height: 1.6;
}

.z7m1-section-part-solution-methodology {
    position: relative;
    min-height: 700px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

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

.solution-content-overlay {
    position: relative;
    z-index: 3;
    background: linear-gradient(135deg, rgba(26,35,50,0.9) 0%, rgba(45,55,72,0.85) 100%);
    width: 100%;
    min-height: 700px;
    display: flex;
    align-items: center;
}

.solution-text-wrapper {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 25px;
    color: white;
}

.solution-headline {
    font-size: 42px;
    margin-bottom: 25px;
    color: white;
}

.solution-description {
    font-size: 18px;
    margin-bottom: 50px;
    color: #e2e8f0;
    line-height: 1.7;
}

.methodology-steps-container {
    display: flex;
    gap: 40px;
}

.method-step-item {
    flex: 1;
    text-align: center;
}

.step-number {
    display: block;
    width: 60px;
    height: 60px;
    background: #38a169;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.method-step-item h4 {
    color: #38a169;
    font-size: 18px;
    margin-bottom: 12px;
}

.method-step-item p {
    color: #cbd5e0;
    font-size: 15px;
}

.z7m1-section-part-course-curriculum-breakdown {
    padding: 100px 0;
    background: #f8fafc;
}

.curriculum-layout-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 25px;
}

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

.curriculum-main-title {
    font-size: 46px;
    margin-bottom: 20px;
}

.curriculum-subtitle {
    font-size: 20px;
    color: #718096;
    font-weight: 400;
}

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

.module-card-item {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid #e2e8f0;
}

.module-card-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3182ce 0%, #2c5aa0 100%);
    border-radius: 15px 15px 0 0;
}

.module-card-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 60px rgba(49,130,206,0.15);
}

.module-card-item h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #2d3748;
}

.module-card-item p {
    line-height: 1.6;
    margin-bottom: 20px;
}

.module-duration {
    display: inline-block;
    background: #38a169;
    color: white;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.z7m1-section-part-expert-team-profiles {
    padding: 120px 0;
    background: white;
}

.team-presentation-wrapper {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 25px;
    text-align: center;
}

.team-section-heading {
    font-size: 44px;
    margin-bottom: 80px;
    text-align: center;
}

.expert-profiles-layout {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
}

.expert-profile-card {
    text-align: center;
    position: relative;
}

.expert-profile-photo {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 25px;
    border: 5px solid #e2e8f0;
    transition: all 0.4s ease;
}

.expert-profile-card:hover .expert-profile-photo {
    border-color: #3182ce;
    transform: scale(1.05);
}

.expert-name {
    font-size: 24px;
    margin-bottom: 8px;
    color: #2d3748;
}

.expert-title {
    font-size: 16px;
    color: #38a169;
    font-weight: 600;
    margin-bottom: 15px;
}

.expert-bio {
    line-height: 1.6;
    color: #718096;
}

.z7m1-section-part-testimonial-social-proof {
    padding: 100px 0;
    background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%);
    color: white;
}

.testimonials-asymmetric-layout {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 25px;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    align-items: center;
}

.testimonial-card-large {
    padding: 45px;
    background: rgba(255,255,255,0.08);
    border-radius: 20px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255,255,255,0.1);
}

.testimonial-quote-text {
    font-size: 24px;
    line-height: 1.5;
    margin-bottom: 30px;
    font-style: italic;
    color: #e2e8f0;
    quotes: '"' '"';
}

.testimonial-quote-text::before {
    content: open-quote;
    font-size: 60px;
    color: #38a169;
    vertical-align: top;
    line-height: 1;
}

.testimonial-author-info {
    display: block;
    font-style: normal;
}

.author-name {
    display: block;
    font-weight: 600;
    font-size: 18px;
    color: white;
    margin-bottom: 5px;
}

.author-location {
    color: #a0aec0;
    font-size: 14px;
}

.testimonial-cards-small {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.mini-testimonial-item {
    padding: 25px;
    background: rgba(255,255,255,0.05);
    border-radius: 12px;
    border-left: 3px solid #3182ce;
}

.mini-testimonial-item p {
    margin-bottom: 15px;
    font-style: italic;
    color: #cbd5e0;
}

.mini-author {
    font-size: 13px;
    color: #a0aec0;
    font-weight: 500;
}

.z7m1-section-part-pricing-investment-options {
    padding: 120px 0;
    background: white;
}

.pricing-expanded-layout {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding: 0 25px;
}

.pricing-section-headline {
    font-size: 44px;
    margin-bottom: 60px;
}

.pricing-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.pricing-plan-card {
    background: linear-gradient(135deg, #f7fafc 0%, white 100%);
    border: 2px solid #e2e8f0;
    border-radius: 25px;
    padding: 40px 30px;
    position: relative;
    transition: all 0.4s ease;
    overflow: hidden;
}

.pricing-plan-card.featured-plan {
    border-color: #3182ce;
    transform: scale(1.05);
    box-shadow: 0 15px 50px rgba(49,130,206,0.2);
}

.plan-popular-badge {
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #38a169 0%, #2f855a 100%);
    color: white;
    padding: 8px 25px;
    border-radius: 0 0 15px 15px;
    font-size: 13px;
    font-weight: 600;
}

.pricing-plan-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(49,130,206,0.05), transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
    opacity: 0;
}

.pricing-plan-card:hover::before {
    opacity: 1;
    animation: shimmer 1.5s ease-in-out;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.plan-header-section {
    margin-bottom: 35px;
}

.plan-name-title {
    font-size: 24px;
    margin-bottom: 20px;
    color: #2d3748;
}

.plan-price-display {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
}

.currency-symbol {
    font-size: 24px;
    color: #38a169;
    font-weight: 600;
}

.price-amount {
    font-size: 48px;
    font-weight: 700;
    color: #2d3748;
    line-height: 1;
}

.plan-features-list {
    text-align: left;
    margin-bottom: 35px;
}

.feature-item {
    margin-bottom: 12px;
    position: relative;
    padding-left: 25px;
    line-height: 1.6;
    font-size: 15px;
}

.feature-item::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #38a169;
    font-weight: 700;
    font-size: 16px;
}

.pricing-cta-button {
    background: linear-gradient(135deg, #38a169 0%, #2f855a 100%);
    color: white;
    padding: 16px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    display: inline-block;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(49,130,206,0.3);
    width: 100%;
}

.pricing-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(49,130,206,0.4);
}

.pricing-guarantee-text {
    margin-top: 30px;
    font-size: 15px;
    color: #718096;
    font-style: italic;
}



.z7m1-section-part-financial-expertise-overview {
    padding: 120px 0;
    background: white;
}

.expertise-showcase-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 80px;
    align-items: center;
    padding: 0 25px;
}

.expertise-statistics-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 25px 70px rgba(0,0,0,0.12);
}

.expertise-section-title {
    font-size: 42px;
    margin-bottom: 50px;
}

.expertise-benefits-list {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.benefit-point-item {
    padding: 30px;
    background: linear-gradient(135deg, #f8fafc 0%, white 100%);
    border-radius: 15px;
    border-left: 5px solid #3182ce;
    transition: all 0.3s ease;
}

.benefit-point-item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(49,130,206,0.1);
}

.benefit-point-item h4 {
    font-size: 20px;
    color: #2d3748;
    margin-bottom: 12px;
}

.benefit-point-item p {
    line-height: 1.6;
    color: #4a5568;
}

.z7m1-section-part-contact-information-footer {
    background: #1a2332;
    color: white;
    padding: 80px 0 0;
}

.footer-contact-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 50px;
    padding: 0 25px 60px;
}

.company-footer-title {
    font-size: 32px;
    color: #38a169;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
}

.company-mission-statement {
    font-size: 17px;
    line-height: 1.6;
    margin-bottom: 35px;
    color: #cbd5e0;
}

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

.contact-item {
    font-size: 15px;
    color: #e2e8f0;
    margin: 0;
}

.contact-item strong {
    color: #38a169;
    font-weight: 600;
}

.footer-navigation-section h4, .blog-preview-section h4 {
    font-size: 18px;
    color: #38a169;
    margin-bottom: 25px;
    font-weight: 600;
}

.footer-links-columns {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-column-one, .footer-column-two {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links-columns a, .blog-preview-section a {
    color: #cbd5e0;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

.footer-links-columns a:hover, .blog-preview-section a:hover {
    color: #38a169;
}

.blog-preview-section {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.blog-link-item, .blog-view-all {
    color: #cbd5e0;
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.blog-view-all {
    border-bottom: none;
    color: #38a169;
    font-weight: 600;
}

.blog-link-item:hover, .blog-view-all:hover {
    color: #38a169;
    transform: translateX(5px);
}

.footer-bottom-bar {
    border-top: 1px solid #2d3748;
    padding: 25px 0;
    text-align: center;
}

.copyright-notice {
    color: #a0aec0;
    font-size: 14px;
    margin: 0;
}

.z7m1-section-part-about-hero-introduction {
    padding: 140px 0 100px;
    background: linear-gradient(145deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
}

.about-hero-asymmetric-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 80px;
    align-items: center;
    padding: 0 25px;
}

.hero-breadcrumb-navigation {
    font-size: 14px;
    color: #718096;
    margin-bottom: 25px;
}

.hero-breadcrumb-navigation a {
    color: #38a169;
    text-decoration: none;
    transition: color 0.3s ease;
}

.hero-breadcrumb-navigation a:hover {
    color: #2c5aa0;
}

.about-page-main-headline {
    font-size: 52px;
    line-height: 1.1;
    margin-bottom: 30px;
    color: #2d3748;
}

.about-hero-description-text {
    font-size: 20px;
    line-height: 1.6;
    color: #4a5568;
    margin-bottom: 45px;
}

.about-hero-statistics-row {
    display: flex;
    gap: 40px;
}

.stat-item-box {
    display: flex;
    flex-direction: column;
    text-align: center;
}

.stat-number-display {
    font-size: 36px;
    font-weight: 700;
    color: #38a169;
    font-family: 'Playfair Display', serif;
}

.stat-label-text {
    font-size: 14px;
    color: #718096;
    margin-top: 8px;
}

.hero-visual-column-about {
    position: relative;
    height: 400px;
}

.hero-visual-geometric-shape {
    width: 100%;
    height: 100%;
    background: 
        url("../design/m0wl9.webp") center/cover no-repeat,
        linear-gradient(135deg, #3182ce62 0%, #2c5aa08a 100%);
    border-radius: 25px;
    position: relative;
    overflow: hidden;
}

.hero-visual-geometric-shape::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
    transform: rotate(45deg);
    animation: shimmer 3s ease-in-out infinite;
}

.z7m1-section-part-company-origin-story {
    padding: 120px 0;
    background: white;
}

.origin-story-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 25px;
}

.story-content-wrapper {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 60px;
    align-items: start;
}

.story-timeline-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: sticky;
    top: 150px;
}

.timeline-marker {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #718096;
    transition: all 0.4s ease;
    position: relative;
}

.timeline-marker.active {
    background: #38a169;
    color: white;
    transform: scale(1.2);
}

.timeline-connector {
    width: 3px;
    height: 60px;
    background: #e2e8f0;
    margin: 10px 0;
}

.story-section-headline {
    font-size: 44px;
    margin-bottom: 40px;
    color: #2d3748;
}

.story-paragraph-text {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 25px;
    color: #4a5568;
}

.story-quote-highlight {
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
    padding: 35px;
    border-radius: 15px;
    margin-top: 40px;
    border-left: 5px solid #3182ce;
}

.story-quote-highlight blockquote {
    font-size: 20px;
    font-style: italic;
    color: #2d3748;
    margin-bottom: 15px;
    line-height: 1.6;
}

.story-quote-highlight cite {
    color: #38a169;
    font-weight: 600;
    font-size: 16px;
}

.z7m1-section-part-methodology-approach-details {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a2332 0%, #2d3748 100%);
    color: white;
}

.methodology-presentation-layout {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 25px;
}

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

.methodology-main-title {
    font-size: 46px;
    color: white;
    margin-bottom: 20px;
}

.methodology-subtitle-description {
    font-size: 20px;
    color: #cbd5e0;
    line-height: 1.6;
}

.methodology-principles-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.principle-card-item {
    background: rgba(255,255,255,0.05);
    padding: 40px 30px;
    border-radius: 15px;
    border: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    position: relative;
}

.principle-card-item:hover {
    transform: translateY(-8px);
    background: rgba(255,255,255,0.08);
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}

.principle-number-badge {
    position: absolute;
    top: -15px;
    left: 30px;
    width: 40px;
    height: 40px;
    background: #38a169;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 18px;
}

.principle-card-title {
    color: #38a169;
    font-size: 22px;
    margin-bottom: 15px;
    margin-top: 10px;
}

.principle-description-text {
    color: #cbd5e0;
    line-height: 1.6;
    font-size: 16px;
}

.z7m1-section-part-team-expertise-showcase {
    padding: 120px 0;
    background: white;
}

.team-showcase-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 25px;
}

.team-content-columns {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: start;
}

.team-section-title {
    font-size: 42px;
    margin-bottom: 30px;
    color: #2d3748;
}

.team-description-paragraph {
    font-size: 18px;
    line-height: 1.6;
    color: #4a5568;
    margin-bottom: 50px;
}

.team-member-info-cards {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.member-info-card {
    padding: 30px;
    background: linear-gradient(135deg, #f8fafc 0%, white 100%);
    border-radius: 15px;
    border-left: 4px solid #3182ce;
    transition: all 0.3s ease;
}

.member-info-card:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(49,130,206,0.1);
}

.member-name-title {
    color: #2d3748;
    font-size: 20px;
    margin-bottom: 8px;
}

.member-role-label {
    color: #38a169;
    font-weight: 600;
    font-size: 14px;
    display: block;
    margin-bottom: 15px;
}

.member-bio-text {
    color: #4a5568;
    line-height: 1.6;
    font-size: 15px;
}

.team-collaboration-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.z7m1-section-part-success-impact-metrics {
    padding: 100px 0;
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
}

.impact-metrics-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 25px;
}

.impact-section-headline {
    font-size: 44px;
    text-align: center;
    margin-bottom: 70px;
    color: #2d3748;
}

.metrics-dashboard-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 80px;
}

.metric-display-card {
    background: white;
    padding: 40px 25px;
    text-align: center;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    position: relative;
    transition: all 0.4s ease;
}

.metric-display-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(49,130,206,0.15);
}

.metric-visual-indicator {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #38a169 0%, #2f855a 100%);
    border-radius: 50%;
    margin: 0 auto 20px;
    position: relative;
}

.metric-visual-indicator::before {
    content: '';
    position: absolute;
    inset: 10px;
    background: white;
    border-radius: 50%;
}

.metric-title {
    font-size: 16px;
    color: #2d3748;
    margin-bottom: 15px;
    font-weight: 600;
}

.metric-percentage-value {
    font-size: 48px;
    font-weight: 700;
    color: #38a169;
    display: block;
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
}

.metric-description {
    font-size: 14px;
    color: #718096;
    line-height: 1.5;
}

.impact-call-to-action-section {
    text-align: center;
}

.cta-question-text {
    font-size: 32px;
    color: #2d3748;
    margin-bottom: 30px;
}

.about-page-cta-button {
    background: linear-gradient(135deg, #38a169 0%, #2f855a 100%);
    color: white;
    padding: 20px 40px;
    border-radius: 35px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    display: inline-block;
    margin-bottom: 20px;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(49,130,206,0.3);
}

.about-page-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(49,130,206,0.4);
}

.cta-supporting-text {
    color: #718096;
    font-size: 16px;
    font-style: italic;
}

.z7m1-section-part-contact-hero-introduction {
    padding: 140px 0 100px;
    background: linear-gradient(135deg, #1a2332 0%, #2d3748 100%);
    color: white;
}

.contact-hero-layout-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 0 25px;
}

.contact-page-main-headline {
    font-size: 50px;
    line-height: 1.2;
    margin-bottom: 25px;
    color: white;
}

.contact-hero-description-text {
    font-size: 19px;
    line-height: 1.6;
    color: #cbd5e0;
    margin-bottom: 40px;
}

.contact-hero-benefits-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.benefit-indicator-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.benefit-check-mark {
    color: #38a169;
    font-size: 18px;
    font-weight: 700;
}

.benefit-text-label {
    color: #e2e8f0;
    font-size: 16px;
}

.contact-info-card-floating {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(15px);
    padding: 40px 30px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.4s ease;
}

.floating-card-title {
    color: #38a169;
    font-size: 24px;
    margin-bottom: 30px;
    text-align: center;
}

.contact-method-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.contact-method-item:last-child {
    border-bottom: none;
}

.contact-icon-label {
    color: #cbd5e0;
    font-weight: 500;
    font-size: 15px;
}

.contact-value-text {
    color: white;
    font-weight: 600;
    font-size: 15px;
}

.z7m1-section-part-consultation-booking-form {
    padding: 100px 0;
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
}

.consultation-form-layout {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    padding: 0 25px;
}

.consultation-form-title {
    font-size: 38px;
    margin-bottom: 15px;
    color: #2d3748;
}

.consultation-form-subtitle {
    font-size: 18px;
    color: #718096;
    margin-bottom: 40px;
    line-height: 1.6;
}

.consultation-request-form {
    background: white;
    padding: 45px;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.08);
}

.form-row-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 25px;
}

.form-input-field, .form-select-field {
    width: 100%;
    padding: 18px 20px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    background: #f8fafc;
}

.form-input-field:focus, .form-select-field:focus {
    outline: none;
    border-color: #3182ce;
    background: white;
    box-shadow: 0 0 0 3px rgba(49,130,206,0.1);
}

.form-textarea-field {
    width: 100%;
    padding: 20px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    resize: vertical;
    min-height: 120px;
    margin-bottom: 30px;
    background: #f8fafc;
    transition: all 0.3s ease;
}

.form-textarea-field:focus {
    outline: none;
    border-color: #3182ce;
    background: white;
    box-shadow: 0 0 0 3px rgba(49,130,206,0.1);
}

.consultation-submit-button {
    width: 100%;
    background: linear-gradient(135deg, #38a169 0%, #2f855a 100%);
    color: white;
    padding: 20px;
    border: none;
    border-radius: 15px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(49,130,206,0.3);
}

.consultation-submit-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(49,130,206,0.4);
}

.consultation-info-sidebar {
    background: #1a2332;
    color: white;
    padding: 40px 30px;
    border-radius: 15px;
    align-self: start;
}

.consultation-info-sidebar h3 {
    color: #38a169;
    font-size: 22px;
    margin-bottom: 25px;
}

.consultation-info-sidebar p {
    margin-bottom: 15px;
    color: #cbd5e0;
    position: relative;
    padding-left: 20px;
}

.consultation-info-sidebar p::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #38a169;
    font-weight: 700;
}

.consultation-guarantee-box {
    margin-top: 30px;
    padding: 25px;
    background: rgba(49,130,206,0.1);
    border-radius: 12px;
    border: 1px solid rgba(49,130,206,0.3);
}

.consultation-guarantee-box h4 {
    color: #38a169;
    font-size: 18px;
    margin-bottom: 12px;
}

.consultation-guarantee-box p {
    font-size: 14px;
    padding-left: 0;
    margin-bottom: 0;
}

.consultation-guarantee-box p::before {
    display: none;
}

.z7m1-section-part-office-location-details {
    padding: 100px 0;
    background: white;
}

.office-location-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 25px;
}

.location-content-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}

.location-image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.office-consultation-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease;
}

.location-image-container:hover .office-consultation-image {
    transform: scale(1.05);
}

.location-overlay-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(26,35,50,0.9));
    padding: 30px;
    color: white;
}

.overlay-location-title {
    color: #38a169;
    font-size: 20px;
    margin-bottom: 10px;
}

.overlay-address-text {
    color: #cbd5e0;
    font-size: 14px;
    line-height: 1.5;
}

.location-section-title {
    font-size: 42px;
    margin-bottom: 25px;
    color: #2d3748;
}

.location-description-paragraph {
    font-size: 18px;
    line-height: 1.6;
    color: #4a5568;
    margin-bottom: 50px;
}

.office-features-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 50px;
}

.office-feature-item {
    padding: 25px;
    background: linear-gradient(135deg, #f8fafc 0%, white 100%);
    border-radius: 12px;
    border-left: 4px solid #3182ce;
    transition: all 0.3s ease;
}

.office-feature-item:hover {
    transform: translateX(8px);
    box-shadow: 0 8px 25px rgba(49,130,206,0.1);
}

.feature-item-title {
    color: #2d3748;
    font-size: 18px;
    margin-bottom: 10px;
}

.feature-description-text {
    color: #4a5568;
    line-height: 1.6;
    font-size: 15px;
}

.office-hours-section {
    background: linear-gradient(135deg, #f7fafc 0%, white 100%);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid #e2e8f0;
}

.hours-title {
    color: #2d3748;
    font-size: 20px;
    margin-bottom: 20px;
}

.hours-grid-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px 30px;
    align-items: center;
}

.day-label {
    color: #4a5568;
    font-weight: 500;
    font-size: 15px;
}

.time-range {
    color: #38a169;
    font-weight: 600;
    font-size: 15px;
}



.email-contact-link:hover {
    color: #2c5aa0;
}

.z7m1-section-part-success-stories-brief {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, white 100%);
}

.success-stories-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 25px;
    text-align: center;
}

.success-stories-title {
    font-size: 38px;
    margin-bottom: 60px;
    color: #2d3748;
}

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

.quick-testimonial-card {
    padding: 30px 25px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    border-left: 4px solid #3182ce;
}

.quick-testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(49,130,206,0.15);
}

.testimonial-text {
    font-style: italic;
    color: #4a5568;
    margin-bottom: 20px;
    line-height: 1.6;
    font-size: 16px;
}

.faq-compact-layout .faq-answer-text {
    color: #cbd5e0;
    font-size: 14px;
    line-height: 1.5;
}

.timeline-section-headline {
    font-size: 46px;
    text-align: center;
    margin-bottom: 80px;
    color: white;
}

.consultation-steps-timeline {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.timeline-step-item {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 40px;
    align-items: start;
}

.step-number-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #38a169;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    position: relative;
}

.step-number-circle::before {
    content: '';
    position: absolute;
    inset: -10px;
    border: 2px solid rgba(49,130,206,0.3);
    border-radius: 50%;
}

.step-content-block {
    background: rgba(255,255,255,0.05);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
}

.step-title-text {
    color: #38a169;
    font-size: 22px;
    margin-bottom: 15px;
}

.step-description-text {
    color: #cbd5e0;
    line-height: 1.6;
    margin-bottom: 15px;
    font-size: 16px;
}

.step-duration-label {
    background: rgba(49,130,206,0.2);
    color: #38a169;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    display: inline-block;
}

.faq-subsection-title {
    font-size: 32px;
    color: #38a169;
    text-align: center;
    margin-bottom: 40px;
}

.z7m1-section-part-legal-document-content {
    padding: 140px 0 100px;
    background: white;
    min-height: 100vh;
}

.legal-document-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 25px;
}

.breadcrumb-navigation-path {
    font-size: 14px;
    color: #718096;
    margin-bottom: 30px;
}

.breadcrumb-navigation-path a {
    color: #38a169;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-navigation-path a:hover {
    color: #2c5aa0;
}

.legal-document-main-title {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    color: #2d3748;
    margin-bottom: 25px;
    line-height: 1.2;
}

.legal-document-metadata {
    background: linear-gradient(135deg, #f8fafc 0%, #edf2f7 100%);
    padding: 20px 25px;
    border-radius: 12px;
    margin-bottom: 50px;
    border-left: 4px solid #3182ce;
}

.last-updated-information {
    color: #38a169;
    font-weight: 600;
    margin-bottom: 5px;
    font-size: 15px;
}

.effective-date-notice {
    color: #4a5568;
    font-size: 14px;
    margin: 0;
}

.legal-content-text-wrapper {
    line-height: 1.8;
}

.legal-section-heading {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    color: #2d3748;
    margin: 50px 0 25px 0;
    font-weight: 600;
}

.legal-section-heading:first-of-type {
    margin-top: 0;
}

.legal-text-paragraph {
    font-size: 17px;
    color: #4a5568;
    margin-bottom: 20px;
    line-height: 1.7;
}

.contact-information-block {
    background: linear-gradient(135deg, #f7fafc 0%, white 100%);
    padding: 25px 30px;
    border-radius: 12px;
    margin: 30px 0;
    border-left: 4px solid #3182ce;
}

.contact-information-block p {
    margin-bottom: 10px;
    color: #2d3748;
    font-weight: 500;
}

.contact-information-block p:last-child {
    margin-bottom: 0;
}

.contact-information-block strong {
    color: #38a169;
    font-weight: 600;
}

@media (max-width: 768px) {
    .legal-document-main-title {
        font-size: 36px;
    }
    
    .legal-section-heading {
        font-size: 26px;
    }
    
    .legal-text-paragraph {
        font-size: 16px;
    }
    
    .legal-document-container {
        padding: 0 20px;
    }
    
    .z7m1-section-part-legal-document-content {
        padding: 120px 0 80px;
    }
}

.z7m1-section-part-blog-hero-introduction {
    padding: 140px 0 80px;
    background: linear-gradient(145deg, #1a2332 0%, #2d3748 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.z7m1-section-part-blog-hero-introduction::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -20%;
    width: 40%;
    height: 150%;
    background: radial-gradient(ellipse at center, rgba(49,130,206,0.15) 0%, transparent 60%);
    transform: rotate(-15deg);
}

.blog-hero-layout-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 0 25px;
    position: relative;
    z-index: 2;
}

.blog-page-main-headline {
    font-size: 52px;
    line-height: 1.1;
    margin-bottom: 25px;
    color: white;
}

.blog-hero-description-text {
    font-size: 19px;
    line-height: 1.6;
    color: #cbd5e0;
    margin-bottom: 0;
}

.blog-hero-stats-section {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.blog-stat-item {
    text-align: center;
    padding: 25px 20px;
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

.stat-number-value {
    display: block;
    font-size: 36px;
    font-weight: 700;
    color: #38a169;
    font-family: 'Playfair Display', serif;
    margin-bottom: 8px;
}

.stat-label-description {
    font-size: 14px;
    color: #e2e8f0;
}

.z7m1-section-part-featured-article-spotlight {
    padding: 100px 0;
    background: white;
    position: relative;
}

.featured-article-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 25px;
    position: relative;
}

.featured-article-badge {
    position: absolute;
    top: -10px;
    left: 25px;
    background: #38a169;
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    z-index: 2;
}

.featured-article-layout {
    background: linear-gradient(135deg, #f8fafc 0%, white 100%);
    border-radius: 25px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
    border: 1px solid #e2e8f0;
}

.featured-article-content {
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.featured-article-title {
    margin-bottom: 20px;
}

.featured-article-link {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    color: #2d3748;
    text-decoration: none;
    font-weight: 600;
    line-height: 1.2;
    transition: color 0.3s ease;
}

.featured-article-link:hover {
    color: #38a169;
}

.featured-article-excerpt {
    font-size: 18px;
    line-height: 1.6;
    color: #4a5568;
    margin-bottom: 25px;
}

.featured-article-metadata {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
    font-size: 14px;
    color: #718096;
}

.article-author-name {
    color: #38a169;
    font-weight: 600;
}

.metadata-separator {
    color: #cbd5e0;
}

.article-publish-date, .article-read-time {
    color: #718096;
}

.featured-article-read-more {
    color: #38a169;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.featured-article-read-more:hover {
    color: #2c5aa0;
    transform: translateX(5px);
}

.featured-article-visual {
    position: relative;
    overflow: hidden;
}

.featured-article-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.featured-article-layout:hover .featured-article-image {
    transform: scale(1.05);
}

.z7m1-section-part-recent-articles-grid {
    padding: 80px 0;
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
}

.recent-articles-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 25px;
}

.recent-articles-section-title {
    font-size: 42px;
    text-align: center;
    margin-bottom: 70px;
    color: #2d3748;
}

.articles-asymmetric-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 30px;
}

.blog-article-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
    transition: all 0.4s ease;
    border: 1px solid #e2e8f0;
}

.blog-article-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(49,130,206,0.1);
}

.blog-article-card.featured-secondary {
    grid-row: span 2;
}

.blog-article-card.upcoming-preview {
    position: relative;
    opacity: 0.8;
}

.upcoming-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #fdc632;
    color: #2d3748;
    padding: 5px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    z-index: 2;
}

.article-card-visual {
    height: 200px;
    overflow: hidden;
}

.blog-article-card.featured-secondary .article-card-visual {
    height: 250px;
}

.article-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.blog-article-card:hover .article-card-image {
    transform: scale(1.08);
}

.article-card-content {
    padding: 30px 25px;
}

.article-card-title {
    margin-bottom: 15px;
}

.article-title-link {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    color: #2d3748;
    text-decoration: none;
    font-weight: 600;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.article-title-link:hover {
    color: #38a169;
}

.upcoming-article-title {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    color: #718096;
    font-weight: 600;
    line-height: 1.3;
}

.article-card-excerpt {
    font-size: 15px;
    line-height: 1.6;
    color: #4a5568;
    margin-bottom: 20px;
}

.article-card-metadata {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #718096;
}

.z7m1-section-part-blog-newsletter-signup {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a2332 0%, #2d3748 100%);
    color: white;
}

.newsletter-signup-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 25px;
}

.newsletter-content-layout {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 50px;
    align-items: center;
}

.newsletter-signup-headline {
    font-size: 38px;
    color: white;
    margin-bottom: 20px;
}

.newsletter-description-text {
    font-size: 18px;
    line-height: 1.6;
    color: #cbd5e0;
}

.newsletter-subscription-form {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.newsletter-email-input {
    flex: 1;
    padding: 15px 20px;
    border: 2px solid rgba(255,255,255,0.2);
    border-radius: 12px;
    background: rgba(255,255,255,0.1);
    color: white;
    font-size: 16px;
    backdrop-filter: blur(10px);
}

.newsletter-email-input::placeholder {
    color: rgba(255,255,255,0.7);
}

.newsletter-email-input:focus {
    outline: none;
    border-color: #3182ce;
    background: rgba(255,255,255,0.15);
}

.newsletter-subscribe-button {
    background: #38a169;
    color: white;
    padding: 15px 25px;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.newsletter-subscribe-button:hover {
    background: #2f855a;
    transform: translateY(-2px);
}

.newsletter-privacy-note {
    font-size: 14px;
    color: #a0aec0;
    margin: 0;
}

.z7m1-section-part-blog-categories-topics {
    padding: 100px 0;
    background: white;
}

.blog-categories-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 25px;
}

.categories-section-title {
    font-size: 42px;
    text-align: center;
    margin-bottom: 70px;
    color: #2d3748;
}

.categories-topics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.category-topic-card {
    padding: 40px 30px;
    background: linear-gradient(135deg, #f8fafc 0%, white 100%);
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid #e2e8f0;
}

.category-topic-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(49,130,206,0.1);
    border-color: #3182ce;
}

.category-topic-name {
    font-size: 20px;
    color: #2d3748;
    margin-bottom: 15px;
    font-weight: 600;
}

.category-topic-description {
    font-size: 15px;
    line-height: 1.5;
    color: #4a5568;
    margin-bottom: 20px;
}

.category-article-count {
    display: inline-block;
    background: #38a169;
    color: white;
    padding: 6px 15px;
    border-radius: 15px;
    font-size: 13px;
    font-weight: 600;
}

.z7m1-section-part-article-hero-header {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, #f8fafc 0%, #edf2f7 100%);
}

.article-hero-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 25px;
}

.article-breadcrumb-navigation {
    font-size: 14px;
    color: #718096;
    margin-bottom: 30px;
}

.article-breadcrumb-navigation a {
    color: #38a169;
    text-decoration: none;
    transition: color 0.3s ease;
}

.article-breadcrumb-navigation a:hover {
    color: #2c5aa0;
}

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

.hero-article-metadata {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.article-category-tag {
    background: #38a169;
    color: white;
    padding: 6px 15px;
    border-radius: 15px;
    font-size: 13px;
    font-weight: 600;
}

.article-publication-date, .article-reading-time {
    font-size: 14px;
    color: #718096;
}

.article-main-headline {
    font-size: 56px;
    line-height: 1.1;
    margin-bottom: 25px;
    color: #2d3748;
    font-weight: 600;
}

.article-hero-subtitle {
    font-size: 22px;
    line-height: 1.5;
    color: #4a5568;
    margin-bottom: 40px;
}

.article-author-information {
    display: flex;
    justify-content: center;
}

.author-profile-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.author-name-display {
    font-size: 18px;
    color: #2d3748;
    font-weight: 600;
    margin-bottom: 5px;
}

.author-title-role {
    font-size: 14px;
    color: #38a169;
    font-weight: 500;
}

.z7m1-section-part-article-content-body {
    padding: 100px 0;
    background: white;
}

.article-content-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 25px;
}

.article-featured-image-section {
    margin-bottom: 60px;
}

.article-featured-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.article-text-content {
    font-size: 18px;
    line-height: 1.8;
    color: #2d3748;
}

.article-opening-paragraph {
    font-size: 22px;
    font-weight: 500;
    color: #2d3748;
    margin-bottom: 30px;
    line-height: 1.6;
}

.article-body-paragraph {
    margin-bottom: 25px;
}

.article-section-heading {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    color: #2d3748;
    margin: 50px 0 25px 0;
    font-weight: 600;
    line-height: 1.3;
}

.article-section-heading:first-of-type {
    margin-top: 30px;
}

.article-highlight-box {
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
    border-left: 5px solid #3182ce;
    padding: 30px 35px;
    margin: 40px 0;
    border-radius: 0 15px 15px 0;
}

.highlight-box-title {
    font-size: 20px;
    color: #2d3748;
    font-weight: 600;
    margin-bottom: 15px;
}

.highlight-box-content {
    font-size: 16px;
    line-height: 1.7;
    color: #4a5568;
    margin: 0;
}

.allocation-breakdown-list {
    list-style: none;
    padding: 0;
    margin: 15px 0 0 0;
}

.allocation-item {
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
    line-height: 1.6;
}

.allocation-item::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #38a169;
    font-weight: 700;
}

.z7m1-section-part-article-call-to-action {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a2332 0%, #2d3748 100%);
    color: white;
}

.article-cta-container {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    padding: 0 25px;
}

.article-cta-headline {
    font-size: 38px;
    color: white;
    margin-bottom: 20px;
}

.article-cta-description {
    font-size: 18px;
    line-height: 1.6;
    color: #cbd5e0;
    margin-bottom: 35px;
}

.article-cta-button {
    background: #38a169;
    color: white;
    padding: 18px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    display: inline-block;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(49,130,206,0.3);
}

.article-cta-button:hover {
    background: #2f855a;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(49,130,206,0.4);
    text-decoration: none;
    color: white;
}

.z7m1-section-part-related-articles {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, white 100%);
}

.related-articles-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 25px;
}

.related-articles-title {
    font-size: 36px;
    text-align: center;
    margin-bottom: 60px;
    color: #2d3748;
}

.related-articles-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.related-article-card {
    background: white;
    padding: 35px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.related-article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(49,130,206,0.1);
}

.related-article-card.upcoming {
    opacity: 0.7;
    position: relative;
}

.related-article-card.upcoming::before {
    content: 'Coming Soon';
    position: absolute;
    top: 15px;
    right: 15px;
    background: #fdc632;
    color: #2d3748;
    padding: 5px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

.related-article-title {
    margin-bottom: 15px;
}

.related-article-link {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    color: #2d3748;
    text-decoration: none;
    font-weight: 600;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.related-article-link:hover {
    color: #38a169;
}

.related-article-excerpt {
    font-size: 15px;
    line-height: 1.6;
    color: #4a5568;
    margin-bottom: 20px;
}

.related-article-metadata {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: #718096;
}

.related-author-name {
    color: #38a169;
    font-weight: 600;
}

.related-publish-date {
    color: #718096;
}

@media (max-width: 480px) {
    .legal-document-main-title {
        font-size: 28px;
    }
    
    .legal-section-heading {
        font-size: 22px;
        margin: 40px 0 20px 0;
    }
    
    .legal-text-paragraph {
        font-size: 15px;
    }
}

.z7m1-section-part-consultation-process-and-questions {
    padding: 120px 0;
    background: linear-gradient(135deg, #1a2332 0%, #2d3748 100%);
    color: white;
}

.process-and-faq-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 25px;
}

.process-timeline-section {
    margin-bottom: 100px;
}

.faq-section-wrapper {
    background: rgba(255,255,255,0.05);
    padding: 60px 50px;
    border-radius: 20px;
    backdrop-filter: blur(15px);
}

.faq-subsection-title {
    font-size: 32px;
    color: #38a169;
    text-align: center;
    margin-bottom: 50px;
}

.faq-compact-layout {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.faq-compact-layout .faq-question-item {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 25px 20px;
    border-radius: 12px;
    cursor: auto;
}

.faq-compact-layout .faq-question-item:hover {
    background: rgba(255,255,255,0.12);
    box-shadow: none;
    border-color: rgba(49,130,206,0.3);
}

.faq-compact-layout .faq-question-text {
    color: #38a169;
    font-size: 16px;
    margin-bottom: 12px;
    cursor: auto;
}

.faq-compact-layout .faq-answer-text {
    color: #cbd5e0;
    font-size: 14px;
    line-height: 1.5;
}

@media (max-width: 1024px) {
    .pricing-cards-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .pricing-plan-card.featured-plan {
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .main-navigation-container {
        padding: 0 15px;
    }
    
    .navigation-links-wrapper {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    }
    
    .navigation-links-wrapper.mobile-menu-active {
        display: flex;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero-content-layout {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .primary-hero-headline {
        font-size: 38px;
    }
    
    .hero-action-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .trust-indicators-row {
        justify-content: center;
        flex-wrap: wrap;
        gap: 20px;
    }
    
    .problem-points-grid {
        grid-template-columns: 1fr;
    }
    
    .methodology-steps-container {
        flex-direction: column;
        gap: 30px;
    }
    
    .expert-profiles-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .testimonials-asymmetric-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .pricing-cards-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .pricing-plan-card.featured-plan {
        transform: scale(1);
    }
    
    .about-hero-asymmetric-layout {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .about-page-main-headline {
        font-size: 36px;
    }
    
    .about-hero-statistics-row {
        justify-content: center;
        flex-wrap: wrap;
        gap: 30px;
    }
    
    .story-content-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .story-timeline-visual {
        position: static;
        flex-direction: row;
        justify-content: center;
    }
    
    .timeline-connector {
        width: 40px;
        height: 3px;
        margin: 0 10px;
    }
    
    .methodology-principles-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .team-content-columns {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .metrics-dashboard-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .contact-hero-layout-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .contact-page-main-headline {
        font-size: 36px;
    }
    
    .consultation-form-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .form-row-container {
        grid-template-columns: 1fr;
    }
    
    .location-content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .consultation-steps-timeline {
        gap: 35px;
    }
    
    .timeline-step-item {
        grid-template-columns: 60px 1fr;
        gap: 25px;
    }
    
    .step-number-circle {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    
    .faq-compact-layout {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .process-timeline-section {
        margin-bottom: 60px;
    }
    
    .blog-hero-layout-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .blog-page-main-headline {
        font-size: 38px;
    }
    
    .blog-hero-stats-section {
        flex-direction: row;
        justify-content: center;
        gap: 20px;
    }
    
    .featured-article-layout {
        grid-template-columns: 1fr;
    }
    
    .featured-article-content {
        padding: 40px 30px;
    }
    
    .featured-article-link {
        font-size: 28px;
    }
    
    .articles-asymmetric-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .newsletter-content-layout {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .newsletter-subscription-form {
        flex-direction: column;
    }
    
    .categories-topics-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .category-topic-card {
        padding: 30px 20px;
    }
    
    .article-main-headline {
        font-size: 42px;
    }
    
    .hero-article-metadata {
        flex-direction: column;
        gap: 10px;
    }
    
    .article-featured-image-section {
        margin-bottom: 40px;
    }
    
    .related-articles-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .quick-testimonials-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

@media (max-width: 480px) {
    .z7m1-section-part-hero-introduction {
        padding: 120px 0 80px;
    }
    
    .primary-hero-headline {
        font-size: 32px;
    }
    
    .hero-description-text {
        font-size: 16px;
    }
    
    .problem-section-title, .curriculum-main-title, .team-section-heading, .expertise-section-title, .pricing-section-headline {
        font-size: 32px;
    }
    
    .consultation-form-title {
        font-size: 28px;
    }
    
    .about-page-main-headline {
        font-size: 28px;
    }
    
    .story-section-headline, .methodology-main-title, .team-section-title, .impact-section-headline, .faq-section-title, .timeline-section-headline {
        font-size: 28px;
    }
    
    .contact-page-main-headline {
        font-size: 28px;
    }
    
    .consultation-form-title {
        font-size: 26px;
    }
    
    .location-section-title {
        font-size: 30px;
    }
    
    .cta-question-text {
        font-size: 24px;
    }
    
    .metrics-dashboard-grid {
        grid-template-columns: 1fr;
    }
    
    .hours-grid-layout {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .timeline-step-item {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 20px;
    }
    
    .success-stories-title {
        font-size: 26px;
    }
    
    .timeline-section-headline {
        font-size: 28px;
    }
    
    .faq-subsection-title {
        font-size: 24px;
    }
    
    .blog-page-main-headline {
        font-size: 32px;
    }
    
    .recent-articles-section-title, .categories-section-title, .related-articles-title {
        font-size: 28px;
    }
    
    .newsletter-signup-headline {
        font-size: 28px;
    }
    
    .article-main-headline {
        font-size: 32px;
    }
    
    .article-hero-subtitle {
        font-size: 18px;
    }
    
    .article-section-heading {
        font-size: 26px;
    }
    
    .article-opening-paragraph {
        font-size: 19px;
    }
    
    .article-text-content {
        font-size: 16px;
    }
    
    .featured-article-content {
        padding: 30px 25px;
    }
    
    .categories-topics-grid {
        grid-template-columns: 1fr;
    }
    
    .article-cta-headline {
        font-size: 28px;
    }
    
    .blog-hero-stats-section {
        flex-direction: column;
        gap: 20px;
    }
}


@media (max-width: 992px) {
    .expertise-showcase-container {
        grid-template-columns: 1fr; 
        gap: 40px;
        text-align: center;
    }

    .expertise-section-title {
        font-size: 34px;
        margin-bottom: 35px;
    }

    .benefit-point-item {
        padding: 25px;
    }
}

@media (max-width: 576px) {
    .expertise-section-title {
        font-size: 28px;
        margin-bottom: 25px;
    }

    .benefit-point-item h4 {
        font-size: 18px;
    }

    .benefit-point-item p {
        font-size: 14px;
    }
}


@media (max-width: 992px) {
    .footer-contact-layout {
        grid-template-columns: 1fr 1fr; 
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .footer-contact-layout {
        grid-template-columns: 1fr; 
        text-align: center;
    }

    .contact-details-group {
        align-items: center;
    }

    .footer-links-columns {
        align-items: center;
    }

    .footer-column-one, .footer-column-two {
        align-items: center;
    }

    .blog-preview-section a {
        display: block;
    }
}

@media (max-width: 480px) {
    .company-footer-title {
        font-size: 26px;
    }

    .company-mission-statement {
        font-size: 15px;
    }

    .footer-links-columns a, 
    .blog-preview-section a, 
    .contact-item {
        font-size: 14px;
    }
}

@media (max-width: 992px) {
    .story-content-wrapper {
        grid-template-columns: 150px 1fr; 
        gap: 40px;
    }

    .story-section-headline {
        font-size: 36px;
    }

    .story-paragraph-text {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .story-content-wrapper {
        grid-template-columns: 1fr; 
        gap: 30px;
    }

    .story-timeline-visual {
        position: relative; 
        flex-direction: row; 
        justify-content: center;
    }

    .timeline-marker {
        width: 60px;
        height: 60px;
        font-size: 14px;
    }

    .timeline-connector {
        width: 40px;
        height: 3px; 
        margin: 0 10px;
    }

    .story-section-headline {
        font-size: 28px;
        text-align: center;
    }

    .story-paragraph-text {
        font-size: 15px;
        line-height: 1.6;
        text-align: center;
    }

    .story-quote-highlight {
        padding: 25px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .timeline-marker {
        width: 50px;
        height: 50px;
        font-size: 12px;
    }

    .timeline-connector {
        width: 25px;
    }

    .story-quote-highlight blockquote {
        font-size: 18px;
    }

    .story-quote-highlight cite {
        font-size: 14px;
    }
}
