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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #343a40;
    background-color: #fff;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3rem;
    font-weight: 700;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    text-align: center;
    transition: background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background-color: #dc3545;
    color: white;
}

.btn-primary:hover {
    background-color: #c82333;
    box-shadow: 0 4px 12px rgba(220, 53, 69, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: #dc3545;
    border: 2px solid #dc3545;
}

.btn-secondary:hover {
    background-color: #dc3545;
    color: white;
}

.btn-refer {
    border-radius: 24px;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(220, 53, 69, 0.2);
    transition: all 0.2s ease;
    text-transform: none;
    letter-spacing: 0;
}

.btn-refer:hover {
    transform: scale(1.01);
    box-shadow: 0 4px 12px rgba(220, 53, 69, 0.3);
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.2rem;
}

/* Header */
.header {
    background: linear-gradient(135deg, #001F3F 0%, #0a2a52 100%);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: 80px;
    min-height: 80px;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    gap: 1rem;
    height: 80px;
    min-height: 80px;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.logo-icon svg {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.logo h1 {
    color: #dc3545;
    font-size: 1.8rem;
    margin: 0;
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.logo a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    display: block;
}

.logo a:hover {
    opacity: 0.9;
}

.logo a:hover .logo-icon {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin-left: auto;
    margin-right: 0.5rem;
}

.nav-link {
    text-decoration: none;
    color: white;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #dc3545;
}

.nav-item {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: white;
    min-width: 200px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    border-radius: 6px;
    padding: 1rem 0;
    top: 100%;
    left: 0;
    z-index: 1001;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Remove the CSS hover behavior since we're handling it with JavaScript */
/* .nav-item:hover .dropdown-content {
    display: block;
} */

.dropdown-content a {
    color: #343a40;
    padding: 0.5rem 1rem;
    text-decoration: none;
    display: block;
    transition: background-color 0.3s ease;
}

.dropdown-content a:hover {
    background-color: #f8fafc;
    color: #dc3545;
}

/* Program Dropdown - Simple List Styles */
.program-dropdown {
    background: #ffffff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border-radius: 6px;
    width: auto;
    max-width: 240px;
    padding: 0;
    list-style: none;
    margin: 0;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1001;
}

.program-dropdown li {
    border-bottom: 1px solid #E5E7EB;
    margin: 0;
}

.program-dropdown li:last-child {
    border-bottom: none;
}

.program-dropdown li a {
    display: block;
    padding: 12px 18px;
    color: #374151;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    border: none;
    background: none;
}

.program-dropdown li a:hover,
.program-dropdown li a:focus {
    background-color: #F9FAFB;
    color: #DC2626;
}

/* Other dropdown styles remain the same */
.dropdown-content:not(.program-dropdown) {
    min-width: 220px;
    padding: 0.75rem 0;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.header-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
    height: 100%;
}

.header-buttons .btn {
    transition: background-color 0.3s ease, color 0.3s ease;
    padding: 12px 24px !important;
    font-size: 1rem !important;
    border-radius: 6px !important;
    font-weight: 500 !important;
    text-transform: none !important;
    letter-spacing: normal !important;
    width: auto !important;
    height: auto !important;
    min-height: auto !important;
    line-height: normal !important;
    box-shadow: none !important;
    transform: none !important;
}

.header-buttons .btn:hover,
.header-buttons .btn:focus,
.header-buttons .btn:active {
    background-color: #c82333;
    color: white;
    transform: none !important;
    box-shadow: none !important;
}

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

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 3px 0;
    transition: 0.3s;
    display: block;
}

/* Hero Section */
.hero {
    position: relative;
    color: white;
    padding: 140px 0 100px;
    min-height: 80vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #001F3F;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('picture2.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 31, 63, 0.7);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
    width: 100%;
}

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

.hero-content h1 {
    font-size: 2.8rem;
    margin-bottom: 2rem;
    font-weight: 700;
    line-height: 1.1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content p {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    line-height: 1.5;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-price {
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-price .price {
    font-size: 3rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1;
}

.hero-price .period {
    font-size: 1.4rem;
    opacity: 0.9;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    line-height: 1;
    margin-left: 0.2rem;
}

.hero-content .btn {
    display: inline-block;
    padding: 1rem 1rem;
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
}

.hero-features .feature {
    text-align: center;
}

.hero-features h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

/* Why Choose Us Section */
.why-choose-section {
    padding: 60px 20px 0;
    background-color: #F5F5DC;
}

.why-choose-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.why-choose-text {
    text-align: center;
    margin-bottom: 4rem;
}

.why-choose-text h2 {
    color: #dc3545;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.why-choose-text p {
    color: #64748b;
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 1200px;
    margin: 0 auto;
}

.why-choose-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.feature-box {
    background: #F5F5DC;
    padding: 2.5rem 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px white;
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    border: 3px solid #001F3F;
}



.feature-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: #dc3545;
}

.feature-box h3 {
    color: #dc3545;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    margin-top: 0;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.feature-box:hover h3 {
    color: #dc3545;
}

.feature-box p {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
    transition: color 0.3s ease;
}

.feature-box:hover p {
    color: #475569;
}

@media (max-width: 1024px) {
    .why-choose-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .feature-box {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 768px) {
    .why-choose-section {
        padding: 60px 0;
    }

    .why-choose-text {
        margin-bottom: 3rem;
    }

    .why-choose-text h2 {
        font-size: 2rem;
    }

    .why-choose-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .feature-box {
        padding: 2rem 1.5rem;
    }

    .feature-box h3 {
        font-size: 1.1rem;
    }

    .feature-box p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .why-choose-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .feature-box {
        padding: 1.5rem;
    }
}

.why-choose-features-old {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.why-choose-features .feature-card {
    background: rgba(255, 255, 255, 0.7);
    padding: 3rem 2rem;
    border-radius: 20px;
    border: 1px solid rgba(220, 153, 56, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 220px;
    position: relative;
    backdrop-filter: blur(10px);
}

.why-choose-features .feature-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(220, 153, 56, 0.3);
    box-shadow:
        0 20px 40px rgba(220, 153, 56, 0.1),
        0 8px 16px rgba(0, 0, 0, 0.1);
}

.why-choose-features .feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #dc9938 0%, #b8821f 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    transition: all 0.3s ease;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(220, 153, 56, 0.2);
}

.why-choose-features .feature-card:hover .feature-icon {
    transform: scale(1.05);
    box-shadow: 0 12px 30px rgba(220, 153, 56, 0.3);
}

.why-choose-features .feature-icon svg {
    width: 36px;
    height: 36px;
    transition: transform 0.3s ease;
}

.why-choose-features .feature-card:hover .feature-icon svg {
    transform: scale(1.1);
}

.why-choose-features .feature-card h3 {
    color: #001F3F;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0;
    line-height: 1.3;
    text-align: center;
    letter-spacing: -0.01em;
    transition: color 0.3s ease;
}

.why-choose-features .feature-card:hover h3 {
    color: #dc9938;
}

@media (max-width: 968px) {
    .why-choose-content {
        grid-template-columns: 1fr;
        gap: 6rem;
        text-align: center;
    }

    .why-choose-text {
        padding-right: 0;
    }

    .why-choose-text p {
        max-width: 720px;
        margin: 0 auto;
        text-align: center;
    }

    .why-choose-features {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .why-choose-section {
        padding: 100px 0;
    }

    .why-choose-content {
        gap: 5rem;
    }

    .why-choose-features {
        grid-template-columns: 1fr;
        gap: 3rem;
        max-width: 420px;
        margin: 0 auto;
    }

    .why-choose-text h2 {
        font-size: 2.8rem;
        line-height: 1.2;
        letter-spacing: -0.015em;
    }

    .why-choose-text p {
        font-size: 1.15rem;
        line-height: 1.6;
        max-width: 680px;
        letter-spacing: 0.003em;
    }

    .why-choose-features .feature-card {
        padding: 3rem 2rem 2.5rem;
        min-height: 350px;
        border-radius: 24px;
    }

    .why-choose-features .feature-icon {
        width: 80px;
        height: 80px;
        margin-bottom: 2.25rem;
    }

    .why-choose-features .feature-icon svg {
        width: 36px;
        height: 36px;
    }

    .why-choose-features .feature-card h3 {
        font-size: 1.35rem;
        margin-bottom: 1.2rem;
        letter-spacing: -0.008em;
    }

    .why-choose-features .feature-card p {
        font-size: 0.95rem;
        line-height: 1.6;
        letter-spacing: 0.003em;
    }
}

@media (max-width: 480px) {
    .why-choose-section {
        padding: 80px 0;
    }

    .why-choose-text h2 {
        font-size: 2.4rem;
        line-height: 1.25;
        letter-spacing: -0.018em;
    }

    .why-choose-text p {
        font-size: 1.1rem;
        line-height: 1.6;
        max-width: 100%;
        letter-spacing: 0.002em;
    }

    .why-choose-features .feature-card {
        padding: 2.5rem 1.5rem 2rem;
        min-height: 320px;
        border-radius: 20px;
    }

    .why-choose-features .feature-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 2rem;
    }

    .why-choose-features .feature-icon svg {
        width: 32px;
        height: 32px;
    }

    .why-choose-features .feature-card h3 {
        font-size: 1.25rem;
        margin-bottom: 1.2rem;
        letter-spacing: -0.008em;
    }

    .why-choose-features .feature-card p {
        font-size: 0.9rem;
        line-height: 1.6;
        letter-spacing: 0.003em;
    }
}

/* Features Section */
.features-section {
    padding: 80px 0;
    background-color: white;
}

.features-grid-icons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-item {
    text-align: center;
    padding: 3rem 2rem;
    background: #f8fafc;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.feature-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    background: white;
}

.feature-icon {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    border-radius: 50%;
    align-items: center;
    margin: 0 auto 2rem;
}

.feature-icon svg {
    width: 40px;
    height: 40px;
    stroke: white;
}

.feature-item h3 {
    font-size: 1.5rem;
    color: #1e293b;
    margin-bottom: 1rem;
    font-weight: 700;
}

.feature-item p {
    font-size: 1.1rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Discover Section */
.discover {
    padding: 80px 0;
    background-color: #f8fafc;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    color: #343a40;
    margin-bottom: 0.5rem;
}

.section-header p {
    color: #6c757d;
    font-size: 1.1rem;
}

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

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

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

.feature-card h3 {
    color: #dc3545;
    margin-bottom: 1rem;
}

/* Slider Styles */
.slider-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.slider-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    min-height: 300px;
}

.slider-slide {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    width: 100%;
}

.slider-slide.active {
    display: block;
    opacity: 1;
}

.slider-slide .why-choose-content {
    width: 100%;
    padding: 2rem 0;
}

.slider-slide .why-choose-text {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.slider-slide .why-choose-text h2 {
    color: #dc3545;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.slider-slide .why-choose-text h4 {
    color: #64748b;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.slider-slide .why-choose-text p {
    color: #64748b;
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 900px;
    margin: 0 auto;
}

.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.slider-arrow {
    background: #dc3545;
    color: white;
    border: none;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.slider-arrow:hover {
    background: #c82333;
    transform: scale(1.05);
}

.slider-arrow:disabled {
    background: #6c757d;
    cursor: not-allowed;
    transform: none;
}

.slider-dots {
    display: flex;
    gap: 0.5rem;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: #cbd5e1;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background: #dc3545;
    transform: scale(1.2);
}

.slider-dot:hover {
    background: #6c757d;
}

/* How Our Program Works Section */
.how-program-works {
    padding: 60px 0;
    background: #001F3F;
    color: white;
}

.how-program-works h2 {
    text-align: center;
    color: white;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
}

.program-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.step-item {
    text-align: center;
    color: white;
}

.step-circle {
    width: 60px;
    height: 60px;
    background: #dc3545;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
    box-shadow: 0 4px 15px rgba(220, 153, 56, 0.3);
}

.step-item h3 {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.step-item p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .program-steps {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .how-program-works h2 {
        font-size: 2rem;
    }
}

/* Members Section */
.members-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 50%, #f1f5f9 100%);
    position: relative;
    overflow: hidden;
}

.members-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(220, 53, 69, 0.02) 0%, transparent 50%);
    animation: float 20s ease-in-out infinite;
    pointer-events: none;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(-10px, -10px) rotate(90deg); }
    50% { transform: translate(10px, -20px) rotate(180deg); }
    75% { transform: translate(-5px, 10px) rotate(270deg); }
}

.members-section .container {
    position: relative;
    z-index: 2;
}

.members-section .section-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.members-section .section-header::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    border-radius: 2px;
}

.members-section .section-header h2 {
    color: #1e293b;
    font-size: 3.2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    position: relative;
}

.members-section .section-header p {
    color: #dc3545;
    font-size: 1.4rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 0;
    position: relative;
}

.members-services {
    max-width: 1100px;
    margin: 0 auto 4rem;
    background: linear-gradient(145deg, #ffffff 0%, #fafbfc 100%);
    border-radius: 24px;
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.08),
        0 0 0 1px rgba(220, 53, 69, 0.05);
    overflow: hidden;
    position: relative;
}

.members-services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
}

.service-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 3rem 3rem;
    border-bottom: 1px solid rgba(220, 53, 69, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    background: linear-gradient(135deg, transparent 0%, rgba(220, 53, 69, 0.005) 100%);
}

.service-row:last-child {
    border-bottom: none;
}

.service-row::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 0;
    background: linear-gradient(135deg, rgba(220, 53, 69, 0.1) 0%, rgba(200, 35, 51, 0.05) 100%);
    transition: width 0.3s ease;
    z-index: -1;
}

.service-row:hover::before {
    width: 100%;
}

.service-row:hover {
    transform: translateX(8px);
    box-shadow: inset 6px 0 0 rgba(220, 53, 69, 0.3);
}

.service-info {
    display: flex;
    align-items: center;
    gap: 4rem;
    flex: 1;
    padding-left: 1.5rem;
}

.service-check {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    border-radius: 12px;
    box-shadow:
        0 4px 12px rgba(220, 53, 69, 0.25),
        0 2px 4px rgba(220, 53, 69, 0.1);
    transition: all 0.3s ease;
}

.service-row:hover .service-check {
    transform: scale(1.1) rotate(5deg);
    box-shadow:
        0 6px 20px rgba(220, 53, 69, 0.35),
        0 2px 8px rgba(220, 53, 69, 0.15);
}

.service-check svg {
    stroke: white;
    stroke-width: 3;
    width: 18px;
    height: 18px;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1));
}

.service-name {
    font-weight: 700;
    color: #1e293b;
    font-size: 1.35rem;
    letter-spacing: -0.015em;
    line-height: 1.2;
    transition: color 0.3s ease;
}

.service-row:hover .service-name {
    color: #dc3545;
}

.service-description {
    color: #64748b;
    font-size: 1.05rem;
    font-weight: 500;
    text-align: right;
    line-height: 1.5;
    flex-shrink: 0;
    min-width: 240px;
    padding-left: 2rem;
    padding-right: 2rem;
    transition: all 0.3s ease;
}

.service-row:hover .service-description {
    color: #475569;
    transform: translateX(-5px);
}

.members-cta {
    text-align: center;
    padding: 0.5rem 0;
}

.members-cta .btn {
    padding: 18px 40px;
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-radius: 16px;
    background: linear-gradient(135deg, #dc3545 0%, #c82333 50%, #b71c2c 100%);
    color: white;
    border: none;
    box-shadow:
        0 8px 25px rgba(220, 53, 69, 0.35),
        0 4px 12px rgba(220, 53, 69, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: inline-block;
}

.members-cta .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.members-cta .btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: all 0.4s ease;
}

.members-cta .btn:hover::before {
    left: 100%;
}

.members-cta .btn:hover::after {
    width: 300px;
    height: 300px;
}

.members-cta .btn:hover {
    transform: translateY(-4px);
    box-shadow:
        0 15px 35px rgba(220, 53, 69, 0.4),
        0 8px 20px rgba(220, 53, 69, 0.25),
        inset 0 2px 0 rgba(255, 255, 255, 0.15);
}

.members-cta .btn:active {
    transform: translateY(-2px);
}

/* CTA Section */
.cta {
    padding: 60px 0;
    background-color: #F8F8E8;
    text-align: center;
}

.cta-content-full {
    width: 100%;
    padding: 0 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.cta-content-full h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1e293b;
    font-weight: 800;
    letter-spacing: -0.025em;
    line-height: 1.2;
    text-align: center;
}

.cta-full-text {
    font-size: 1.3rem;
    line-height: 1.6;
    color: #64748b;
    margin: 0 auto;
    font-weight: 500;
    max-width: 80%;
    padding: 0 1rem;
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1e293b;
    font-weight: 800;
    letter-spacing: -0.025em;
    line-height: 1.2;
    text-align: center;
}

.cta-content p {
    font-size: 1.3rem;
    line-height: 1.6;
    color: #64748b;
    margin-bottom: 2.5rem;
    font-weight: 500;
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.cta-content .btn {
    font-size: 1.2rem;
    padding: 1.25rem 2.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 8px 20px rgba(220, 53, 69, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cta-content .btn::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;
}

.cta-content .btn:hover::before {
    left: 100%;
}

.why-choose-section {
    padding: 80px 0 40px 0;
    background-color: #F5F5DC;
}

.cta-content .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(220, 53, 69, 0.4);
}

.cta-guarantee {
    margin-top: 2rem;
    font-size: 1rem;
    font-weight: 600;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.testimonial {
    margin: 2rem 0;
    padding: 2rem;
    background-color: #f8fafc;
    border-radius: 12px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.testimonial p {
    font-style: italic;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.author {
    color: #6c757d;
    font-weight: 500;
}

/* Pricing Section */
.pricing {
    padding: 80px 0;
    background-color: #F5F5DC;
}

.pricing h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #343a40;
    font-size: 2.5rem;
    font-weight: 700;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card {
    background: #F8F8E8;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    border: 2px solid #e0e7ff;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.pricing-header {
    text-align: center;
    margin-bottom: 1rem;
}

.pricing-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
    text-align: center;
}

.price {
    text-align: center;
    margin-bottom: 0.5rem;
}

.price .amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: #dc3545;
}

.price .period {
    font-size: 1rem;
    color: #6b7280;
    margin-left: 0.25rem;
}

.couples-price {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 0.875rem;
    color: #6b7280;
}

.couples-price strong {
    font-weight: 500;
}

.couples-price span {
    color: #6b7280;
    font-weight: 500;
}

.pricing-features {
    margin-bottom: 1rem;
    flex-grow: 1;
}

.pricing-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-features li {
    padding: 0.75rem 0;
    color: #4b5563;
    position: relative;
    padding-left: 2rem;
    font-size: 0.95rem;
    line-height: 1.5;
}

.pricing-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
    font-size: 1.1rem;
}

.pricing-card .btn {
    width: 100%;
    text-align: center;
    padding: 1rem;
    font-size: 1rem;
    font-weight: 600;
    background: #dc3545;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.pricing-card .btn:hover {
    background: #c82333;
}

.pricing-card.popular {
    position: relative;
    border: 3px solid #dc3545;
    transform: scale(1.05);
}

.pricing-card.popular::before {
    content: "Most Popular";
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #dc3545;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Services Section */
.services {
    padding: 80px 0;
    background-color: white;
}

.services h2 {
    text-align: center;
    margin-bottom: 1rem;
    color: #343a40;
}

.services .subtitle {
    text-align: center;
    color: #6c757d;
    margin-bottom: 3rem;
}

.services-table {
    max-width: 800px;
    margin: 0 auto 3rem;
}

.service-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid #e2e8f0;
}

.service-row:last-child {
    border-bottom: none;
}

.service-name {
    font-weight: 600;
    color: #343a40;
}

.service-desc {
    color: #6c757d;
}

.services .btn {
    display: block;
    margin: 0 auto;
    text-align: center;
}

/* Trust Section */
.trust {
    padding: 80px 0;
    background-color: #f8fafc;
    text-align: center;
}

.trust h2 {
    color: #343a40;
    margin-bottom: 1rem;
}

.trust p {
    color: #6c757d;
    margin-bottom: 2rem;
    font-size: 1.2rem;
}

/* Membership Section */
.membership {
    padding: 80px 0;
    background-color: white;
}

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

.membership-content {
    text-align: left;
}

.membership-content h2 {
    color: #343a40;
    margin-bottom: 1rem;
    font-size: 2.5rem;
    font-weight: 700;
}

.membership-content p {
    color: #64748b;
    margin-bottom: 2rem;
    font-size: 1.2rem;
    line-height: 1.6;
}

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

.membership-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.membership-image img:hover {
    transform: translateY(-5px);
}

/* Ready Section */
.ready {
    padding: 80px 0;
    background-color: #dc3545;
    color: white;
    text-align: center;
}

.ready h2 {
    margin-bottom: 1rem;
}

.ready p {
    margin-bottom: 2rem;
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Learn Section */
.learn {
    padding: 80px 0;
    background-color: #f8fafc;
}

.learn h2 {
    text-align: center;
    margin-bottom: 1rem;
    color: #343a40;
}

.learn > .container > p {
    text-align: center;
    color: #6c757d;
    margin-bottom: 3rem;
    font-size: 1.2rem;
}

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

.learn-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

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

.learn-card h3 {
    color: #dc3545;
    margin-bottom: 1rem;
}

.learn-card p {
    color: #64748b;
}

/* Guarantee Section */
.guarantee {
    padding: 80px 0;
    background-color: #F8F8E8;
    text-align: center;
}

.guarantee h2 {
    color: #343a40;
    margin-bottom: 1rem;
}

.guarantee > .container > p {
    color: #6c757d;
    margin-bottom: 2rem;
    font-size: 1.2rem;
}

.guarantee-cta {
    margin-top: 2rem;
}

.guarantee-cta p {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #001F3F 0%, #0a2a52 100%);
    color: white;
    padding: 60px 0 20px;
    position: relative;
}

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

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section {
    position: relative;
}

.footer-logo h3 {
    color: #dc3545;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: white;
}

.footer-section p {
    color: #ffffff;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.footer-section p a {
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-section p a:hover {
    color: #dc3545;
}

.footer-section h4 {
    color: #dc3545;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    font-weight: 700;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: #dc3545;
    border-radius: 1px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section ul li a {
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    display: inline-block;
    position: relative;
}

.footer-section ul li a::before {
    content: '→';
    opacity: 0;
    margin-right: 0.5rem;
    transition: all 0.3s ease;
    color: #dc3545;
}

.footer-section ul li a:hover {
    color: #dc3545;
    transform: translateX(5px);
}

.footer-section ul li a:hover::before {
    opacity: 1;
}

.footer-social {
    margin-top: 2rem;
}

.footer-social p {
    margin-bottom: 0.8rem;
    font-weight: 600;
    color: #ffffff;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: #ffffff;
    text-decoration: none;
    padding: 0.5rem 1rem;
    background: rgba(220, 53, 69, 0.1);
    border-radius: 6px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    border: 1px solid rgba(220, 53, 69, 0.3);
}

.social-links a:hover {
    background: #dc3545;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(220, 53, 69, 0.3);
}

.contact-info p {
    margin-bottom: 0.8rem;
    color: #ffffff;
    font-size: 0.95rem;
}

.contact-info p a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.contact-info p a:hover {
    color: #dc3545;
}

.contact-info a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.contact-info a:hover {
    color: #dc3545;
}

.footer-guarantee {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(220, 53, 69, 0.1);
    border-radius: 8px;
    border-left: 4px solid #dc3545;
}

.footer-guarantee p {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.footer-guarantee p:first-child {
    color: #dc3545;
    font-weight: 700;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    margin: 0;
    color: #ffffff;
    font-size: 0.9rem;
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

.footer-legal a {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: #dc3545;
}

/* Responsive Footer Styles */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 40px 0 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-section h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .footer-legal {
        justify-content: center;
    }

    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer-legal {
        flex-direction: column;
        gap: 0.5rem;
    }

    .social-links {
        flex-direction: column;
        align-items: center;
    }

    .footer-logo h3 {
        font-size: 1.8rem;
    }
}

/* Chat Widget */
.chat-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    width: 300px;
    z-index: 1000;
    display: none;
}

.chat-widget.show {
    display: block;
}

.chat-header {
    background-color: #dc3545;
    color: white;
    padding: 1rem;
    border-radius: 12px 12px 0 0;
    position: relative;
}

.chat-header h4 {
    margin-bottom: 0.5rem;
}

.chat-header p {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-bottom: 0;
}

.chat-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

.chat-content {
    padding: 1rem;
}

.chat-content p {
    margin-bottom: 1rem;
    color: #64748b;
}

.chat-buttons {
    display: flex;
    gap: 0.5rem;
}

.chat-buttons .btn {
    flex: 1;
    padding: 0.5rem;
    font-size: 0.9rem;
}

/* Contact Popup Styles */
.contact-popup-trigger {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1001;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 8px 25px rgba(220, 53, 69, 0.4),
        0 4px 10px rgba(0, 0, 0, 0.1);
    border: none;
    animation: pulse 2s infinite;
}

.contact-popup-trigger:hover {
    transform: scale(1.1);
    box-shadow: 
        0 12px 35px rgba(220, 53, 69, 0.5),
        0 6px 15px rgba(0, 0, 0, 0.15);
}

@keyframes pulse {
    0% {
        box-shadow: 
            0 8px 25px rgba(220, 53, 69, 0.4),
            0 4px 10px rgba(0, 0, 0, 0.1),
            0 0 0 0 rgba(220, 53, 69, 0.7);
    }
    70% {
        box-shadow: 
            0 8px 25px rgba(220, 53, 69, 0.4),
            0 4px 10px rgba(0, 0, 0, 0.1),
            0 0 0 10px rgba(220, 53, 69, 0);
    }
    100% {
        box-shadow: 
            0 8px 25px rgba(220, 53, 69, 0.4),
            0 4px 10px rgba(0, 0, 0, 0.1),
            0 0 0 0 rgba(220, 53, 69, 0);
    }
}

.contact-popup-trigger svg {
    width: 24px;
    height: 24px;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
}

.contact-popup-overlay {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(8px);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.contact-popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.contact-popup-container {
    width: 100%;
    max-width: 520px;
    max-height: 90vh;
    background: white;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    border-radius: 16px;
    transform: scale(0.9);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(220, 53, 69, 0.1);
}

.contact-popup-overlay.active .contact-popup-container {
    transform: scale(1);
}

.contact-popup-header {
    background: linear-gradient(135deg, #001F3F 0%, #0a2a52 100%);
    color: white;
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    flex-shrink: 0;
}

.contact-popup-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #dc3545 0%, #c82333 100%);
}

.contact-popup-header h3 {
    margin: 0;
    font-size: 1.35rem;
    font-weight: 700;
    color: white;
    letter-spacing: -0.025em;
}

.contact-popup-close {
    width: 36px;
    height: 36px;
    border: 0;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.15);
    color: white;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-popup-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

.contact-popup-content {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 0;
}

.contact-popup-content p {
    margin: 6px 0 18px;
    color: #64748b;
    font-size: 1rem;
    line-height: 1.6;
    text-align: center;
    font-weight: 500;
}

.contact-popup-form {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin: 0;
    flex: 1;
}

.contact-popup-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact-popup-form .form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    color: #334155;
    font-size: 0.9rem;
    letter-spacing: 0.01em;
}

.contact-popup-form input,
.contact-popup-form select,
.contact-popup-form textarea {
    width: 100%;
    max-width: 100%;
    height: 48px;
    padding: 10px 14px;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    background: white;
    font-size: 16px;
    line-height: 1.3;
    outline: none;
    transition: all 0.2s ease;
    font-weight: 500;
}

.contact-popup-form textarea {
    min-height: 110px;
    resize: vertical;
}

.contact-popup-form input:focus,
.contact-popup-form select:focus,
.contact-popup-form textarea:focus {
    border-color: #dc3545;
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.12);
}

.contact-popup-form input[type="email"] {
    padding-right: 40px;
}

.contact-popup-submit {
    width: 100%;
    height: 50px;
    border: 0;
    border-radius: 12px;
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    color: white;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-top: 1rem;
    box-shadow: 0 4px 12px rgba(220, 53, 69, 0.25);
    letter-spacing: 0.025em;
    text-transform: uppercase;
}

.contact-popup-submit:active,
.contact-popup-submit:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 25px rgba(220, 53, 69, 0.35);
    background: linear-gradient(135deg, #c82333 0%, #b71c2c 100%);
}

.contact-popup-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* Mobile adjustments for contact popup */
@media (max-width: 768px) {
    .contact-popup-trigger {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
    }

    .contact-popup-trigger svg {
        width: 22px;
        height: 22px;
    }

    .contact-popup-container {
        width: calc(100vw - 30px);
        max-width: 350px;
        right: 15px;
        max-height: 550px;
        top: 50%;
    }

    .contact-popup-header {
        padding: 1.25rem;
    }

    .contact-popup-header h3 {
        font-size: 1.2rem;
    }

    .contact-popup-content {
        padding: 1.5rem;
    }

    .contact-popup-content p {
        font-size: 0.95rem;
        margin-bottom: 1.25rem;
    }

    .contact-popup-form {
        gap: 1rem;
    }

    .contact-popup-form .form-group input {
        padding: 0.75rem;
        font-size: 0.9rem;
    }

    .contact-popup-submit {
        padding: 0.75rem 1.25rem;
        font-size: 0.9rem;
        margin-top: 0.75rem;
    }
}

/* Responsive Styles for New Pages */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

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

    .header-buttons .btn {
        display: none;
    }

    .header-buttons {
        display: flex;
        gap: 0.5rem;
    }

    .hero {
        min-height: 70vh;
        padding: 120px 0 80px;
    }

    .hero-content h1 {
        font-size: 2.8rem;
    }

    .hero-content p {
        font-size: 1.2rem;
    }

    .hero-price .price {
        font-size: 2.2rem;
    }

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

    .hero-features {
        flex-direction: column;
        gap: 1rem;
    }

    .features-grid-icons {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .feature-item {
        padding: 2rem 1.5rem;
    }

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

    .pricing-card:first-child {
        border-top: none;
    }

    .pricing-card:first-child::before {
        display: none;
    }

    .pricing-header h3 {
        font-size: 1.5rem;
    }

    .price .amount {
        font-size: 2.5rem;
    }

    .couples-price {
        padding: 0.75rem;
    }

    .service-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .chat-widget {
        width: 280px;
        right: 10px;
        bottom: 10px;
    }

    /* Slider responsive styles */
    .slider-container {
        max-width: 100%;
        padding: 0 1rem;
    }

    .slider-controls {
        gap: 1rem;
        margin-top: 1.5rem;
    }

    .slider-arrow {
        width: 40px;
        height: 40px;
    }

    .slider-dot {
        width: 10px;
        height: 10px;
    }

    .membership-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .membership-content {
        text-align: center;
    }

    .membership-content h2 {
        font-size: 2rem;
    }

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

    .members-services {
        margin: 0 1rem 2rem;
        max-width: 100%;
    }

    .service-row {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
        align-items: center;
    }

    .service-info {
        justify-content: center;
        gap: 1.5rem;
        padding-left: 1rem;
    }

    .service-name {
        font-size: 1.1rem;
    }

    .service-description {
        font-size: 0.95rem;
        text-align: center;
        min-width: auto;
        padding-right: 1rem;
    }

    /* Mobile Navigation Styles */
    .mobile-nav-accordion {
        display: none;
    }

    .mobile-nav-item {
        border-bottom: 1px solid #E9EDF3;
    }

    .mobile-nav-trigger {
        width: 100%;
        padding: 12px 16px;
        background: none;
        border: none;
        text-align: left;
        font-size: 1rem;
        font-weight: 500;
        color: #1F2937;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: space-between;
        transition: background-color 0.15s ease;
    }

    .mobile-nav-trigger:hover {
        background-color: #f8fafc;
    }

    .mobile-nav-chevron {
        width: 16px;
        height: 16px;
        transform: rotate(0deg);
        transition: transform 0.15s ease;
    }

    .mobile-nav-trigger[aria-expanded="true"] .mobile-nav-chevron {
        transform: rotate(180deg);
    }

    .mobile-nav-content {
        display: none;
        padding: 8px 0 16px 32px;
        background-color: #f8fafc;
    }

    .mobile-nav-content.show {
        display: block;
    }

    .mobile-nav-content a {
        display: block;
        padding: 8px 0;
        color: #4B5563;
        text-decoration: none;
        font-size: 0.9rem;
        font-weight: 400;
        transition: color 0.15s ease;
    }

    .mobile-nav-content a:hover {
        color: #DC2626;
    }

    /* Mobile dropdown styles */
    .program-dropdown {
        position: static;
        box-shadow: none;
        border: none;
        padding-top: 8px;
        padding-left: 16px;
        max-width: 100%;
        transform: none;
        opacity: 1;
        visibility: visible;
        transition: none;
    }

    .program-dropdown li {
        border-bottom: none;
    }

    .program-dropdown li a {
        padding: 8px 0;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        min-height: 60vh;
        padding: 100px 0 60px;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-content p {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }

    .hero-price .price {
        font-size: 2rem;
    }

    .hero-price .period {
        font-size: 1.1rem;
    }

    .btn-large {
        padding: 14px 28px;
        font-size: 1.1rem;
    }

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

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

/* Animations */
.fadeInUp {
    opacity: 0;
    transform: translateY(30px);
}

.fadeInUp.animate {
    opacity: 1;
    transform: translateY(0);
}

.feature-card,
.pricing-card,
.learn-card {
    animation: fadeInUp 0.6s ease-out;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Focus styles for accessibility */
.btn:focus,
.nav-link:focus {
    outline: 2px solid #dc3545;
    outline-offset: 2px;
}

/* Loading states */
.btn.loading {
    opacity: 0.7;
    pointer-events: none;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.page-header p {
    font-size: 1.3rem;
    opacity: 0.9;
}

/* Process Steps */
.process-steps {
    padding: 80px 0;
    background-color: #f8fafc;
}

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

.step {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    position: relative;
    transition: transform 0.3s ease;
}

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

.step-number {
    width: 50px;
    height: 50px;
    background-color: #dc3545;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.step h3 {
    color: #1e293b;
    margin-bottom: 1rem;
}

.step p {
    color: #64748b;
    margin-bottom: 1rem;
}

.step ul {
    list-style: none;
}

.step ul li {
    padding: 0.25rem 0;
    color: #64748b;
    position: relative;
    padding-left: 1.5rem;
}

.step ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #dc3545;
    font-weight: bold;
}

/* Timeline */
.timeline {
    padding: 80px 0;
    background-color: white;
}

.timeline h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #1e293b;
}

.timeline-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.timeline-item {
    text-align: center;
    padding: 2rem;
    background: #f8fafc;
    border-radius: 12px;
    position: relative;
}

.timeline-date {
    background-color: #dc3545;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    margin-bottom: 1rem;
    display: inline-block;
}

.timeline-item h4 {
    color: #1e293b;
    margin-bottom: 1rem;
}

.timeline-item p {
    color: #64748b;
}

/* Signup Section */
.signup-section {
    padding: 80px 0;
    background-color: #f8fafc;
}

.signup-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.signup-info h2 {
    color: #1e293b;
    margin-bottom: 1rem;
}

.signup-info p {
    color: #64748b;
    margin-bottom: 2rem;
}

.benefits h3 {
    color: #1e293b;
    margin-bottom: 1rem;
}

.benefits ul {
    list-style: none;
}

.benefits ul li {
    padding: 0.5rem 0;
    color: #64748b;
    font-size: 1.1rem;
}

.signup-form {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.contact-form h3 {
    color: #1e293b;
    margin-bottom: 2rem;
    text-align: center;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #1e293b;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e2e8f0;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #dc3545;
}

.form-group label input[type="checkbox"] {
    width: auto;
    margin-right: 0.5rem;
}

.form-group label {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
}

.form-group label a {
    color: #dc3545;
    text-decoration: none;
}

.form-group label a:hover {
    text-decoration: underline;
}

.form-note {
    font-size: 0.875rem;
    color: #64748b;
    text-align: center;
    margin-top: 1rem;
}

/* Process Overview */
.process-overview {
    padding: 80px 0;
    background-color: white;
}

.process-overview h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #1e293b;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.process-item {
    text-align: center;
    padding: 2rem;
    background: #f8fafc;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

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

.process-icon {
    width: 60px;
    height: 60px;
    background-color: #dc3545;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.process-item h3 {
    color: #1e293b;
    margin-bottom: 1rem;
}

.process-item p {
    color: #64748b;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background-color: #f8fafc;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.faq-item h3 {
    color: #1e293b;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.faq-item p {
    color: #64748b;
}

/* Services Overview */
.services-overview {
    padding: 80px 0;
    background-color: white;
}

.services-overview h2 {
    text-align: center;
    margin-bottom: 1rem;
    color: #1e293b;
}

.services-overview > .container > p {
    text-align: center;
    color: #64748b;
    margin-bottom: 3rem;
    font-size: 1.2rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-box {
    background: #f5f5f5;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.service-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.service-icon {
    width: 50px;
    height: 50px;
    background: #4CAF50;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 8px rgba(76, 175, 80, 0.3);
}

.service-box h3 {
    color: #4CAF50;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.service-box p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.service-item {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

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

.service-item h3 {
    color: #dc3545;
    margin-bottom: 1rem;
}

.service-item p {
    color: #64748b;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background-color: #f8fafc;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info h2 {
    color: #1e293b;
    margin-bottom: 1rem;
}

.contact-info p {
    color: #64748b;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.contact-details {
    display: grid;
    gap: 1.5rem;
}

.contact-item {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.contact-item h3 {
    color: #dc3545;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.contact-item p {
    color: #64748b;
    margin-bottom: 0;
}

/* Guarantee Features */
.guarantee-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.guarantee-item {
    text-align: center;
    padding: 2rem;
    background: #F5F5DC;
    border-radius: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.guarantee-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    background: #F8F8E8;
}

.guarantee-item h3 {
    color: #dc3545;
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.guarantee-item:hover h3 {
    color: #b71c2c;
}

.guarantee-item p {
    color: #64748b;
    transition: color 0.3s ease;
}

.guarantee-item:hover p {
    color: #475569;
}

/* Pricing Subtitle */
.pricing-subtitle {
    text-align: center;
    color: #64748b;
    margin-bottom: 4rem;
    font-size: 1.2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* About Content */
.about-content {
    padding: 80px 0 40px;
    background-color: white;
}

.about-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.about-text h2 {
    color: #dc3545;
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.about-text h3 {
    color: #dc3545;
    margin: 2rem 0 1rem 0;
}

.about-text p {
    color: #64748b;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.about-text ul {
    list-style: none;
    margin-left: 0;
}

.about-text ul li {
    padding: 0.5rem 0;
    color: #64748b;
    position: relative;
    padding-left: 1.5rem;
}

.about-text ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #dc3545;
    font-weight: bold;
}

.about-stats {
    display: grid;
    gap: 2rem;
}

.stat-item {
    background: #F5F5DC;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(220, 53, 69, 0.1), transparent);
    transition: left 0.5s ease;
}

.stat-item:hover {
    transform: translateY(-8px) scale(1.02);
    background: #ffffff;
    border-color: #dc3545;
    box-shadow: 0 15px 35px rgba(220, 53, 69, 0.2), 0 5px 15px rgba(0, 0, 0, 0.1);
}

.stat-item:hover::before {
    left: 100%;
}

.stat-item h3 {
    color: #dc3545;
    font-size: 2rem;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.stat-item:hover h3 {
    transform: scale(1.1);
    text-shadow: 0 2px 8px rgba(220, 53, 69, 0.3);
}

.stat-item p {
    color: #64748b;
    margin-bottom: 0;
    transition: color 0.3s ease;
    position: relative;
    z-index: 2;
}

.stat-item:hover p {
    color: #475569;
}

/* Guarantee Hero Section */
.guarantee-hero {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    color: white;
    text-align: center;
    padding: 100px 0;
}

.guarantee-hero .hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: white;
}

.guarantee-hero .hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.guarantee-hero .hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Guarantee Content */
.guarantee-page .guarantee-content {
    padding: 80px 0;
    background-color: #f8fafc;
}

.guarantee-page .guarantee-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.guarantee-page .guarantee-text h2 {
    color: #1e293b;
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
}

.guarantee-page .guarantee-text h3 {
    color: #dc3545;
    margin-bottom: 1rem;
    margin-top: 2rem;
    font-size: 1.5rem;
}

.guarantee-page .guarantee-text p {
    margin-bottom: 1.5rem;
    color: #64748b;
    font-size: 1.1rem;
    line-height: 1.7;
}

.guarantee-page .guarantee-text ul {
    list-style: none;
    margin-bottom: 2rem;
}

.guarantee-page .guarantee-text ul li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
    color: #64748b;
    line-height: 1.6;
    font-size: 1.1rem;
}

.guarantee-page .guarantee-text ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #dc3545;
    font-weight: bold;
    font-size: 1.2rem;
}

.guarantee-page .guarantee-text ul li strong {
    color: #1e293b;
    font-weight: 600;
}

.guarantee-page .guarantee-steps {
    margin: 2rem 0;
}

.guarantee-page .guarantee-steps .step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.guarantee-page .guarantee-steps .step:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.guarantee-page .guarantee-steps .step-number {
    background-color: #dc3545;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.guarantee-page .guarantee-steps .step-content h4 {
    color: #1e293b;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.guarantee-page .guarantee-steps .step-content p {
    color: #64748b;
    margin-bottom: 0;
    line-height: 1.6;
}

.guarantee-page .guarantee-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.guarantee-page .guarantee-card {
    background-color: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    border: 1px solid rgba(37, 99, 235, 0.1);
}

.guarantee-page .guarantee-card h3 {
    color: #1e293b;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.guarantee-page .guarantee-card ul {
    list-style: none;
    margin-bottom: 2rem;
}

.guarantee-page .guarantee-card ul li {
    margin-bottom: 1rem;
    color: #64748b;
    font-size: 1.1rem;
    line-height: 1.6;
}

.guarantee-page .guarantee-card .btn {
    width: 100%;
    margin-top: 1rem;
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.guarantee-page .guarantee-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.guarantee-page .guarantee-stats .stat {
    background-color: white;
    padding: 2rem 1rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.guarantee-page .guarantee-stats .stat:hover {
    transform: translateY(-3px);
}

.guarantee-page .guarantee-stats .stat h4 {
    color: #dc3545;
    font-size: 2rem;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.guarantee-page .guarantee-stats .stat p {
    color: #64748b;
    font-size: 0.9rem;
    margin-bottom: 0;
    font-weight: 500;
}

/* Responsive Styles for signup */
@media (max-width: 768px) {
    .signup-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .service-box {
        padding: 1.5rem;
    }

    .service-box h3 {
        font-size: 1.2rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .guarantee-page .guarantee-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .guarantee-page .guarantee-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .guarantee-hero .hero-content h1 {
        font-size: 2.5rem;
    }

    .guarantee-hero .hero-content p {
        font-size: 1.1rem;
    }

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

    .guarantee-page .guarantee-text h2 {
        font-size: 2rem;
    }

    .guarantee-page .guarantee-text h3 {
        font-size: 1.3rem;
    }

    .guarantee-page .guarantee-steps .step {
        flex-direction: column;
        text-align: center;
    }

    .guarantee-page .guarantee-steps .step-number {
        margin-right: 0;
        margin-bottom: 1rem;
        align-self: center;
    }
}

@media (max-width: 480px) {
    .portal-text h2,
    .guarantee-text h2 {
        font-size: 1.8rem;
    }

    .support-channels h2,
    .values-section h2 {
        font-size: 1.8rem;
    }

    .portal-text ul li,
    .guarantee-text ul li {
        font-size: 0.9rem;
    }

    .about-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .stat-item {
        padding: 1.5rem;
    }

    .stat-item h3 {
        font-size: 1.6rem;
    }

    .stat-item p {
        font-size: 0.9rem;
    }
}

/* How It Works Page Styles */
.how-it-works-hero {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    color: white;
    padding: 120px 0 80px;
}

.how-it-works-hero .hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.how-it-works-hero .hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.how-it-works-hero .hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-buttons .btn {
    margin: 0;
}

/* Detailed Process Section */
.detailed-process {
    padding: 80px 0;
    background-color: #f8fafc;
}

.process-details {
    max-width: 1200px;
    margin: 0 auto;
}

.detail-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

.detail-item.reverse {
    direction: rtl;
}

.detail-item.reverse .detail-content {
    direction: ltr;
}

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

.detail-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.detail-image img:hover {
    transform: translateY(-5px);
}

.detail-content h3 {
    color: #1e293b;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.detail-content p {
    color: #64748b;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.detail-content ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.detail-content ul li {
    padding: 0.5rem 0;
    color: #64748b;
    font-size: 1rem;
    line-height: 1.6;
    position: relative;
    padding-left: 1.5rem;
}

.detail-content ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #dc3545;
    font-weight: bold;
    font-size: 1.1rem;
}

.detail-content ul li strong {
    color: #1e293b;
    font-weight: 600;
}

/* Why Choose Section */
.why-choose {
    padding: 80px 0;
    background-color: white;
}

.why-choose h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #1e293b;
    font-size: 2.5rem;
    font-weight: 700;
}

.why-choose .feature-card {
    text-align: center;
    padding: 2.5rem 2rem;
}

.why-choose .feature-icon {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.why-choose .feature-icon svg {
    width: 48px;
    height: 48px;
}

/* Enhanced Timeline */
.timeline-item ul {
    list-style: none;
    margin-top: 1rem;
}

.timeline-item ul li {
    padding: 0.25rem 0;
    color: #64748b;
    font-size: 0.9rem;
    position: relative;
    padding-left: 1rem;
}

.timeline-item ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #dc3545;
    font-weight: bold;
}

/* Enhanced CTA Section */
.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.cta-buttons .btn {
    margin: 0;
}

/* Responsive Styles for How It Works Page */
@media (max-width: 768px) {
    .how-it-works-hero .hero-content h1 {
        font-size: 2.5rem;
    }

    .how-it-works-hero .hero-content p {
        font-size: 1.1rem;
    }

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

    .detail-item {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 3rem;
    }

    .detail-item.reverse {
        direction: ltr;
    }

    .detail-content h3 {
        font-size: 1.5rem;
    }

    .detail-content p {
        font-size: 1rem;
    }

    .why-choose h2 {
        font-size: 2rem;
    }

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

@media (max-width: 480px) {
    .how-it-works-hero .hero-content h1 {
        font-size: 2rem;
    }

    .detail-content h3 {
        font-size: 1.3rem;
    }

    .why-choose h2 {
        font-size: 1.8rem;
    }
}

/* Support Page Styles */
.support-features {
    padding: 4rem 0;
    background-color: #f8fafc;
}

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

.commitment-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.commitment-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.commitment-icon {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.commitment-card h3 {
    color: #1e293b;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.commitment-card p {
    color: #64748b;
    line-height: 1.6;
}

.client-portal {
    padding: 4rem 0;
    background: linear-gradient(135deg, #343a40 0%, #6c757d 100%);
    color: white;
}

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

.portal-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
}

.portal-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: #e2e8f0;
}

.portal-text ul {
    list-style: none;
    margin-bottom: 2rem;
}

.portal-text ul li {
    padding: 0.5rem 0;
    color: #e2e8f0;
    font-size: 1rem;
    line-height: 1.6;
    position: relative;
    padding-left: 1.5rem;
}

.portal-text ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #dc3545;
    font-weight: bold;
    font-size: 1.2rem;
}

.portal-text ul li strong {
    color: white;
    font-weight: 600;
}

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

.portal-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.portal-image img:hover {
    transform: scale(1.05);
}

.support-channels {
    padding: 4rem 0;
    background-color: #f8fafc;
}

.support-channels h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #1e293b;
    font-size: 2.5rem;
    font-weight: 700;
}

.channels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.channel-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.channel-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.channel-icon {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.channel-card h3 {
    color: #1e293b;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.channel-card p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.channel-card .btn {
    margin: 0;
}

/* Promise Page Styles */
.promise-commitments {
    padding: 4rem 0;
    background-color: #f8fafc;
}

.guarantee-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #343a40 0%, #6c757d 100%);
    color: white;
}

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

/* Specific styles for guarantee.html page */
.guarantee-page .guarantee-content {
    display: block;
    padding: 80px 0;
    background-color: #f8fafc;
}

.guarantee-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
}

.guarantee-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: #e2e8f0;
}

.guarantee-text ul {
    list-style: none;
    margin-bottom: 2rem;
}

.guarantee-text ul li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
    color: #e2e8f0;
    line-height: 1.6;
    font-size: 1.1rem;
}

.guarantee-text ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #dc3545;
    font-weight: bold;
    font-size: 1.2rem;
}

.guarantee-text ul li strong {
    color: white;
    font-weight: 600;
}

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

.guarantee-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.guarantee-image img:hover {
    transform: scale(1.05);
}

.values-section {
    padding: 4rem 0;
    background-color: #f8fafc;
}

.values-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #1e293b;
    font-size: 2.5rem;
    font-weight: 700;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.value-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.value-icon {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.value-card h3 {
    color: #1e293b;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.value-card p {
    color: #64748b;
    line-height: 1.6;
}

/* Responsive Styles for Support and Promise Pages */
@media (max-width: 768px) {
    .portal-content,
    .guarantee-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .portal-text h2,
    .guarantee-text h2 {
        font-size: 2rem;
    }

    .portal-text p,
    .guarantee-text p {
        font-size: 1rem;
    }

    .support-channels h2,
    .values-section h2 {
        font-size: 2rem;
    }

    .channels-grid,
    .values-grid {
        grid-template-columns: 1fr;
    }

    .channel-card,
    .value-card {
        padding: 2rem;
    }

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

@media (max-width: 480px) {
    .portal-text h2,
    .guarantee-text h2 {
        font-size: 1.8rem;
    }

    .support-channels h2,
    .values-section h2 {
        font-size: 1.8rem;
    }

    .portal-text ul li,
    .guarantee-text ul li {
        font-size: 0.9rem;
    }

    .about-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .stat-item {
        padding: 1.5rem;
    }

    .stat-item h3 {
        font-size: 1.6rem;
    }

    .stat-item p {
        font-size: 0.9rem;
    }
}

/* What is Credit Repair Page Styles */
.credit-repair-info {
    padding: 4rem 0;
    background-color: #f8fafc;
}

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

.info-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.info-icon {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.info-card h3 {
    color: #1e293b;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.info-card p {
    color: #64748b;
    line-height: 1.6;
}

.credit-issues {
    padding: 4rem 0;
}

.credit-issues h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #1e293b;
    font-size: 2.5rem;
    font-weight: 700;
}

.issues-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.issue-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.issue-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.issue-card h3 {
    color: #1e293b;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.issue-card p {
    color: #64748b;
    line-height: 1.6;
}

.repair-process {
    padding: 4rem 0;
    background-color: #f8fafc;
}

.repair-process h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #1e293b;
    font-size: 2.5rem;
    font-weight: 700;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.step {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.step h3 {
    color: #1e293b;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.step p {
    color: #64748b;
    line-height: 1.6;
}

/* Education Center Page Styles */
.education-topics {
    padding: 4rem 0;
    background-color: #f8fafc;
}

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

.topic-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.topic-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.topic-icon {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.topic-card h3 {
    color: #1e293b;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.topic-card p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.topic-card ul {
    list-style: none;
    padding: 0;
}

.topic-card ul li {
    padding: 0.5rem 0;
    color: #64748b;
    position: relative;
    padding-left: 1.5rem;
}

.topic-card ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #dc3545;
    font-weight: bold;
}

.financial-literacy {
    padding: 4rem 0;
}

.financial-literacy h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #1e293b;
    font-size: 2.5rem;
    font-weight: 700;
}

.literacy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.literacy-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.literacy-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.literacy-card h3 {
    color: #1e293b;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.literacy-card p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.interactive-tools {
    padding: 4rem 0;
    background-color: #f8fafc;
}

.interactive-tools h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #1e293b;
    font-size: 2.5rem;
    font-weight: 700;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.tool-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tool-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.tool-card h3 {
    color: #1e293b;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.tool-card p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* Free Credit Tips Page Styles */
.credit-tips {
    padding: 4rem 0;
    background-color: #f8fafc;
}

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

.tip-category {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tip-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.tip-category h3 {
    color: #1e293b;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: center;
}

.tips-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.tip-item {
    padding: 1rem;
    background: #f8fafc;
    border-radius: 8px;
    border-left: 4px solid #dc3545;
}

.tip-item h4 {
    color: #1e293b;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.tip-item p {
    color: #64748b;
    line-height: 1.6;
    font-size: 0.95rem;
}

.quick-tips {
    padding: 4rem 0;
}

.quick-tips h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #1e293b;
    font-size: 2.5rem;
    font-weight: 700;
}

.quick-tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.quick-tip {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.quick-tip:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.tip-icon {
    width: 40px;
    height: 40px;
    background: #dc3545;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: bold;
    flex-shrink: 0;
}

.quick-tip h4 {
    color: #1e293b;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.quick-tip p {
    color: #64748b;
    line-height: 1.6;
    font-size: 0.95rem;
}

.credit-mistakes {
    padding: 4rem 0;
    background-color: #f8fafc;
}

.credit-mistakes h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #1e293b;
    font-size: 2.5rem;
    font-weight: 700;
}

.mistakes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.mistake-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mistake-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.mistake-card h3 {
    color: #1e293b;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.mistake-card p {
    color: #64748b;
    line-height: 1.6;
}

/* Login Page Styles */
.login-section {
    padding: 4rem 0;
    background-color: #f8fafc;
}

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

.login-form {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.login-form h2 {
    color: #1e293b;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.login-form > p {
    color: #64748b;
    margin-bottom: 2rem;
}

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

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

.form-group label {
    color: #1e293b;
    font-weight: 600;
    font-size: 0.95rem;
}

.form-group input[type="email"],
.form-group input[type="password"] {
    padding: 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #dc3545;
}

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

.checkbox-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
}

.checkbox-group label {
    margin: 0;
    font-size: 0.9rem;
}

.login-links {
    margin-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.login-links a {
    color: #dc3545;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.login-links a:hover {
    color: #c82333;
}

.login-benefits {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.login-benefits h3 {
    color: #1e293b;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.login-benefits ul {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.login-benefits ul li {
    padding: 0.75rem 0;
    color: #64748b;
    position: relative;
    padding-left: 1.5rem;
}

.login-benefits ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #dc3545;
    font-weight: bold;
}

.support-info {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 2rem;
}

.support-info h4 {
    color: #1e293b;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.support-info p {
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.security-section {
    padding: 4rem 0;
}

.security-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #1e293b;
    font-size: 2.5rem;
    font-weight: 700;
}

.security-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.security-feature {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.security-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.security-icon {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.security-feature h3 {
    color: #1e293b;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.security-feature p {
    color: #64748b;
    line-height: 1.6;
}

/* Privacy Policy Page Styles */
.privacy-content {
    padding: 4rem 0;
    background-color: #f8fafc;
}

.policy-section {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.policy-section h2 {
    color: #1e293b;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.policy-section p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.policy-section ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.policy-section ul li {
    padding: 0.5rem 0;
    color: #64748b;
    position: relative;
    padding-left: 1.5rem;
}

.policy-section ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #dc3545;
    font-weight: bold;
}

.contact-info {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1rem 0;
}

.contact-info p {
    margin: 0.5rem 0;
    color: #64748b;
}

/* Responsive Styles for New Pages */
@media (max-width: 768px) {
    .login-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .login-form {
        padding: 2rem;
    }

    .login-links {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .tips-grid,
    .topics-grid {
        grid-template-columns: 1fr;
    }

    .tip-category {
        padding: 2rem;
    }

    .quick-tips-grid {
        grid-template-columns: 1fr;
    }

    .quick-tip {
        padding: 1.5rem;
    }

    .policy-section {
        padding: 2rem;
        margin: 1rem;
    }

    .policy-section h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .login-form h2 {
        font-size: 1.8rem;
    }

    .quick-tip {
        flex-direction: column;
        text-align: center;
    }

    .tip-icon {
        align-self: center;
    }

    .policy-section {
        padding: 1.5rem;
    }
}

/* Mortgage Preparation Page Styles */
.mortgage-services {
    padding: 4rem 0;
    background-color: #f8fafc;
}

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

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.service-card h3 {
    color: #1e293b;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-card p {
    color: #64748b;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-card ul {
    list-style: none;
    padding: 0;
}

.service-card ul li {
    padding: 0.5rem 0;
    color: #64748b;
    position: relative;
    padding-left: 1.5rem;
}

.service-card ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #dc3545;
    font-weight: bold;
}

.mortgage-process {
    padding: 4rem 0;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.step {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.step-number {
    width: 60px;
    height: 60px;
    background: #dc3545;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1.5rem;
}

.step h3 {
    color: #1e293b;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.step p {
    color: #64748b;
    line-height: 1.6;
}

/* FAQs Page Styles */
.faq-section {
    padding: 4rem 0;
}

.faq-categories {
    margin-top: 3rem;
}

.faq-category {
    margin-bottom: 4rem;
}

.faq-category h2 {
    color: #1e293b;
    font-size: 2rem;
    margin-bottom: 2rem;
    font-weight: 600;
    text-align: center;
}

.faq-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.faq-item h3 {
    color: #1e293b;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.faq-item p {
    color: #64748b;
    line-height: 1.6;
}

.faq-cta {
    text-align: center;
    padding: 4rem 0;
    background: #f8fafc;
    margin-top: 4rem;
    border-radius: 12px;
}

.faq-cta h2 {
    color: #1e293b;
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.faq-cta p {
    color: #64748b;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

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

/* Right For You Page Styles */
.right-for-you-content {
    padding: 4rem 0;
}

.intro-section {
    text-align: center;
    margin-bottom: 4rem;
}

.intro-section h2 {
    color: #1e293b;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.intro-section p {
    color: #64748b;
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

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

.fit-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.fit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.fit-card h3 {
    color: #1e293b;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.fit-card p {
    color: #64748b;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.fit-card ul {
    list-style: none;
    padding: 0;
}

.fit-card ul li {
    padding: 0.5rem 0;
    color: #64748b;
    position: relative;
    padding-left: 1.5rem;
}

.fit-card ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #dc3545;
    font-weight: bold;
}

.not-right-section {
    background: #f8fafc;
    padding: 4rem 0;
    margin: 4rem 0;
    border-radius: 12px;
}

.not-right-section h2 {
    color: #1e293b;
    font-size: 2rem;
    margin-bottom: 1rem;
    text-align: center;
    font-weight: 600;
}

.not-right-section > p {
    color: #64748b;
    text-align: center;
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

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

.not-right-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.not-right-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.not-right-card h3 {
    color: #1e293b;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.not-right-card p {
    color: #64748b;
    line-height: 1.6;
}

.assessment-section {
    padding: 4rem 0;
}

.assessment-section h2 {
    color: #1e293b;
    font-size: 2rem;
    margin-bottom: 1rem;
    text-align: center;
    font-weight: 600;
}

.assessment-section > p {
    color: #64748b;
    text-align: center;
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

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

.question {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.question:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.question h3 {
    color: #1e293b;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.question p {
    color: #64748b;
    line-height: 1.6;
}

.cta-section {
    text-align: center;
    padding: 4rem 0;
    background: #F5F5DC;
    margin-top: 4rem;
    border-radius: 12px;
}

.cta-section h2 {
    color: #1e293b;
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.cta-section p {
    color: #64748b;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

/* How Long Page Styles */
.timeline-content {
    padding: 4rem 0;
}

.timeline-phases {
    margin-top: 3rem;
}

.phase {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.phase:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.phase-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.phase-header h3 {
    color: #1e293b;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
}

.phase-number {
    width: 50px;
    height: 50px;
    background: #dc3545;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: bold;
}

.phase-content p {
    color: #64748b;
    margin-bottom: 1rem;
    font-weight: 500;
}

.phase-content ul {
    list-style: none;
    padding: 0;
}

.phase-content ul li {
    padding: 0.5rem 0;
    color: #64748b;
    position: relative;
    padding-left: 1.5rem;
}

.phase-content ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #dc3545;
    font-weight: bold;
}

.factors-section {
    padding: 4rem 0;
    background: #f8fafc;
    margin: 4rem 0;
    border-radius: 12px;
}

.factors-section h2 {
    color: #1e293b;
    font-size: 2rem;
    margin-bottom: 3rem;
    text-align: center;
    font-weight: 600;
}

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

.factor-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.factor-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.factor-card h3 {
    color: #1e293b;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.factor-card p {
    color: #64748b;
    line-height: 1.6;
}

.realistic-expectations {
    padding: 4rem 0;
}

.realistic-expectations h2 {
    color: #1e293b;
    font-size: 2rem;
    margin-bottom: 3rem;
    text-align: center;
    font-weight: 600;
}

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

.expectation-item {
    text-align: center;
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.expectation-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.expectation-item h3 {
    color: #dc3545;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.expectation-item p {
    color: #64748b;
    line-height: 1.6;
}

.success-tips {
    padding: 4rem 0;
    background: #f8fafc;
    margin: 4rem 0;
    border-radius: 12px;
}

.success-tips h2 {
    color: #1e293b;
    font-size: 2rem;
    margin-bottom: 3rem;
    text-align: center;
    font-weight: 600;
}

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

.tip {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tip:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.tip h3 {
    color: #1e293b;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.tip p {
    color: #64748b;
    line-height: 1.6;
}

/* Sitemap Page Styles */
.sitemap-content {
    padding: 4rem 0;
}

.sitemap-section {
    margin-bottom: 3rem;
}

.sitemap-section h2 {
    color: #1e293b;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    border-bottom: 2px solid #dc3545;
    padding-bottom: 0.5rem;
}

.sitemap-list {
    list-style: none;
    padding: 0;
}

.sitemap-list li {
    margin-bottom: 0.8rem;
}

.sitemap-list li a {
    color: #64748b;
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s ease;
    display: block;
    padding: 0.5rem 0;
}

.sitemap-list li a:hover {
    color: #dc3545;
    transform: translateX(5px);
}

.sitemap-note {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 12px;
    margin-top: 3rem;
    border-left: 4px solid #dc3545;
}

.sitemap-note h3 {
    color: #1e293b;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.sitemap-note p {
    color: #64748b;
    line-height: 1.6;
}

/* Responsive Styles for New Pages */
@media (max-width: 768px) {
    .services-grid,
    .services-grid-two,
    .perfect-fit-grid,
    .not-right-grid,
    .assessment-questions,
    .factors-grid,
    .expectations-grid,
    .tips-grid {
        grid-template-columns: 1fr;
    }

    .phase-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

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

    .sitemap-section h2 {
        font-size: 1.5rem;
    }

    .faq-category h2 {
        font-size: 1.5rem;
    }

    .intro-section h2 {
        font-size: 2rem;
    }

    .not-right-section h2,
    .assessment-section h2,
    .realistic-expectations h2,
    .success-tips h2 {
        font-size: 1.5rem;
    }

    .service-box-professional {
        padding: 2.5rem 2rem;
    }

    .service-icon-professional {
        width: 70px;
        height: 70px;
        margin-bottom: 1.5rem;
    }

    .service-box-professional h3 {
        font-size: 1.3rem;
    }

    .service-box-professional p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .service-card,
    .fit-card,
    .not-right-card,
    .question,
    .phase,
    .factor-card,
    .expectation-item,
    .tip,
    .faq-item {
        padding: 1.5rem;
    }

    .step {
        padding: 1.5rem;
    }

    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .phase-number {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .intro-section h2 {
        font-size: 1.8rem;
    }

    .faq-cta h2,
    .cta-section h2 {
        font-size: 1.5rem;
    }

    /* Guarantee page specific mobile styles */
    .guarantee-hero .hero-content h1 {
        font-size: 1.8rem;
    }

    .guarantee-hero .hero-content p {
        font-size: 1rem;
    }

    .guarantee-text h2 {
        font-size: 1.6rem;
    }

    .guarantee-text h3 {
        font-size: 1.1rem;
    }

    .guarantee-page .guarantee-stats {
        grid-template-columns: 1fr;
    }

    .guarantee-page .guarantee-card {
        padding: 1.5rem;
    }

    .guarantee-page .guarantee-steps .step {
        padding: 1rem;
    }

    .guarantee-page .guarantee-steps .step-number {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

/* How Long Page Styles */
.timeline-content {
    padding: 4rem 0;
}

.timeline-phases {
    margin-top: 3rem;
}

.phase {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.phase:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.phase-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.phase-header h3 {
    color: #1e293b;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
}

.phase-number {
    width: 50px;
    height: 50px;
    background: #dc3545;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: bold;
}

.phase-content p {
    color: #64748b;
    margin-bottom: 1rem;
    font-weight: 500;
}

.phase-content ul {
    list-style: none;
    padding: 0;
}

.phase-content ul li {
    padding: 0.5rem 0;
    color: #64748b;
    position: relative;
    padding-left: 1.5rem;
}

.phase-content ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #dc3545;
    font-weight: bold;
}

.factors-section {
    padding: 4rem 0;
    background: #f8fafc;
    margin: 4rem 0;
    border-radius: 12px;
}

.factors-section h2 {
    color: #1e293b;
    font-size: 2rem;
    margin-bottom: 3rem;
    text-align: center;
    font-weight: 600;
}

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

.factor-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.factor-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.factor-card h3 {
    color: #1e293b;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.factor-card p {
    color: #64748b;
    line-height: 1.6;
}

.realistic-expectations {
    padding: 4rem 0;
}

.realistic-expectations h2 {
    color: #1e293b;
    font-size: 2rem;
    margin-bottom: 3rem;
    text-align: center;
    font-weight: 600;
}

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

.expectation-item {
    text-align: center;
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.expectation-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.expectation-item h3 {
    color: #dc3545;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.expectation-item p {
    color: #64748b;
    line-height: 1.6;
}

.success-tips {
    padding: 4rem 0;
    background: #f8fafc;
    margin: 4rem 0;
    border-radius: 12px;
}

.success-tips h2 {
    color: #1e293b;
    font-size: 2rem;
    margin-bottom: 3rem;
    text-align: center;
    font-weight: 600;
}

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

.tip {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tip:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.tip h3 {
    color: #1e293b;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.tip p {
    color: #64748b;
    line-height: 1.6;
}

/* Sitemap Page Styles */
.sitemap-content {
    padding: 4rem 0;
}

.sitemap-section {
    margin-bottom: 3rem;
}

.sitemap-section h2 {
    color: #1e293b;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    border-bottom: 2px solid #dc3545;
    padding-bottom: 0.5rem;
}

.sitemap-list {
    list-style: none;
    padding: 0;
}

.sitemap-list li {
    margin-bottom: 0.8rem;
}

.sitemap-list li a {
    color: #64748b;
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s ease;
    display: block;
    padding: 0.5rem 0;
}

.sitemap-list li a:hover {
    color: #dc3545;
    transform: translateX(5px);
}

.sitemap-note {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 12px;
    margin-top: 3rem;
    border-left: 4px solid #dc3545;
}

.sitemap-note h3 {
    color: #1e293b;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.sitemap-note p {
    color: #64748b;
    line-height: 1.6;
}

/* Responsive Styles for New Pages */
@media (max-width: 768px) {
    .services-grid,
    .services-grid-two,
    .perfect-fit-grid,
    .not-right-grid,
    .assessment-questions,
    .factors-grid,
    .expectations-grid,
    .tips-grid {
        grid-template-columns: 1fr;
    }

    .phase-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

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

    .sitemap-section h2 {
        font-size: 1.5rem;
    }

    .faq-category h2 {
        font-size: 1.5rem;
    }

    .intro-section h2 {
        font-size: 2rem;
    }

    .not-right-section h2,
    .assessment-section h2,
    .realistic-expectations h2,
    .success-tips h2 {
        font-size: 1.5rem;
    }

    .service-box-professional {
        padding: 2.5rem 2rem;
    }

    .service-icon-professional {
        width: 70px;
        height: 70px;
        margin-bottom: 1.5rem;
    }

    .service-box-professional h3 {
        font-size: 1.3rem;
    }

    .service-box-professional p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .service-card,
    .fit-card,
    .not-right-card,
    .question,
    .phase,
    .factor-card,
    .expectation-item,
    .tip,
    .faq-item {
        padding: 1.5rem;
    }

    .step {
        padding: 1.5rem;
    }

    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .phase-number {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .intro-section h2 {
        font-size: 1.8rem;
    }

    .faq-cta h2,
    .cta-section h2 {
        font-size: 1.5rem;
    }

    /* Guarantee page specific mobile styles */
    .guarantee-hero .hero-content h1 {
        font-size: 1.8rem;
    }

    .guarantee-hero .hero-content p {
        font-size: 1rem;
    }

    .guarantee-text h2 {
        font-size: 1.6rem;
    }

    .guarantee-text h3 {
        font-size: 1.1rem;
    }

    .guarantee-page .guarantee-stats {
        grid-template-columns: 1fr;
    }

    .guarantee-page .guarantee-card {
        padding: 1.5rem;
    }

    .guarantee-page .guarantee-steps .step {
        padding: 1rem;
    }

    .guarantee-page .guarantee-steps .step-number {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

/* How Long Page Styles */
.timeline-content {
    padding: 4rem 0;
}

.timeline-phases {
    margin-top: 3rem;
}

.phase {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.phase:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.phase-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.phase-header h3 {
    color: #1e293b;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
}

.phase-number {
    width: 50px;
    height: 50px;
    background: #dc3545;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: bold;
}

.phase-content p {
    color: #64748b;
    margin-bottom: 1rem;
    font-weight: 500;
}

.phase-content ul {
    list-style: none;
    padding: 0;
}

.phase-content ul li {
    padding: 0.5rem 0;
    color: #64748b;
    position: relative;
    padding-left: 1.5rem;
}

.phase-content ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #dc3545;
    font-weight: bold;
}

.factors-section {
    padding: 4rem 0;
    background: #f8fafc;
    margin: 4rem 0;
    border-radius: 12px;
}

.factors-section h2 {
    color: #1e293b;
    font-size: 2rem;
    margin-bottom: 3rem;
    text-align: center;
    font-weight: 600;
}

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

.factor-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.factor-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.factor-card h3 {
    color: #1e293b;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.factor-card p {
    color: #64748b;
    line-height: 1.6;
}

.realistic-expectations {
    padding: 4rem 0;
}

.realistic-expectations h2 {
    color: #1e293b;
    font-size: 2rem;
    margin-bottom: 3rem;
    text-align: center;
    font-weight: 600;
}

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

.expectation-item {
    text-align: center;
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.expectation-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.expectation-item h3 {
    color: #dc3545;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.expectation-item p {
    color: #64748b;
    line-height: 1.6;
}

.success-tips {
    padding: 4rem 0;
    background: #f8fafc;
    margin: 4rem 0;
    border-radius: 12px;
}

.success-tips h2 {
    color: #1e293b;
    font-size: 2rem;
    margin-bottom: 3rem;
    text-align: center;
    font-weight: 600;
}

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

.tip {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tip:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.tip h3 {
    color: #1e293b;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.tip p {
    color: #64748b;
    line-height: 1.6;
}

/* Sitemap Page Styles */
.sitemap-content {
    padding: 4rem 0;
}

.sitemap-section {
    margin-bottom: 3rem;
}

.sitemap-section h2 {
    color: #1e293b;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    border-bottom: 2px solid #dc3545;
    padding-bottom: 0.5rem;
}

.sitemap-list {
    list-style: none;
    padding: 0;
}

.sitemap-list li {
    margin-bottom: 0.8rem;
}

.sitemap-list li a {
    color: #64748b;
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s ease;
    display: block;
    padding: 0.5rem 0;
}

.sitemap-list li a:hover {
    color: #dc3545;
    transform: translateX(5px);
}

.sitemap-note {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 12px;
    margin-top: 3rem;
    border-left: 4px solid #dc3545;
}

.sitemap-note h3 {
    color: #1e293b;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.sitemap-note p {
    color: #64748b;
    line-height: 1.6;
}

/* Responsive Styles for New Pages */
@media (max-width: 768px) {
    .services-grid,
    .services-grid-two,
    .perfect-fit-grid,
    .not-right-grid,
    .assessment-questions,
    .factors-grid,
    .expectations-grid,
    .tips-grid {
        grid-template-columns: 1fr;
    }

    .phase-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

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

    .sitemap-section h2 {
        font-size: 1.5rem;
    }

    .faq-category h2 {
        font-size: 1.5rem;
    }

    .intro-section h2 {
        font-size: 2rem;
    }

    .not-right-section h2,
    .assessment-section h2,
    .realistic-expectations h2,
    .success-tips h2 {
        font-size: 1.5rem;
    }

    .service-box-professional {
        padding: 2.5rem 2rem;
    }

    .service-icon-professional {
        width: 70px;
        height: 70px;
        margin-bottom: 1.5rem;
    }

    .service-box-professional h3 {
        font-size: 1.3rem;
    }

    .service-box-professional p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .service-card,
    .fit-card,
    .not-right-card,
    .question,
    .phase,
    .factor-card,
    .expectation-item,
    .tip,
    .faq-item {
        padding: 1.5rem;
    }

    .step {
        padding: 1.5rem;
    }

    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .phase-number {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .intro-section h2 {
        font-size: 1.8rem;
    }

    .faq-cta h2,
    .cta-section h2 {
        font-size: 1.5rem;
    }

    /* Guarantee page specific mobile styles */
    .guarantee-hero .hero-content h1 {
        font-size: 1.8rem;
    }

    .guarantee-hero .hero-content p {
        font-size: 1rem;
    }

    .guarantee-text h2 {
        font-size: 1.6rem;
    }

    .guarantee-text h3 {
        font-size: 1.1rem;
    }

    .guarantee-page .guarantee-stats {
        grid-template-columns: 1fr;
    }

    .guarantee-page .guarantee-card {
        padding: 1.5rem;
    }

    .guarantee-page .guarantee-steps .step {
        padding: 1rem;
    }

    .guarantee-page .guarantee-steps .step-number {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

/* How Long Page Styles */
.timeline-content {
    padding: 4rem 0;
}

.timeline-phases {
    margin-top: 3rem;
}

.phase {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.phase:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.phase-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.phase-header h3 {
    color: #1e293b;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
}

.phase-number {
    width: 50px;
    height: 50px;
    background: #dc3545;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: bold;
}

.phase-content p {
    color: #64748b;
    margin-bottom: 1rem;
    font-weight: 500;
}

.phase-content ul {
    list-style: none;
    padding: 0;
}

.phase-content ul li {
    padding: 0.5rem 0;
    color: #64748b;
    position: relative;
    padding-left: 1.5rem;
}

.phase-content ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #dc3545;
    font-weight: bold;
}

.factors-section {
    padding: 4rem 0;
    background: #f8fafc;
    margin: 4rem 0;
    border-radius: 12px;
}

.factors-section h2 {
    color: #1e293b;
    font-size: 2rem;
    margin-bottom: 3rem;
    text-align: center;
    font-weight: 600;
}

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

.factor-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.factor-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.factor-card h3 {
    color: #1e293b;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.factor-card p {
    color: #64748b;
    line-height: 1.6;
}

.realistic-expectations {
    padding: 4rem 0;
}

.realistic-expectations h2 {
    color: #1e293b;
    font-size: 2rem;
    margin-bottom: 3rem;
    text-align: center;
    font-weight: 600;
}

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

.expectation-item {
    text-align: center;
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.expectation-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.expectation-item h3 {
    color: #dc3545;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.expectation-item p {
    color: #64748b;
    line-height: 1.6;
}

.success-tips {
    padding: 4rem 0;
    background: #f8fafc;
    margin: 4rem 0;
    border-radius: 12px;
}

.success-tips h2 {
    color: #1e293b;
    font-size: 2rem;
    margin-bottom: 3rem;
    text-align: center;
    font-weight: 600;
}

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

.tip {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tip:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.tip h3 {
    color: #1e293b;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.tip p {
    color: #64748b;
    line-height: 1.6;
}

/* Sitemap Page Styles */
.sitemap-content {
    padding: 4rem 0;
}

.sitemap-section {
    margin-bottom: 3rem;
}

.sitemap-section h2 {
    color: #1e293b;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    border-bottom: 2px solid #dc3545;
    padding-bottom: 0.5rem;
}

.sitemap-list {
    list-style: none;
    padding: 0;
}

.sitemap-list li {
    margin-bottom: 0.8rem;
}

.sitemap-list li a {
    color: #64748b;
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s ease;
    display: block;
    padding: 0.5rem 0;
}

.sitemap-list li a:hover {
    color: #dc3545;
    transform: translateX(5px);
}

.sitemap-note {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 12px;
    margin-top: 3rem;
    border-left: 4px solid #dc3545;
}

.sitemap-note h3 {
    color: #1e293b;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.sitemap-note p {
    color: #64748b;
    line-height: 1.6;
}

/* Responsive Styles for New Pages */
@media (max-width: 768px) {
    .services-grid,
    .services-grid-two,
    .perfect-fit-grid,
    .not-right-grid,
    .assessment-questions,
    .factors-grid,
    .expectations-grid,
    .tips-grid {
        grid-template-columns: 1fr;
    }

    .phase-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

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

    .sitemap-section h2 {
        font-size: 1.5rem;
    }

    .faq-category h2 {
        font-size: 1.5rem;
    }

    .intro-section h2 {
        font-size: 2rem;
    }

    .not-right-section h2,
    .assessment-section h2,
    .realistic-expectations h2,
    .success-tips h2 {
        font-size: 1.5rem;
    }

    .service-box-professional {
        padding: 2.5rem 2rem;
    }

    .service-icon-professional {
        width: 70px;
        height: 70px;
        margin-bottom: 1.5rem;
    }

    .service-box-professional h3 {
        font-size: 1.3rem;
    }

    .service-box-professional p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .service-card,
    .fit-card,
    .not-right-card,
    .question,
    .phase,
    .factor-card,
    .expectation-item,
    .tip,
    .faq-item {
        padding: 1.5rem;
    }

    .step {
        padding: 1.5rem;
    }

    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .phase-number {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .intro-section h2 {
        font-size: 1.8rem;
    }

    .faq-cta h2,
    .cta-section h2 {
        font-size: 1.5rem;
    }

    /* Guarantee page specific mobile styles */
    .guarantee-hero .hero-content h1 {
        font-size: 1.8rem;
    }

    .guarantee-hero .hero-content p {
        font-size: 1rem;
    }

    .guarantee-text h2 {
        font-size: 1.6rem;
    }

    .guarantee-text h3 {
        font-size: 1.1rem;
    }

    .guarantee-page .guarantee-stats {
        grid-template-columns: 1fr;
    }

    .guarantee-page .guarantee-card {
        padding: 1.5rem;
    }

    .guarantee-page .guarantee-steps .step {
        padding: 1rem;
    }

    .guarantee-page .guarantee-steps .step-number {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

/* How Long Page Styles */
.timeline-content {
    padding: 4rem 0;
}

.timeline-phases {
    margin-top: 3rem;
}

.phase {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.phase:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.phase-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.phase-header h3 {
    color: #1e293b;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
}

.phase-number {
    width: 50px;
    height: 50px;
    background: #dc3545;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: bold;
}

.phase-content p {
    color: #64748b;
    margin-bottom: 1rem;
    font-weight: 500;
}

.phase-content ul {
    list-style: none;
    padding: 0;
}

.phase-content ul li {
    padding: 0.5rem 0;
    color: #64748b;
    position: relative;
    padding-left: 1.5rem;
}

.phase-content ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #dc3545;
    font-weight: bold;
}

.factors-section {
    padding: 4rem 0;
    background: #f8fafc;
    margin: 4rem 0;
    border-radius: 12px;
}

.factors-section h2 {
    color: #1e293b;
    font-size: 2rem;
    margin-bottom: 3rem;
    text-align: center;
    font-weight: 600;
}

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

.factor-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.factor-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.factor-card h3 {
    color: #1e293b;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.factor-card p {
    color: #64748b;
    line-height: 1.6;
}

.realistic-expectations {
    padding: 4rem 0;
}

.realistic-expectations h2 {
    color: #1e293b;
    font-size: 2rem;
    margin-bottom: 3rem;
    text-align: center;
    font-weight: 600;
}

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

.expectation-item {
    text-align: center;
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.expectation-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.expectation-item h3 {
    color: #dc3545;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.expectation-item p {
    color: #64748b;
    line-height: 1.6;
}

.success-tips {
    padding: 4rem 0;
    background: #f8fafc;
    margin: 4rem 0;
    border-radius: 12px;
}

.success-tips h2 {
    color: #1e293b;
    font-size: 2rem;
    margin-bottom: 3rem;
    text-align: center;
    font-weight: 600;
}

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

.tip {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tip:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.tip h3 {
    color: #1e293b;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.tip p {
    color: #64748b;
    line-height: 1.6;
}

/* Sitemap Page Styles */
.sitemap-content {
    padding: 4rem 0;
}

.sitemap-section {
    margin-bottom: 3rem;
}

.sitemap-section h2 {
    color: #1e293b;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    border-bottom: 2px solid #dc3545;
    padding-bottom: 0.5rem;
}

.sitemap-list {
    list-style: none;
    padding: 0;
}

.sitemap-list li {
    margin-bottom: 0.8rem;
}

.sitemap-list li a {
    color: #64748b;
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s ease;
    display: block;
    padding: 0.5rem 0;
}

.sitemap-list li a:hover {
    color: #dc3545;
    transform: translateX(5px);
}

.sitemap-note {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 12px;
    margin-top: 3rem;
    border-left: 4px solid #dc3545;
}

.sitemap-note h3 {
    color: #1e293b;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.sitemap-note p {
    color: #64748b;
    line-height: 1.6;
}

/* Responsive Styles for New Pages */
@media (max-width: 768px) {
    .services-grid,
    .services-grid-two,
    .perfect-fit-grid,
    .not-right-grid,
    .assessment-questions,
    .factors-grid,
    .expectations-grid,
    .tips-grid {
        grid-template-columns: 1fr;
    }

    .phase-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

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

    .sitemap-section h2 {
        font-size: 1.5rem;
    }

    .faq-category h2 {
        font-size: 1.5rem;
    }

    .intro-section h2 {
        font-size: 2rem;
    }

    .not-right-section h2,
    .assessment-section h2,
    .realistic-expectations h2,
    .success-tips h2 {
        font-size: 1.5rem;
    }

    .service-box-professional {
        padding: 2.5rem 2rem;
    }

    .service-icon-professional {
        width: 70px;
        height: 70px;
        margin-bottom: 1.5rem;
    }

    .service-box-professional h3 {
        font-size: 1.3rem;
    }

    .service-box-professional p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .service-card,
    .fit-card,
    .not-right-card,
    .question,
    .phase,
    .factor-card,
    .expectation-item,
    .tip,
    .faq-item {
        padding: 1.5rem;
    }

    .step {
        padding: 1.5rem;
    }

    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .phase-number {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .intro-section h2 {
        font-size: 1.8rem;
    }

    .faq-cta h2,
    .cta-section h2 {
        font-size: 1.5rem;
    }

    /* Guarantee page specific mobile styles */
    .guarantee-hero .hero-content h1 {
        font-size: 1.8rem;
    }

    .guarantee-hero .hero-content p {
        font-size: 1rem;
    }

    .guarantee-text h2 {
        font-size: 1.6rem;
    }

    .guarantee-text h3 {
        font-size: 1.1rem;
    }

    .guarantee-page .guarantee-stats {
        grid-template-columns: 1fr;
    }

    .guarantee-page .guarantee-card {
        padding: 1.5rem;
    }

    .guarantee-page .guarantee-steps .step {
        padding: 1rem;
    }

    .guarantee-page .guarantee-steps .step-number {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

/* How Long Page Styles */
.timeline-content {
    padding: 4rem 0;
}

.timeline-phases {
    margin-top: 3rem;
}

.phase {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.phase:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.phase-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.phase-header h3 {
    color: #1e293b;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
}

.phase-number {
    width: 50px;
    height: 50px;
    background: #dc3545;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: bold;
}

.phase-content p {
    color: #64748b;
    margin-bottom: 1rem;
    font-weight: 500;
}

.phase-content ul {
    list-style: none;
    padding: 0;
}

.phase-content ul li {
    padding: 0.5rem 0;
    color: #64748b;
    position: relative;
    padding-left: 1.5rem;
}

.phase-content ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #dc3545;
    font-weight: bold;
}

.factors-section {
    padding: 4rem 0;
    background: #f8fafc;
    margin: 4rem 0;
    border-radius: 12px;
}

.factors-section h2 {
    color: #1e293b;
    font-size: 2rem;
    margin-bottom: 3rem;
    text-align: center;
    font-weight: 600;
}

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

.factor-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.factor-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.factor-card h3 {
    color: #1e293b;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.factor-card p {
    color: #64748b;
    line-height: 1.6;
}

.realistic-expectations {
    padding: 4rem 0;
}

.realistic-expectations h2 {
    color: #1e293b;
    font-size: 2rem;
    margin-bottom: 3rem;
    text-align: center;
    font-weight: 600;
}

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

.expectation-item {
    text-align: center;
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.expectation-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.expectation-item h3 {
    color: #dc3545;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.expectation-item p {
    color: #64748b;
    line-height: 1.6;
}

.success-tips {
    padding: 4rem 0;
    background: #f8fafc;
    margin: 4rem 0;
    border-radius: 12px;
}

.success-tips h2 {
    color: #1e293b;
    font-size: 2rem;
    margin-bottom: 3rem;
    text-align: center;
    font-weight: 600;
}

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

.tip {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tip:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.tip h3 {
    color: #1e293b;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.tip p {
    color: #64748b;
    line-height: 1.6;
}

/* Sitemap Page Styles */
.sitemap-content {
    padding: 4rem 0;
}

.sitemap-section {
    margin-bottom: 3rem;
}

.sitemap-section h2 {
    color: #1e293b;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    border-bottom: 2px solid #dc3545;
    padding-bottom: 0.5rem;
}

.sitemap-list {
    list-style: none;
    padding: 0;
}

.sitemap-list li {
    margin-bottom: 0.8rem;
}

.sitemap-list li a {
    color: #64748b;
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s ease;
    display: block;
    padding: 0.5rem 0;
}

.sitemap-list li a:hover {
    color: #dc3545;
    transform: translateX(5px);
}

.sitemap-note {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 12px;
    margin-top: 3rem;
    border-left: 4px solid #dc3545;
}

.sitemap-note h3 {
    color: #1e293b;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.sitemap-note p {
    color: #64748b;
    line-height: 1.6;
}

/* Responsive Styles for New Pages */
@media (max-width: 768px) {
    .services-grid,
    .services-grid-two,
    .perfect-fit-grid,
    .not-right-grid,
    .assessment-questions,
    .factors-grid,
    .expectations-grid,
    .tips-grid {
        grid-template-columns: 1fr;
    }

    .phase-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

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

    .sitemap-section h2 {
        font-size: 1.5rem;
    }

    .faq-category h2 {
        font-size: 1.5rem;
    }

    .intro-section h2 {
        font-size: 2rem;
    }

    .not-right-section h2,
    .assessment-section h2,
    .realistic-expectations h2,
    .success-tips h2 {
        font-size: 1.5rem;
    }

    .service-box-professional {
        padding: 2.5rem 2rem;
    }

    .service-icon-professional {
        width: 70px;
        height: 70px;
        margin-bottom: 1.5rem;
    }

    .service-box-professional h3 {
        font-size: 1.3rem;
    }

    .service-box-professional p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .service-card,
    .fit-card,
    .not-right-card,
    .question,
    .phase,
    .factor-card,
    .expectation-item,
    .tip,
    .faq-item {
        padding: 1.5rem;
    }

    .step {
        padding: 1.5rem;
    }

    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .phase-number {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .intro-section h2 {
        font-size: 1.8rem;
    }

    .faq-cta h2,
    .cta-section h2 {
        font-size: 1.5rem;
    }

    /* Guarantee page specific mobile styles */
    .guarantee-hero .hero-content h1 {
        font-size: 1.8rem;
    }

    .guarantee-hero .hero-content p {
        font-size: 1rem;
    }

    .guarantee-text h2 {
        font-size: 1.6rem;
    }

    .guarantee-text h3 {
        font-size: 1.1rem;
    }

    .guarantee-page .guarantee-stats {
        grid-template-columns: 1fr;
    }

    .guarantee-page .guarantee-card {
        padding: 1.5rem;
    }

    .guarantee-page .guarantee-steps .step {
        padding: 1rem;
    }

    .guarantee-page .guarantee-steps .step-number {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

/* How Long Page Styles */
.timeline-content {
    padding: 4rem 0;
}

.timeline-phases {
    margin-top: 3rem;
}

.phase {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.phase:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.phase-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.phase-header h3 {
    color: #1e293b;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
}

.phase-number {
    width: 50px;
    height: 50px;
    background: #dc3545;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: bold;
}

.phase-content p {
    color: #64748b;
    margin-bottom: 1rem;
    font-weight: 500;
}

.phase-content ul {
    list-style: none;
    padding: 0;
}

.phase-content ul li {
    padding: 0.5rem 0;
    color: #64748b;
    position: relative;
    padding-left: 1.5rem;
}

.phase-content ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #dc3545;
    font-weight: bold;
}

.factors-section {
    padding: 4rem 0;
    background: #f8fafc;
    margin: 4rem 0;
    border-radius: 12px;
}

.factors-section h2 {
    color: #1e293b;
    font-size: 2rem;
    margin-bottom: 3rem;
    text-align: center;
    font-weight: 600;
}

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

.factor-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.factor-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.factor-card h3 {
    color: #1e293b;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.factor-card p {
    color: #64748b;
    line-height: 1.6;
}

.realistic-expectations {
    padding: 4rem 0;
}

.realistic-expectations h2 {
    color: #1e293b;
    font-size: 2rem;
    margin-bottom: 3rem;
    text-align: center;
    font-weight: 600;
}

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

.expectation-item {
    text-align: center;
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.expectation-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.expectation-item h3 {
    color: #dc3545;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.expectation-item p {
    color: #64748b;
    line-height: 1.6;
}

.success-tips {
    padding: 4rem 0;
    background: #f8fafc;
    margin: 4rem 0;
    border-radius: 12px;
}

.success-tips h2 {
    color: #1e293b;
    font-size: 2rem;
    margin-bottom: 3rem;
    text-align: center;
    font-weight: 600;
}

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

.tip {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tip:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.tip h3 {
    color: #1e293b;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.tip p {
    color: #64748b;
    line-height: 1.6;
}

/* Sitemap Page Styles */
.sitemap-content {
    padding: 4rem 0;
}

.sitemap-section {
    margin-bottom: 3rem;
}

.sitemap-section h2 {
    color: #1e293b;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    border-bottom: 2px solid #dc3545;
    padding-bottom: 0.5rem;
}

.sitemap-list {
    list-style: none;
    padding: 0;
}

.sitemap-list li {
    margin-bottom: 0.8rem;
}

.sitemap-list li a {
    color: #64748b;
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s ease;
    display: block;
    padding: 0.5rem 0;
}

.sitemap-list li a:hover {
    color: #dc3545;
    transform: translateX(5px);
}

.sitemap-note {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 12px;
    margin-top: 3rem;
    border-left: 4px solid #dc3545;
}

.sitemap-note h3 {
    color: #1e293b;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.sitemap-note p {
    color: #64748b;
    line-height: 1.6;
}

/* Responsive Styles for New Pages */
@media (max-width: 768px) {
    .services-grid,
    .services-grid-two,
    .perfect-fit-grid,
    .not-right-grid,
    .assessment-questions,
    .factors-grid,
    .expectations-grid,
    .tips-grid {
        grid-template-columns: 1fr;
    }

    .phase-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

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

    .sitemap-section h2 {
        font-size: 1.5rem;
    }

    .faq-category h2 {
        font-size: 1.5rem;
    }

    .intro-section h2 {
        font-size: 2rem;
    }

    .not-right-section h2,
    .assessment-section h2,
    .realistic-expectations h2,
    .success-tips h2 {
        font-size: 1.5rem;
    }

    .service-box-professional {
        padding: 2.5rem 2rem;
    }

    .service-icon-professional {
        width: 70px;
        height: 70px;
        margin-bottom: 1.5rem;
    }

    .service-box-professional h3 {
        font-size: 1.3rem;
    }

    .service-box-professional p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .service-card,
    .fit-card,
    .not-right-card,
    .question,
    .phase,
    .factor-card,
    .expectation-item,
    .tip,
    .faq-item {
        padding: 1.5rem;
    }

    .step {
        padding: 1.5rem;
    }

    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .phase-number {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .intro-section h2 {
        font-size: 1.8rem;
    }

    .faq-cta h2,
    .cta-section h2 {
        font-size: 1.5rem;
    }

    /* Guarantee page specific mobile styles */
    .guarantee-hero .hero-content h1 {
        font-size: 1.8rem;
    }

    .guarantee-hero .hero-content p {
        font-size: 1rem;
    }

    .guarantee-text h2 {
        font-size: 1.6rem;
    }

    .guarantee-text h3 {
        font-size: 1.1rem;
    }

    .guarantee-page .guarantee-stats {
        grid-template-columns: 1fr;
    }

    .guarantee-page .guarantee-card {
        padding: 1.5rem;
    }

    .guarantee-page .guarantee-steps .step {
        padding: 1rem;
    }

    .guarantee-page .guarantee-steps .step-number {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

/* How Long Page Styles */
.timeline-content {
    padding: 4rem 0;
}

.timeline-phases {
    margin-top: 3rem;
}

.phase {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.phase:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.phase-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.phase-header h3 {
    color: #1e293b;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
}

.phase-number {
    width: 50px;
    height: 50px;
    background: #dc3545;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: bold;
}

.phase-content p {
    color: #64748b;
    margin-bottom: 1rem;
    font-weight: 500;
}

.phase-content ul {
    list-style: none;
    padding: 0;
}

.phase-content ul li {
    padding: 0.5rem 0;
    color: #64748b;
    position: relative;
    padding-left: 1.5rem;
}

.phase-content ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #dc3545;
    font-weight: bold;
}