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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1d1d1f;
    background: #ffffff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    z-index: 1000;
    transition: all 0.3s ease;
}

/* Force logo image size */
.navbar img.logo-profile-pic {
    width: 50px !important;
    height: 50px !important;
    max-width: 50px !important;
    max-height: 50px !important;
}

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

.nav-brand-section {
    display: flex;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.logo-link:hover {
    opacity: 0.85;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 16px;
}

.logo-profile-pic {
    width: 50px !important;
    height: 50px !important;
    min-width: 50px;
    max-width: 50px;
    min-height: 50px;
    max-height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #0071e3;
    box-shadow: 0 2px 8px rgba(0, 113, 227, 0.2);
    display: block;
}

.logo-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.logo-brand-name {
    font-size: 18px;
    font-weight: 600;
    color: #1d1d1f;
    line-height: 1.2;
}

.logo-subtitle {
    font-size: 12px;
    font-weight: 400;
    color: #6e6e73;
    line-height: 1.2;
}

.brand-logo {
    height: 60px;
    width: auto;
    display: block;
}

/* Legacy styles - keeping for backwards compatibility */
.profile-pic-small {
    display: flex;
    align-items: center;
    gap: 12px;
}

.profile-image-small {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #0071e3;
}

.profile-name-small {
    font-size: 14px;
    font-weight: 500;
    color: #1d1d1f;
    white-space: nowrap;
}

.nav-brand {
    font-size: 20px;
    font-weight: 600;
    color: #1d1d1f;
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    color: #1d1d1f;
    text-decoration: none;
    font-weight: 400;
    font-size: 15px;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #0071e3;
}

/* Hero Section */
.hero {
    padding: 140px 0 120px;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('assets/hero-background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
    align-items: center;
}

.hero-content h1 {
    font-size: 80px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #1d1d1f 0%, #4a4a4a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    order: -1;
}

.hero-content h1 .blue-to {
    background: none;
    -webkit-background-clip: initial;
    -webkit-text-fill-color: initial;
    background-clip: initial;
    color: #0071e3;
}

.hero-subtitle {
    font-size: 24px;
    font-weight: 400;
    color: #6e6e73;
    margin-bottom: 48px;
    line-height: 1.4;
}

.lead-capture {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.lead-capture h3 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 24px;
    color: #1d1d1f;
}

.email-form .form-group {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
}

.form-status {
    margin-top: 12px;
    font-size: 14px;
    color: #005bb5;
}

.form-status.error {
    color: #d93025;
}

.email-form input[type="email"] {
    flex: 1;
    padding: 16px 20px;
    font-size: 16px;
    border: 2px solid #e8e8ed;
    border-radius: 12px;
    background: #ffffff;
    font-family: inherit;
    transition: all 0.3s ease;
}

.email-form input[type="email"]:focus {
    outline: none;
    border-color: #0071e3;
    box-shadow: 0 0 0 3px rgba(0, 113, 227, 0.1);
}

.email-form button {
    padding: 16px 32px;
    background: #0071e3;
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    white-space: nowrap;
}

.email-form button:hover {
    background: #0056b3;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 113, 227, 0.3);
}

.privacy {
    color: #86868b;
    font-size: 14px;
    margin-top: 8px;
}

/* Hero Visual */
.transformation-stats {
    display: flex;
    flex-direction: column;
    gap: 32px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 48px 32px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.stat {
    text-align: center;
}

.stat .number {
    display: block;
    font-size: 48px;
    font-weight: 700;
    color: #0071e3;
    margin-bottom: 8px;
}

.stat .label {
    font-size: 16px;
    font-weight: 500;
    color: #6e6e73;
}

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

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

.section-header h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #1d1d1f;
}

.section-header p {
    font-size: 20px;
    color: #6e6e73;
    max-width: 600px;
    margin: 0 auto;
}

/* Story Section */
.story {
    background: #fafafa;
}

.timeline {
    display: grid;
    gap: 48px;
    max-width: 800px;
    margin: 0 auto;
}

.timeline-item {
    display: flex;
    gap: 32px;
    align-items: flex-start;
}

.timeline-marker {
    width: 16px;
    height: 16px;
    background: #0071e3;
    border-radius: 50%;
    margin-top: 8px;
    flex-shrink: 0;
    position: relative;
}

.timeline-marker::after {
    content: '';
    position: absolute;
    top: 16px;
    left: 50%;
    width: 2px;
    height: 64px;
    background: #e8e8ed;
    transform: translateX(-50%);
}

.timeline-item:last-child .timeline-marker::after {
    display: none;
}

.timeline-content h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #1d1d1f;
}

.timeline-content p {
    font-size: 18px;
    color: #6e6e73;
    line-height: 1.5;
}

/* Guide Section */
.guide-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 80px;
    align-items: start;
}

.guide-text h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 48px;
    color: #1d1d1f;
}

.guide-features {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.feature h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1d1d1f;
}

.feature p {
    font-size: 16px;
    color: #6e6e73;
    line-height: 1.5;
}

.cta-box {
    background: rgba(0, 113, 227, 0.05);
    border-radius: 24px;
    padding: 48px 40px;
    text-align: center;
    border: 1px solid rgba(0, 113, 227, 0.1);
    position: sticky;
    top: 120px;
}

.cta-box h3 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #1d1d1f;
}

.cta-box p {
    font-size: 16px;
    color: #6e6e73;
    margin-bottom: 32px;
}

.guide-cta .email-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.guide-cta .email-form input {
    padding: 16px 20px;
    font-size: 16px;
    border: 2px solid #e8e8ed;
    border-radius: 12px;
    font-family: inherit;
    transition: all 0.3s ease;
}

.guide-cta .email-form input:focus {
    outline: none;
    border-color: #0071e3;
    box-shadow: 0 0 0 3px rgba(0, 113, 227, 0.1);
}

.guide-cta .email-form button {
    padding: 16px 32px;
    background: #0071e3;
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.guide-cta .email-form button:hover {
    background: #0056b3;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 113, 227, 0.3);
}

/* Strategy Session Section */
.strategy-session {
    background: #fafafa;
}

.session-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.session-info h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #1d1d1f;
}

.session-info > p {
    font-size: 20px;
    color: #6e6e73;
    line-height: 1.6;
    margin-bottom: 32px;
}

.consultation-pricing {
    margin-bottom: 32px;
}

.price-box {
    background: linear-gradient(135deg, #0071e3, #005bb5);
    color: white;
    padding: 24px;
    border-radius: 16px;
    text-align: center;
    display: inline-block;
    margin: 0 auto;
    box-shadow: 0 8px 32px rgba(0, 113, 227, 0.3);
}

.price {
    font-size: 48px;
    font-weight: 700;
    display: block;
    line-height: 1;
}

.price-subtitle {
    font-size: 14px;
    opacity: 0.9;
    font-weight: 500;
    margin-top: 4px;
    display: block;
}

.guarantee {
    margin-top: 24px;
    padding: 20px;
    background: rgba(34, 197, 94, 0.05);
    border-left: 4px solid #22c55e;
    border-radius: 8px;
}

.guarantee p {
    color: #16a34a;
    font-size: 16px;
    line-height: 1.5;
    margin: 0;
}

.session-benefits {
    margin-bottom: 32px;
}

.session-benefits h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1d1d1f;
    margin-bottom: 16px;
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.benefits-list li {
    padding: 12px 0;
    padding-left: 32px;
    position: relative;
    font-size: 16px;
    color: #1d1d1f;
    line-height: 1.5;
}

.benefits-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #0071e3;
    font-weight: bold;
    font-size: 18px;
}

.session-credentials p {
    font-size: 16px;
    color: #6e6e73;
    line-height: 1.6;
    padding: 20px;
    background: rgba(0, 113, 227, 0.05);
    border-left: 4px solid #0071e3;
    border-radius: 8px;
}

.booking-form {
    background: white;
    padding: 48px;
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.booking-form h3 {
    font-size: 28px;
    font-weight: 700;
    color: #1d1d1f;
    margin-bottom: 8px;
}

.booking-subtitle {
    font-size: 14px;
    color: #f57c00;
    font-weight: 500;
    margin-bottom: 32px;
}

.post-schedule {
    margin-top: 32px;
    background: rgba(0, 113, 227, 0.05);
    border-radius: 18px;
    padding: 24px;
    text-align: center;
}

.post-schedule-note {
    font-size: 15px;
    color: #3a3a3c;
    margin-bottom: 20px;
}

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

.session-form input,
.session-form textarea,
.session-form select {
    padding: 16px 20px;
    border: 2px solid #e8e8ed;
    border-radius: 12px;
    font-size: 16px;
    font-family: inherit;
    transition: all 0.3s ease;
    margin-bottom: 20px;
}

.session-form input:focus,
.session-form textarea:focus,
.session-form select:focus {
    outline: none;
    border-color: #0071e3;
    box-shadow: 0 0 0 3px rgba(0, 113, 227, 0.1);
}

.preferred-times label {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: #1d1d1f;
    margin-bottom: 16px;
}

.preferred-times .checkbox-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 20px;
}

.preferred-times .checkbox-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 400;
    margin-bottom: 0;
}

.consultation-agreement {
    margin: 24px 0;
    padding: 16px;
    background: rgba(0, 113, 227, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(0, 113, 227, 0.1);
}

.consultation-agreement label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    color: #1d1d1f;
    line-height: 1.5;
    cursor: pointer;
    margin-bottom: 0;
}

.consultation-agreement input[type="checkbox"] {
    margin: 0;
    flex-shrink: 0;
    margin-top: 2px;
}

.session-button {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, #0071e3, #005bb5);
    color: white;
    border: none;
    border-radius: 16px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
    box-shadow: 0 4px 16px rgba(0, 113, 227, 0.2);
}

.session-button:hover {
    background: linear-gradient(135deg, #005bb5, #004494);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0, 113, 227, 0.4);
}

.booking-note {
    font-size: 14px;
    color: #6e6e73;
    text-align: center;
    margin-top: 16px;
    font-style: italic;
}

/* Footer */
.footer {
    background: #1d1d1f;
    color: white;
    padding: 64px 0 32px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid #333;
}

.footer-brand {
    font-size: 20px;
    font-weight: 600;
}

.footer-links {
    display: flex;
    gap: 32px;
}

.footer-links a {
    color: #a1a1a6;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
}

.footer-bottom p {
    color: #a1a1a6;
    font-size: 14px;
}

/* About Page Styles */
.about-hero {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    min-height: 60vh;
    display: flex;
    align-items: center;
    text-align: center;
}

.about-hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
}

.about-text h1 {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #1d1d1f;
}

.profile-pic-large {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.profile-image-large {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #0071e3;
    box-shadow: 0 8px 32px rgba(0, 113, 227, 0.2);
}

.profile-name-large {
    font-size: 24px;
    font-weight: 600;
    color: #1d1d1f;
    text-align: center;
    white-space: nowrap;
    display: inline-block;
    width: 100%;
}

.profile-dds {
    font-size: 18px;
    font-weight: 400;
    color: #1d1d1f;
}

.personal-story {
    padding: 120px 0;
}

.story-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 80px;
    align-items: start;
}

.story-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 32px;
    color: #1d1d1f;
}

.story-content h3 {
    font-size: 24px;
    font-weight: 600;
    margin: 48px 0 24px 0;
    color: #1d1d1f;
}

.story-content p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 24px;
    color: #6e6e73;
}

.credentials {
    background: #fafafa;
    border-radius: 24px;
    padding: 48px 32px;
    position: sticky;
    top: 120px;
}

.credentials h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 32px;
    color: #1d1d1f;
}

.credential-item {
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid #e8e8ed;
}

.credential-item:last-child {
    margin-bottom: 0;
    border-bottom: none;
    padding-bottom: 0;
}

.credential-item h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1d1d1f;
}

.credential-item p {
    font-size: 16px;
    color: #6e6e73;
    line-height: 1.5;
}

.values {
    background: #fafafa;
    padding: 120px 0;
}

.values h2 {
    font-size: 48px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 80px;
    color: #1d1d1f;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
}

.value-item {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.value-item h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #1d1d1f;
}

.value-item p {
    font-size: 16px;
    line-height: 1.6;
    color: #6e6e73;
}

.why-help {
    padding: 120px 0;
}

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

.help-content h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 48px;
    color: #1d1d1f;
}

.help-content p {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 32px;
    color: #6e6e73;
}

.about-cta {
    background: linear-gradient(135deg, #0071e3 0%, #005bb5 100%);
    color: white;
    padding: 120px 0;
    text-align: center;
}

.cta-content h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 24px;
    color: white;
}

.cta-content p {
    font-size: 20px;
    margin-bottom: 48px;
    color: rgba(255, 255, 255, 0.9);
}

.cta-buttons {
    display: flex;
    gap: 24px;
    justify-content: center;
}

.cta-button {
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.cta-button.primary {
    background: white;
    color: #0071e3;
}

.cta-button.primary:hover {
    background: #f5f5f5;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.2);
}

.cta-button.secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.cta-button.secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.nav-links .active {
    color: #0071e3;
    font-weight: 500;
}

.thank-you-actions {
    margin-top: 48px;
    text-align: center;
}

.thank-you-actions p {
    font-size: 18px;
    color: #6e6e73;
    margin-bottom: 32px;
}

/* Assessment Page Styles */
.assessment-hero {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    min-height: 60vh;
    display: flex;
    align-items: center;
    text-align: center;
}

.assessment-hero h1 {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #1d1d1f;
}

.assessment-intro {
    margin-top: 32px;
    text-align: left;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.intro-list {
    list-style: none;
    padding: 0;
    margin-top: 24px;
}

.intro-list li {
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
    font-size: 16px;
    color: #6e6e73;
}

.intro-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #0071e3;
    font-weight: bold;
}

.assessment-form-section {
    padding: 60px 0;
    background: #fafafa;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.assessment-info-card {
    max-width: 720px;
    background: #ffffff;
    padding: 48px;
    border-radius: 24px;
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.08);
    text-align: left;
}

.assessment-info-card h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1d1d1f;
}

.assessment-info-card p {
    font-size: 17px;
    line-height: 1.7;
    color: #3a3a3c;
    margin-bottom: 20px;
}

.assessment-steps {
    margin: 24px 0 32px;
    padding-left: 20px;
}

.assessment-steps li {
    margin-bottom: 12px;
    font-size: 17px;
    color: #3a3a3c;
}

.assessment-steps li strong {
    color: #005bb5;
}

.assessment-info-card .session-button {
    display: inline-block;
    width: auto;
    padding: 16px 32px;
    margin-top: 24px;
}

.form-navigation .progress-container {
    flex: 1;
    margin-right: 24px;
    min-width: 200px;
}

.nav-buttons {
    display: flex;
    gap: 16px;
    flex-shrink: 0;
}

.progress-bar {
    width: 100%;
    height: 6px;
    background: #e8e8ed;
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 12px;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #0071e3, #005bb5);
    width: 16.67%;
    border-radius: 3px;
    transition: width 0.4s ease;
}

.progress-text {
    text-align: left;
    font-size: 12px;
    color: #6e6e73;
    font-weight: 500;
    margin-top: 4px;
}

.assessment-form {
    max-width: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding-bottom: 20px;
    align-items: flex-start;
}

.form-section {
    min-width: 500px;
    max-width: 500px;
    background: white;
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    flex-shrink: 0;
    opacity: 0.3;
    transform: scale(0.95);
    transition: all 0.4s ease;
    min-height: fit-content;
    max-height: 600px;
    overflow-y: auto;
}

.form-section.active {
    opacity: 1;
    transform: scale(1);
    box-shadow: 0 12px 48px rgba(0, 113, 227, 0.15);
}

.form-section h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #1d1d1f;
    text-align: center;
}

.question {
    margin-bottom: 20px;
}

.question label {
    display: block;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #1d1d1f;
}

.radio-group,
.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.radio-group label,
.checkbox-group label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 15px;
    font-weight: 400;
    cursor: pointer;
    padding: 10px 12px;
    border-radius: 10px;
    transition: all 0.2s ease;
    border: 1px solid transparent;
}

.radio-group label:hover,
.checkbox-group label:hover {
    background-color: #f5f5f7;
    border-color: #e8e8ed;
}

.radio-group input,
.checkbox-group input {
    margin: 0;
    margin-top: 2px;
    flex-shrink: 0;
}

.inline-text {
    margin-left: 8px;
    padding: 4px 8px;
    border: 1px solid #e8e8ed;
    border-radius: 6px;
    font-size: 14px;
    background: white;
    width: 200px;
}

.question textarea {
    width: 100%;
    padding: 12px 16px;
    font-size: 15px;
    border: 2px solid #e8e8ed;
    border-radius: 10px;
    font-family: inherit;
    resize: vertical;
    min-height: 80px;
    transition: all 0.3s ease;
}

.question textarea:focus {
    outline: none;
    border-color: #0071e3;
    box-shadow: 0 0 0 3px rgba(0, 113, 227, 0.1);
}

.form-navigation {
    position: fixed;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px 28px;
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    z-index: 200;
    min-width: 500px;
    max-width: 90vw;
}

.nav-button {
    padding: 14px 28px;
    border: none;
    border-radius: 16px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    flex-shrink: 0;
    min-width: 120px;
    white-space: nowrap;
    text-transform: capitalize;
    letter-spacing: 0.5px;
}

.prev-button {
    background: #f5f5f7;
    color: #1d1d1f;
    border: 2px solid #e8e8ed;
    font-weight: 500;
}

.prev-button:hover {
    background: #e8e8ed;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    border-color: #d1d1d6;
}

.next-button,
.submit-button {
    background: linear-gradient(135deg, #0071e3, #005bb5);
    color: white;
    font-weight: 600;
    box-shadow: 0 4px 16px rgba(0, 113, 227, 0.2);
    border: none;
    position: relative;
    overflow: hidden;
}

.next-button::before,
.submit-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.next-button:hover::before,
.submit-button:hover::before {
    left: 100%;
}

.next-button:hover,
.submit-button:hover {
    background: linear-gradient(135deg, #005bb5, #004494);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0, 113, 227, 0.4);
}

.next-button:active,
.submit-button:active {
    transform: translateY(0);
    box-shadow: 0 4px 16px rgba(0, 113, 227, 0.3);
}

.validation-message {
    background: #ffebee;
    color: #c62828;
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 24px;
    font-size: 14px;
    border-left: 4px solid #c62828;
}

.limit-message {
    color: #f57c00;
    font-size: 14px;
    margin-top: 8px;
    font-style: italic;
}

.question.error {
    border-left: 4px solid #c62828;
    padding-left: 16px;
    background: #ffebee;
    border-radius: 8px;
}

.question input.error,
.question textarea.error {
    border-color: #c62828;
    background: #ffebee;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 48px;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 48px;
    }

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

    .nav-container {
        padding: 0 16px;
    }

    .container {
        padding: 0 16px;
    }

    .section-header h2 {
        font-size: 36px;
    }

    .guide-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .session-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .session-info h2 {
        font-size: 36px;
    }

    .session-form .form-row {
        grid-template-columns: 1fr;
    }

    .preferred-times .checkbox-group {
        grid-template-columns: 1fr;
    }

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

    .footer-content {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }

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

    .timeline-item {
        gap: 24px;
    }

    section {
        padding: 80px 0;
    }

    .hero {
        padding: 120px 0 80px;
    }

    .about-hero-content {
        flex-direction: column;
        gap: 48px;
        text-align: center;
    }

    .about-text h1 {
        font-size: 42px;
    }

    .profile-image-large {
        width: 150px;
        height: 150px;
    }

    .profile-name-large {
        font-size: 20px;
    }

    .profile-dds {
        font-size: 16px;
    }

    .nav-brand-section {
        flex-direction: column;
        gap: 8px;
    }

    .profile-name-small {
        font-size: 12px;
    }

    .profile-image-small {
        width: 40px;
        height: 40px;
    }

    .story-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .credentials {
        position: static;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .help-content h2 {
        font-size: 36px;
    }

    .cta-content h2 {
        font-size: 36px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .assessment-hero h1 {
        font-size: 42px;
    }

    .progress-container {
        flex: 1;
        margin-right: 16px;
    }

    .assessment-form {
        margin: 0 16px;
        gap: 16px;
    }

    .form-section {
        min-width: calc(100vw - 48px);
        max-width: calc(100vw - 48px);
        padding: 24px;
        max-height: 500px;
    }

    .form-section h2 {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .question {
        margin-bottom: 16px;
    }

    .question label {
        font-size: 15px;
        margin-bottom: 10px;
    }

    .radio-group label,
    .checkbox-group label {
        font-size: 14px;
        padding: 8px 10px;
    }

    .form-navigation {
        bottom: 20px;
        padding: 16px 20px;
        flex-direction: column;
        gap: 16px;
        min-width: 90%;
        max-width: 90%;
    }

    .form-navigation .progress-container {
        margin-right: 0;
        margin-bottom: 8px;
        min-width: auto;
        width: 100%;
    }

    .nav-buttons {
        display: flex;
        gap: 12px;
        width: 100%;
        justify-content: space-between;
    }

    .nav-button {
        padding: 12px 24px;
        font-size: 14px;
        flex-shrink: 0;
        min-width: 100px;
        border-radius: 14px;
    }

    .inline-text {
        width: 120px;
        font-size: 13px;
    }
}

/* SimplyBook.me Integration Styles */
.booking-description {
    font-size: 16px;
    color: #6e6e73;
    margin-bottom: 24px;
    text-align: center;
}

/* Hide "Our time" in SimplyBook widget */
#sb_booking_company_time {
    display: none !important;
    visibility: hidden !important;
}

.simplybook-button {
    width: 100%;
    padding: 18px 32px;
    background: linear-gradient(135deg, #0071e3 0%, #005bb5 100%);
    color: #ffffff;
    border: none;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(0, 113, 227, 0.3);
    margin-bottom: 20px;
}

.simplybook-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 113, 227, 0.4);
    background: linear-gradient(135deg, #005bb5 0%, #0071e3 100%);
}

.simplybook-button:active {
    transform: translateY(0);
}

.booking-details {
    background: #f5f7fa;
    padding: 16px 20px;
    border-radius: 8px;
    border-left: 4px solid #0071e3;
}

.booking-note {
    font-size: 14px;
    color: #1d1d1f;
    margin: 0;
    line-height: 1.5;
}

.booking-note strong {
    color: #0071e3;
}

/* Enhanced Mobile Optimizations */

/* Improved mobile navigation */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 20px;
        gap: 16px;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
        border-top: 1px solid rgba(0, 0, 0, 0.08);
        z-index: 999;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-links a {
        padding: 12px 16px;
        border-radius: 8px;
        transition: background 0.3s ease;
    }
    
    .nav-links a:hover {
        background: #f5f7fa;
    }

    /* Smaller logo on mobile */
    .logo-profile-pic {
        width: 40px !important;
        height: 40px !important;
        min-width: 40px;
        max-width: 40px;
        min-height: 40px;
        max-height: 40px;
    }
    
    .logo-brand-name {
        font-size: 16px;
    }
    
    .logo-subtitle {
        font-size: 11px;
    }
    
    .logo-container {
        gap: 12px;
    }

    /* Better hero section on mobile */
    .hero-content h1 {
        font-size: 36px !important;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 18px !important;
    }
    
    .lead-capture {
        padding: 24px;
    }
    
    .lead-capture h3 {
        font-size: 20px;
    }

    /* Optimize email form buttons */
    .email-form button {
        padding: 14px 24px;
        font-size: 16px;
        white-space: nowrap;
    }
    
    .email-form input[type="email"] {
        font-size: 16px;
        padding: 14px 16px;
    }

    /* Better transformation stats on mobile */
    .transformation-stats {
        padding: 24px 20px;
    }
    
    .stat {
        padding: 16px;
    }
    
    .stat .number {
        font-size: 32px;
    }
    
    .stat .label {
        font-size: 13px;
    }

    /* Optimize guide features on mobile */
    .guide-features {
        gap: 24px;
    }
    
    .feature h4 {
        font-size: 18px;
    }
    
    .feature p {
        font-size: 14px;
    }

    /* Better booking section on mobile */
    .simplybook-button {
        padding: 16px 24px;
        font-size: 16px;
    }
    
    .simplybook-button svg {
        width: 18px;
        height: 18px;
    }
    
    .booking-note {
        font-size: 13px;
    }

    /* Optimize pricing display */
    .price-box .price {
        font-size: 48px;
    }
    
    .consultation-pricing {
        margin: 24px 0;
    }

    /* Better timeline on mobile */
    .timeline {
        padding-left: 20px;
    }
    
    .timeline-item {
        padding-left: 24px;
    }
    
    .timeline-marker {
        width: 16px;
        height: 16px;
        left: -28px;
    }
    
    .timeline-content h3 {
        font-size: 20px;
    }
    
    .timeline-content p {
        font-size: 14px;
    }

    /* Improve footer on mobile */
    .footer-links {
        flex-direction: column;
        gap: 16px;
    }
    
    .footer-links a {
        padding: 8px 0;
    }
}

/* Extra small phones */
@media (max-width: 480px) {
    .nav-container {
        height: 64px;
        padding: 0 12px;
    }
    
    .logo-brand-name {
        font-size: 14px;
    }
    
    .logo-subtitle {
        font-size: 10px;
    }
    
    .logo-profile-pic {
        width: 36px !important;
        height: 36px !important;
        min-width: 36px;
        max-width: 36px;
        min-height: 36px;
        max-height: 36px;
    }
    
    .hero-content h1 {
        font-size: 28px !important;
    }
    
    .hero-subtitle {
        font-size: 16px !important;
    }
    
    .lead-capture {
        padding: 20px;
    }
    
    .lead-capture h3 {
        font-size: 18px;
    }
    
    .section-header h2 {
        font-size: 28px !important;
    }
    
    .simplybook-button {
        padding: 14px 20px;
        font-size: 15px;
    }
    
    .price {
        font-size: 42px !important;
    }
    
    .session-info h2 {
        font-size: 28px !important;
    }
}

/* Tablet landscape optimization */
@media (min-width: 769px) and (max-width: 1024px) {
    .hero-content h1 {
        font-size: 52px;
    }
    
    .hero-subtitle {
        font-size: 22px;
    }
    
    .nav-container {
        padding: 0 32px;
    }
    
    .container {
        padding: 0 32px;
    }
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
    .simplybook-button:hover {
        transform: none;
    }
    
    .simplybook-button:active {
        transform: scale(0.98);
    }
    
    .nav-links a:hover {
        color: #0071e3;
    }
    
    button:hover {
        transform: none;
    }
}

/* iPhone and mobile centering fixes */
@media (max-width: 768px) {
    body {
        overflow-x: hidden;
        width: 100%;
    }
    
    .navbar, 
    .hero,
    .story,
    .guide,
    .strategy-session,
    .footer {
        width: 100%;
        max-width: 100vw;
        overflow-x: hidden;
    }
    
    .nav-container,
    .hero-container,
    .container {
        width: 100%;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
    
    /* Ensure all content is centered */
    * {
        box-sizing: border-box;
    }
    
    /* Fix any elements that might overflow */
    img {
        max-width: 100%;
        height: auto;
    }
    
    /* Center text content on mobile */
    .hero-content,
    .session-info,
    .guide-text {
        text-align: center;
        width: 100%;
    }
    
    .hero-content h1,
    .hero-subtitle,
    .lead-capture {
        margin-left: auto;
        margin-right: auto;
    }
}

/* Specific iPhone fixes */
@media (max-width: 480px) {
    html {
        overflow-x: hidden;
        width: 100%;
    }
    
    body {
        position: relative;
        overflow-x: hidden;
        width: 100%;
        min-width: 100%;
    }
    
    /* Prevent horizontal scroll */
    .nav-container {
        padding-left: 16px;
        padding-right: 16px;
    }
    
    .container {
        padding-left: 16px;
        padding-right: 16px;
    }
    
    /* Center logo perfectly */
    .logo-container {
        justify-content: center;
        text-align: center;
    }
}
/* Comprehensive Mobile Layout Fixes */

/* Reset and prevent horizontal scroll */
html, body {
    max-width: 100vw;
    overflow-x: hidden;
}

/* Mobile-first responsive adjustments */
@media (max-width: 768px) {
    /* Ensure all sections fit within viewport */
    .navbar,
    .hero,
    .story,
    .guide,
    .strategy-session,
    footer {
        max-width: 100vw;
        overflow-x: hidden;
    }
    
    /* Fix logo and navigation layout */
    .nav-container {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        padding: 0 16px;
        height: 64px;
    }
    
    .logo-container {
        flex-direction: row;
        align-items: center;
        gap: 10px;
    }
    
    .logo-profile-pic {
        width: 40px !important;
        height: 40px !important;
        flex-shrink: 0;
    }
    
    .logo-text {
        display: flex;
        flex-direction: column;
    }
    
    .logo-brand-name {
        font-size: 14px;
        line-height: 1.2;
        white-space: nowrap;
    }
    
    .logo-subtitle {
        font-size: 10px;
        line-height: 1.2;
        white-space: nowrap;
    }
    
    /* Hide navigation links on mobile */
    .nav-links {
        display: none;
    }
    
    /* Hero section mobile optimization */
    .hero {
        padding: 100px 0 60px;
        min-height: auto;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 0 16px;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 32px !important;
        line-height: 1.2;
        margin-bottom: 16px;
    }
    
    .hero-subtitle {
        font-size: 16px !important;
        margin-bottom: 32px;
    }
    
    /* Lead capture form mobile */
    .lead-capture {
        padding: 24px 16px;
        margin: 0;
    }
    
    .lead-capture h3 {
        font-size: 18px;
        margin-bottom: 16px;
    }
    
    .email-form .form-group {
        flex-direction: column;
        gap: 12px;
    }
    
    .email-form input[type="email"] {
        width: 100%;
        font-size: 16px;
        padding: 14px 16px;
    }
    
    .email-form button {
        width: 100%;
        padding: 14px;
        font-size: 16px;
    }
    
    /* Transformation stats mobile */
    .transformation-stats {
        padding: 20px 16px;
        gap: 16px;
    }
    
    .stat {
        padding: 16px 12px;
    }
    
    .stat .number {
        font-size: 28px;
    }
    
    .stat .label {
        font-size: 12px;
    }
    
    /* Section spacing */
    section {
        padding: 60px 0;
    }
    
    .container {
        padding: 0 16px;
        max-width: 100%;
    }
    
    /* Section headers */
    .section-header h2 {
        font-size: 28px !important;
        margin-bottom: 16px;
    }
    
    .section-header p {
        font-size: 14px;
    }
    
    /* Guide section mobile */
    .guide-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .guide-features {
        gap: 24px;
    }
    
    .feature {
        padding: 20px;
    }
    
    .feature h4 {
        font-size: 16px;
        margin-bottom: 12px;
    }
    
    .feature p {
        font-size: 14px;
        line-height: 1.6;
    }
    
    /* Booking section mobile */
    .session-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .session-info h2 {
        font-size: 28px !important;
        margin-bottom: 16px;
    }
    
    .session-info p {
        font-size: 15px;
    }
    
    .price-box .price {
        font-size: 48px !important;
    }
    
    .booking-form {
        padding: 24px 16px;
    }
    
    .booking-form h3 {
        font-size: 20px;
        margin-bottom: 16px;
    }
    
    .simplybook-button {
        width: 100%;
        padding: 16px 24px;
        font-size: 16px;
    }
    
    /* Timeline mobile */
    .timeline {
        padding-left: 16px;
    }
    
    .timeline-item {
        padding-left: 20px;
        gap: 16px;
    }
    
    .timeline-marker {
        width: 14px;
        height: 14px;
        left: -24px;
    }
    
    .timeline-content h3 {
        font-size: 18px;
        margin-bottom: 8px;
    }
    
    .timeline-content p {
        font-size: 14px;
    }
    
    /* Footer mobile */
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 12px;
    }
}

/* Extra small phones */
@media (max-width: 480px) {
    .logo-profile-pic {
        width: 36px !important;
        height: 36px !important;
    }
    
    .logo-brand-name {
        font-size: 13px;
    }
    
    .logo-subtitle {
        font-size: 9px;
    }
    
    .hero-content h1 {
        font-size: 26px !important;
    }
    
    .hero-subtitle {
        font-size: 14px !important;
    }
    
    .section-header h2 {
        font-size: 24px !important;
    }
}

/* Mobile Navigation and Layout Fixes - Override Previous Styles */
@media (max-width: 768px) {
    /* Fix navigation bar spacing */
    .navbar {
        height: auto;
        padding: 12px 0;
    }
    
    .nav-container {
        height: auto !important;
        padding: 8px 16px !important;
        flex-wrap: nowrap;
        align-items: center;
        justify-content: space-between;
    }
    
    /* Simplify logo - just show profile pic and main brand name */
    .logo-link {
        display: flex;
        align-items: center;
        gap: 8px;
    }
    
    .logo-container {
        display: flex;
        align-items: center;
        gap: 8px !important;
        flex-wrap: nowrap;
    }
    
    .logo-profile-pic {
        width: 36px !important;
        height: 36px !important;
        min-width: 36px !important;
        max-width: 36px !important;
        min-height: 36px !important;
        max-height: 36px !important;
        flex-shrink: 0;
    }
    
    .logo-text {
        display: flex;
        flex-direction: column;
        gap: 2px;
        min-width: 0;
    }
    
    .logo-brand-name {
        font-size: 12px !important;
        line-height: 1.2;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .logo-subtitle {
        font-size: 9px !important;
        line-height: 1.1;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        color: #86868b;
    }
    
    /* Hide nav links completely on mobile */
    .nav-links {
        display: none !important;
    }
    
    /* Fix hero background centering */
    .hero {
        background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
        background-size: cover;
        background-position: center center;
        background-attachment: fixed;
    }
    
    /* Ensure hero content is centered */
    .hero-container {
        text-align: center;
        align-items: center;
        justify-content: center;
    }
    
    .hero-content {
        width: 100%;
        max-width: 100%;
    }
}

/* Extra small mobile fixes */
@media (max-width: 480px) {
    .navbar {
        padding: 10px 0;
    }
    
    .nav-container {
        padding: 6px 12px !important;
    }
    
    .logo-profile-pic {
        width: 32px !important;
        height: 32px !important;
        min-width: 32px !important;
        max-width: 32px !important;
        min-height: 32px !important;
        max-height: 32px !important;
    }
    
    .logo-brand-name {
        font-size: 11px !important;
    }
    
    .logo-subtitle {
        font-size: 8px !important;
    }
}

/* Chrome Mobile Specific Fixes */
@media (max-width: 768px) {
    /* Force proper text rendering in Chrome */
    * {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        text-rendering: optimizeLegibility;
    }
    
    /* Fix Chrome's aggressive scaling */
    html {
        -webkit-text-size-adjust: 100%;
        text-size-adjust: 100%;
    }
    
    /* Ensure proper box sizing in Chrome */
    *, *::before, *::after {
        box-sizing: border-box;
        -webkit-box-sizing: border-box;
    }
    
    /* Fix Chrome navbar rendering */
    .navbar {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        will-change: auto;
    }
    
    .nav-container {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        max-width: 100%;
    }
    
    /* Force Chrome to respect image sizing */
    .logo-profile-pic {
        display: block;
        object-fit: cover;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
    
    /* Fix Chrome gradient background */
    .hero {
        -webkit-background-size: cover;
        background-size: cover;
        background-attachment: scroll; /* Chrome handles fixed poorly on mobile */
    }
    
    /* Prevent Chrome from enlarging small text */
    .logo-brand-name,
    .logo-subtitle {
        -webkit-text-size-adjust: none;
        text-size-adjust: none;
    }
    
    /* Fix Chrome button rendering */
    button, .simplybook-button {
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        -webkit-tap-highlight-color: transparent;
    }
    
    /* Fix Chrome input rendering */
    input[type="email"],
    input[type="text"] {
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        border-radius: 8px;
    }
    
    /* Ensure content doesn't overflow in Chrome */
    body, html {
        width: 100%;
        max-width: 100vw;
        overflow-x: hidden;
        position: relative;
    }
    
    /* Fix Chrome flexbox issues */
    .hero-container,
    .session-content,
    .guide-content {
        display: block;
        width: 100%;
    }
    
    /* Chrome needs explicit width constraints */
    .container,
    .nav-container,
    .hero-container {
        width: calc(100% - 32px);
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
}

/* FAQ Page Styles */
.faq-hero {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    text-align: center;
}

.faq-hero .section-header h1 {
    font-size: 48px;
    font-weight: 700;
    color: #1d1d1f;
    margin-bottom: 16px;
}

.faq-hero .section-header p {
    font-size: 20px;
    color: #6e6e73;
}

.faq-section {
    padding: 80px 0;
    background: #ffffff;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: #f5f7fa;
    border-radius: 16px;
    padding: 32px;
    margin-bottom: 24px;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.faq-item:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.faq-question {
    font-size: 22px;
    font-weight: 600;
    color: #1d1d1f;
    margin-bottom: 16px;
    line-height: 1.4;
}

.faq-answer {
    font-size: 16px;
    color: #6e6e73;
    line-height: 1.7;
    margin: 0;
}

.faq-cta {
    max-width: 700px;
    margin: 80px auto 0;
    text-align: center;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf2 100%);
    padding: 60px 40px;
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.faq-cta h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1d1d1f;
    margin-bottom: 16px;
}

.faq-cta p {
    font-size: 18px;
    color: #6e6e73;
    margin-bottom: 32px;
}

.cta-button {
    display: inline-block;
    padding: 18px 48px;
    background: linear-gradient(135deg, #0071e3 0%, #005bb5 100%);
    color: #ffffff;
    text-decoration: none;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(0, 113, 227, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 113, 227, 0.4);
}

/* Mobile FAQ Styles */
@media (max-width: 768px) {
    .faq-hero {
        padding: 100px 0 60px;
    }
    
    .faq-hero .section-header h1 {
        font-size: 32px;
    }
    
    .faq-hero .section-header p {
        font-size: 16px;
    }
    
    .faq-section {
        padding: 60px 0;
    }
    
    .faq-item {
        padding: 24px 20px;
        margin-bottom: 16px;
    }
    
    .faq-question {
        font-size: 18px;
        margin-bottom: 12px;
    }
    
    .faq-answer {
        font-size: 15px;
    }
    
    .faq-cta {
        padding: 40px 24px;
        margin-top: 60px;
    }
    
    .faq-cta h2 {
        font-size: 28px;
    }
    
    .faq-cta p {
        font-size: 16px;
    }
    
    .cta-button {
        padding: 16px 32px;
        font-size: 16px;
        width: 100%;
    }
}
