/* FordPass Page Styles */

.fordpass-section {
    padding: 2rem 0 4rem;
}

.fordpass-hero {
    max-width: 800px;
    margin: 0 auto 2rem;
}

.fordpass-hero__image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.fordpass-intro {
    max-width: 900px;
    margin: 0 auto 3rem;
    text-align: center;
    padding: 0 1rem;
}

.fordpass-intro__title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.fordpass-intro__subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin: 1.5rem 0 0.75rem;
}

.fordpass-intro__text {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 1rem;
}

/* Feature Sections */
.fordpass-feature {
    display: flex;
    align-items: center;
    gap: 3rem;
    padding: 3rem 1rem;
    max-width: 1100px;
    margin: 0 auto;
}

.fordpass-feature--reverse {
    flex-direction: row-reverse;
}

.fordpass-feature__image-container {
    flex: 0 0 45%;
    max-width: 400px;
}

.fordpass-feature__image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.fordpass-feature__content {
    flex: 1;
}

.fordpass-feature__title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.fordpass-feature__text {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 1rem;
}

.fordpass-feature__list {
    list-style: disc;
    padding-left: 1.5rem;
    margin: 0;
}

.fordpass-feature__list li {
    font-size: 1.125rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 0.5rem;
}

/* Cards Section */
.fordpass-cards {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    padding: 3rem 1rem;
    max-width: 1100px;
    margin: 0 auto;
}

.fordpass-card {
    flex: 0 1 350px;
    background: #f8f8f8;
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.fordpass-card__image {
    max-width: 200px;
    height: auto;
    margin-bottom: 1.5rem;
}

.fordpass-card__title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.fordpass-card__text {
    font-size: 1.125rem;
    line-height: 1.6;
    color: #555;
    margin: 0;
}

/* Responsive styles */
@media (max-width: 768px) {
    .fordpass-feature {
        flex-direction: column !important;
        gap: 1.5rem;
        padding: 2rem 1rem;
    }

    .fordpass-feature__image-container {
        flex: none;
        max-width: 100%;
        width: 100%;
    }

    .fordpass-intro__title {
        font-size: 1.75rem;
    }

    .fordpass-intro__subtitle {
        font-size: 1.25rem;
    }

    .fordpass-intro__text,
    .fordpass-feature__text,
    .fordpass-feature__list li,
    .fordpass-card__text {
        font-size: 14px;
    }

    .fordpass-feature__title {
        font-size: 1.5rem;
    }

    .fordpass-card__title {
        font-size: 1.25rem;
    }

    .fordpass-cards {
        flex-direction: column;
        align-items: center;
    }

    .fordpass-card {
        max-width: 100%;
    }
}
