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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: #2d3748;
    background: #f7fafc;
}

.app-container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.top-navigation {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid #e2e8f0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.logo-emoji {
    font-size: 1.75rem;
}

.brand-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2d3748;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #4a5568;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.current {
    color: #667eea;
    background: rgba(102, 126, 234, 0.1);
}

.cta-nav-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.cta-nav-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.main-wrapper {
    flex: 1;
}

.hero-area {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-heading {
    font-size: 3.5rem;
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 2rem;
}

.heading-line {
    display: block;
}

.heading-accent {
    display: block;
    font-weight: 600;
    background: linear-gradient(135deg, #ffd89b 0%, #19547b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-text {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 3rem;
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.btn-main, .btn-alt, .btn-outline {
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    display: inline-block;
}

.btn-main {
    background: linear-gradient(135deg, #ffd89b 0%, #19547b 100%);
    color: white;
    box-shadow: 0 8px 25px rgba(255, 216, 155, 0.3);
}

.btn-main:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 216, 155, 0.4);
}

.btn-alt {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-alt:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
}

.btn-outline {
    background: transparent;
    color: #667eea;
    border: 2px solid #667eea;
}

.btn-outline:hover {
    background: #667eea;
    color: white;
    transform: translateY(-3px);
}

.btn-main.large, .btn-outline.large {
    padding: 1.25rem 3rem;
    font-size: 1.1rem;
}

.trust-indicators {
    display: flex;
    gap: 3rem;
}

.indicator {
    text-align: center;
}

.indicator-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffd89b;
    margin-bottom: 0.5rem;
}

.indicator-text {
    font-size: 0.9rem;
    opacity: 0.9;
}

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

.visual-elements {
    position: relative;
    width: 300px;
    height: 300px;
}

.element-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: float 6s ease-in-out infinite;
}

.circle-1 {
    width: 120px;
    height: 120px;
    top: 20px;
    left: 20px;
    animation-delay: 0s;
}

.circle-2 {
    width: 80px;
    height: 80px;
    top: 60px;
    right: 30px;
    animation-delay: 2s;
}

.circle-3 {
    width: 60px;
    height: 60px;
    bottom: 40px;
    left: 60px;
    animation-delay: 4s;
}

.central-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 4rem;
    animation: pulse 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.1); }
}

.content-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.approach-section {
    padding: 6rem 0;
    background: white;
}

.section-intro {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-heading {
    font-size: 2.5rem;
    font-weight: 300;
    color: #2d3748;
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.2rem;
    color: #718096;
    line-height: 1.7;
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.approach-card {
    background: #f7fafc;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    border: 1px solid #e2e8f0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.approach-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.card-heading {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 1rem;
}

.card-text {
    color: #718096;
    line-height: 1.7;
}

.services-preview {
    padding: 6rem 0;
    background: #f7fafc;
}

.services-showcase {
    display: grid;
    gap: 2rem;
}

.service-item {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.service-item.featured {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.service-header {
    padding: 2.5rem 2.5rem 1rem;
}

.service-title {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #2d3748;
}

.service-item.featured .service-title {
    color: white;
}

.service-subtitle {
    color: #718096;
    font-style: italic;
}

.service-item.featured .service-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

.service-content {
    padding: 0 2.5rem 2.5rem;
}

.service-description {
    margin-bottom: 1.5rem;
    line-height: 1.7;
    color: #718096;
}

.service-item.featured .service-description {
    color: rgba(255, 255, 255, 0.9);
}

.service-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-features li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
    color: #718096;
}

.service-item.featured .service-features li {
    color: rgba(255, 255, 255, 0.9);
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: bold;
}

.service-item.featured .service-features li::before {
    color: #ffd89b;
}

.service-pricing {
    font-size: 1.3rem;
    font-weight: 600;
    color: #667eea;
    text-align: center;
    padding: 1rem;
    background: rgba(102, 126, 234, 0.1);
    border-radius: 10px;
}

.service-item.featured .service-pricing {
    color: white;
    background: rgba(255, 255, 255, 0.2);
}

.testimonial-highlight {
    padding: 4rem 0;
    background: linear-gradient(135deg, #2d3748 0%, #4a5568 100%);
    color: white;
    text-align: center;
}

.testimonial-quote {
    font-size: 1.5rem;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.testimonial-author {
    font-size: 1rem;
    opacity: 0.9;
}

.transformation-areas {
    padding: 6rem 0;
    background: white;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.area-card {
    background: #f7fafc;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    border: 1px solid #e2e8f0;
    transition: transform 0.3s ease;
}

.area-card:hover {
    transform: translateY(-5px);
}

.area-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.area-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 1rem;
}

.area-description {
    color: #718096;
    line-height: 1.7;
}

.cta-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

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

.cta-heading {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
}

.cta-text {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 3rem;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.site-footer {
    background: #2d3748;
    color: white;
    padding: 2rem 0;
    text-align: center;
}

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

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-text {
    opacity: 0.8;
}

.page-header {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
    text-align: center;
}

.page-title {
    font-size: 3rem;
    font-weight: 300;
    color: #2d3748;
    margin-bottom: 1.5rem;
}

.page-subtitle {
    font-size: 1.2rem;
    color: #718096;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto;
}

.coaching-overview {
    padding: 6rem 0;
    background: white;
}

.overview-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.overview-title {
    font-size: 2.5rem;
    font-weight: 300;
    color: #2d3748;
    margin-bottom: 2rem;
}

.overview-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #718096;
    margin-bottom: 1.5rem;
}

.overview-visual {
    text-align: center;
}

.visual-placeholder {
    font-size: 8rem;
    color: #667eea;
}

.detailed-services {
    padding: 6rem 0;
    background: #f7fafc;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.service-detail {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 0;
}

.service-visual {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon-large {
    font-size: 4rem;
    color: white;
}

.service-info {
    padding: 3rem;
}

.service-name {
    font-size: 2rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 0.5rem;
}

.service-tagline {
    color: #667eea;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.service-overview {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #718096;
    margin-bottom: 2rem;
}

.service-details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.detail-section h4 {
    font-size: 1.2rem;
    color: #2d3748;
    margin-bottom: 1rem;
    font-weight: 600;
}

.detail-section ul {
    list-style: none;
}

.detail-section li {
    padding: 0.5rem 0;
    color: #718096;
    position: relative;
    padding-left: 1.5rem;
}

.detail-section li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: bold;
}

.pricing-options {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.pricing-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
}

.price {
    font-size: 1.3rem;
    font-weight: 700;
    color: #667eea;
}

.price-desc {
    color: #718096;
    font-size: 0.9rem;
}

.pricing-note {
    font-size: 0.9rem;
    color: #718096;
    margin-top: 0.5rem;
    font-style: italic;
}

.coaching-process {
    padding: 6rem 0;
    background: white;
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.process-step {
    text-align: center;
    padding: 2rem;
    background: #f7fafc;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    transition: transform 0.3s ease;
}

.process-step:hover {
    transform: translateY(-5px);
}

.step-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 1rem;
}

.step-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 1rem;
}

.step-description {
    color: #718096;
    line-height: 1.7;
}

.next-steps {
    padding: 4rem 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

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

.next-steps-title {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
}

.next-steps-text {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.next-steps-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.programs-showcase {
    padding: 6rem 0;
    background: white;
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.program-card {
    background: #f7fafc;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.program-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.program-card.signature {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
}

.program-badge {
    position: absolute;
    top: -10px;
    right: 2rem;
    background: #ffd89b;
    color: #2d3748;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.program-header {
    padding: 2.5rem 2.5rem 1rem;
    text-align: center;
}

.program-title {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #2d3748;
}

.program-card.signature .program-title {
    color: white;
}

.program-duration {
    color: #667eea;
    font-weight: 500;
}

.program-card.signature .program-duration {
    color: #ffd89b;
}

.program-content {
    padding: 0 2.5rem 2.5rem;
}

.program-description {
    margin-bottom: 2rem;
    line-height: 1.7;
    color: #718096;
}

.program-card.signature .program-description {
    color: rgba(255, 255, 255, 0.9);
}

.program-highlights,
.program-outcomes {
    margin-bottom: 2rem;
}

.program-highlights h4,
.program-outcomes h4 {
    font-size: 1.1rem;
    color: #2d3748;
    margin-bottom: 1rem;
    font-weight: 600;
}

.program-card.signature .program-highlights h4,
.program-card.signature .program-outcomes h4 {
    color: white;
}

.program-highlights ul,
.program-outcomes ul {
    list-style: none;
}

.program-highlights li,
.program-outcomes li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
    color: #718096;
}

.program-card.signature .program-highlights li,
.program-card.signature .program-outcomes li {
    color: rgba(255, 255, 255, 0.9);
}

.program-highlights li::before,
.program-outcomes li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: bold;
}

.program-card.signature .program-highlights li::before,
.program-card.signature .program-outcomes li::before {
    color: #ffd89b;
}

.program-investment {
    text-align: center;
    padding: 1.5rem;
    background: rgba(102, 126, 234, 0.1);
    border-radius: 15px;
}

.program-card.signature .program-investment {
    background: rgba(255, 255, 255, 0.2);
}

.investment-amount {
    font-size: 2rem;
    font-weight: 700;
    color: #667eea;
    display: block;
    margin-bottom: 0.5rem;
}

.program-card.signature .investment-amount {
    color: white;
}

.investment-note {
    font-size: 0.9rem;
    color: #718096;
}

.program-card.signature .investment-note {
    color: rgba(255, 255, 255, 0.8);
}

.program-benefits {
    padding: 6rem 0;
    background: #f7fafc;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.benefit-item {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    border: 1px solid #e2e8f0;
    transition: transform 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.benefit-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 1rem;
}

.benefit-description {
    color: #718096;
    line-height: 1.7;
}

.program-testimonials {
    padding: 6rem 0;
    background: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: #f7fafc;
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    text-align: center;
}

.testimonial-text {
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: #718096;
}

.testimonial-author {
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 0.5rem;
}

.testimonial-program {
    font-size: 0.9rem;
    color: #667eea;
    font-weight: 500;
}

.program-selection {
    padding: 4rem 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

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

.selection-title {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
}

.selection-text {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.selection-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.coach-introduction {
    padding: 6rem 0;
    background: white;
}

.intro-layout {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 4rem;
    align-items: center;
}

.coach-image {
    text-align: center;
}

.image-placeholder {
    font-size: 8rem;
    color: #667eea;
    background: #f7fafc;
    border-radius: 50%;
    width: 250px;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    border: 3px solid #e2e8f0;
}

.story-title {
    font-size: 2.5rem;
    font-weight: 300;
    color: #2d3748;
    margin-bottom: 2rem;
}

.story-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #718096;
    margin-bottom: 1.5rem;
}

.credentials-section {
    padding: 6rem 0;
    background: #f7fafc;
}

.credentials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.credential-category {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
}

.category-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #667eea;
}

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

.credential-list li {
    padding: 0.75rem 0;
    color: #718096;
    position: relative;
    padding-left: 1.5rem;
    border-bottom: 1px solid #f7fafc;
}

.credential-list li:last-child {
    border-bottom: none;
}

.credential-list li::before {
    content: '🎓';
    position: absolute;
    left: 0;
    font-size: 0.9rem;
}

.philosophy-section {
    padding: 6rem 0;
    background: white;
}

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

.philosophy-title {
    font-size: 2.5rem;
    font-weight: 300;
    color: #2d3748;
    margin-bottom: 2rem;
}

.philosophy-text {
    margin-bottom: 3rem;
}

.philosophy-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #718096;
    margin-bottom: 1.5rem;
}

.philosophy-principles h3 {
    font-size: 1.5rem;
    color: #2d3748;
    margin-bottom: 2rem;
    font-weight: 600;
}

.principles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    text-align: left;
}

.principle-item {
    background: #f7fafc;
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid #e2e8f0;
}

.principle-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.principle-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 0.5rem;
}

.principle-item p {
    color: #718096;
    line-height: 1.6;
}

.experience-section {
    padding: 6rem 0;
    background: #f7fafc;
}

.experience-timeline {
    max-width: 800px;
    margin: 0 auto;
}

.timeline-item {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e2e8f0;
}

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

.timeline-year {
    font-size: 1.1rem;
    font-weight: 600;
    color: #667eea;
    text-align: right;
}

.timeline-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 0.25rem;
}

.timeline-content h4 {
    font-size: 1rem;
    color: #667eea;
    margin-bottom: 1rem;
    font-weight: 500;
}

.timeline-content p {
    color: #718096;
    line-height: 1.7;
}

.personal-section {
    padding: 6rem 0;
    background: white;
}

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

.personal-title {
    font-size: 2.5rem;
    font-weight: 300;
    color: #2d3748;
    margin-bottom: 2rem;
}

.personal-text {
    margin-bottom: 3rem;
}

.personal-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #718096;
    margin-bottom: 1.5rem;
}

.personal-interests h3 {
    font-size: 1.5rem;
    color: #2d3748;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.interests-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.interest-tag {
    background: #f7fafc;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    border: 1px solid #e2e8f0;
    color: #718096;
    font-weight: 500;
}

.values-section {
    padding: 6rem 0;
    background: #f7fafc;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.value-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    border: 1px solid #e2e8f0;
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.value-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 1rem;
}

.value-description {
    color: #718096;
    line-height: 1.7;
}

.connect-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

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

.connect-title {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
}

.connect-text {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.connect-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-options {
    padding: 6rem 0;
    background: white;
}

.options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.option-card {
    background: #f7fafc;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    border: 1px solid #e2e8f0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.option-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.option-card.featured {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
}

.option-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.option-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #2d3748;
}

.option-card.featured .option-title {
    color: white;
}

.option-description {
    margin-bottom: 1.5rem;
    line-height: 1.7;
    color: #718096;
}

.option-card.featured .option-description {
    color: rgba(255, 255, 255, 0.9);
}

.option-features {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
}

.option-features li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
    color: #718096;
}

.option-card.featured .option-features li {
    color: rgba(255, 255, 255, 0.9);
}

.option-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: bold;
}

.option-card.featured .option-features li::before {
    color: #ffd89b;
}

.option-button {
    background: #667eea;
    color: white;
    padding: 1rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.option-card.featured .option-button {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.option-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.contact-forms {
    padding: 6rem 0;
    background: #f7fafc;
}

.forms-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
}

.form-section {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-title {
    font-size: 2rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 1rem;
}

.form-description {
    color: #718096;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.coaching-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group label {
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 0.5rem;
}

.coaching-form input,
.coaching-form select,
.coaching-form textarea {
    padding: 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-family: inherit;
    font-size: 1rem;
    background: #f7fafc;
    transition: border-color 0.3s ease;
}

.coaching-form input:focus,
.coaching-form select:focus,
.coaching-form textarea:focus {
    outline: none;
    border-color: #667eea;
    background: white;
}

.checkbox-group {
    flex-direction: row;
    align-items: center;
    gap: 1rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    color: #718096;
    line-height: 1.6;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.form-note {
    font-size: 0.9rem;
    color: #718096;
    line-height: 1.6;
    text-align: center;
    margin-top: 1rem;
}

.contact-info {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.info-title {
    font-size: 2rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 2rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: #f7fafc;
    border-radius: 15px;
    border: 1px solid #e2e8f0;
}

.method-icon {
    font-size: 1.5rem;
    color: #667eea;
    margin-top: 0.25rem;
}

.method-details h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 0.5rem;
}

.method-details p {
    color: #718096;
    line-height: 1.6;
    margin-bottom: 0.25rem;
}

.method-note {
    font-size: 0.9rem;
    color: #667eea;
    font-style: italic;
}

.additional-info {
    background: #f7fafc;
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid #e2e8f0;
}

.additional-info h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 1rem;
}

.additional-info ul {
    list-style: none;
}

.additional-info li {
    padding: 0.5rem 0;
    color: #718096;
    position: relative;
    padding-left: 1.5rem;
}

.additional-info li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: bold;
}

.general-contact {
    padding: 4rem 0;
    background: white;
}

.general-form-section {
    max-width: 800px;
    margin: 0 auto;
    background: #f7fafc;
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
}

.faq-section {
    padding: 6rem 0;
    background: #f7fafc;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
}

.faq-question {
    background: #667eea;
    color: white;
    padding: 1.5rem;
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #5a67d8;
}

.faq-answer {
    padding: 1.5rem;
    background: white;
    display: none;
}

.faq-answer p {
    color: #718096;
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }
    
    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-heading {
        font-size: 2.5rem;
    }
    
    .trust-indicators {
        justify-content: center;
        gap: 2rem;
    }
    
    .overview-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .service-item.featured {
        grid-template-columns: 1fr;
    }
    
    .service-detail {
        grid-template-columns: 1fr;
    }
    
    .service-visual {
        height: 200px;
    }
    
    .intro-layout {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .timeline-item {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .timeline-year {
        text-align: left;
    }
    
    .forms-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-container {
        flex-direction: column;
        gap: 1rem;
    }
}