/* Pages Specific Styles */

/* Page Header */
.page-header {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 80px;
    overflow: hidden;
}

.page-header-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.page-header-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(107, 142, 35, 0.55), rgba(143, 188, 143, 0.45));
    z-index: -1;
}

.page-header-content {
    text-align: center;
    color: white;
    z-index: 1;
}

.page-title {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-subtitle {
    font-size: 1.4rem;
    font-weight: 300;
}

/* Content Sections */
.content-intro {
    max-width: 900px;
    margin: 0 auto 4rem;
    text-align: center;
}

.lead-text {
    font-size: 1.3rem;
    line-height: 1.8;
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 1.5rem;
}

/* Naturopathie Page */
.principles-section {
    background: var(--background-light);
    padding: 4rem 2rem;
    margin: 4rem -20px;
}

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

.principle-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.principle-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.principle-number {
    width: 50px;
    height: 50px;
    background: var(--accent-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1rem;
}

.approach-section {
    margin: 4rem 0;
}

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

.technique-item {
    text-align: center;
    padding: 1.5rem;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.technique-item:hover {
    border-color: var(--primary-color);
    transform: translateY(-3px);
}

.technique-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.technique-item h4 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.consultation-section {
    background: var(--background-light);
    padding: 4rem 2rem;
    margin: 4rem -20px;
}

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

.consultation-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.consultation-header {
    background: var(--secondary-color);
    color: white;
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.consultation-header h3 {
    color: white;
    margin: 0;
}

.duration {
    background: rgba(255, 255, 255, 0.2);
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 600;
}

.consultation-content {
    padding: 2rem;
}

.consultation-content ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.consultation-content li {
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.conditions-section {
    margin: 4rem 0;
}

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

.condition-category {
    padding: 1.5rem;
    background: white;
    border-left: 4px solid var(--primary-color);
    box-shadow: var(--shadow);
}

.condition-category h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.condition-category h4 i {
    margin-right: 0.5rem;
}

.condition-category ul {
    list-style: none;
    padding: 0;
}

.condition-category li {
    padding: 0.3rem 0;
    color: var(--text-light);
    position: relative;
    padding-left: 1.5rem;
}

.condition-category li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
}

.important-info {
    margin: 4rem 0;
}

.info-box {
    background: #FFF3CD;
    border-left: 4px solid var(--accent-color);
    padding: 2rem;
    border-radius: 10px;
    display: flex;
    align-items: start;
    gap: 1.5rem;
}

.info-box i {
    font-size: 2rem;
    color: var(--accent-color);
    flex-shrink: 0;
}

.info-box h4 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

/* Yoga Prénatal Page */
.prenatal-intro {
    background: var(--background-light);
    padding: 3rem;
    border-radius: 15px;
    margin: 3rem 0;
}

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

.benefit-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.benefit-icon i {
    color: white;
    font-size: 1.5rem;
}

.postures-section {
    background: white;
    padding: 4rem 0;
}

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

.posture-card {
    text-align: center;
    padding: 1.5rem;
}

.posture-card img {
    width: 100%;
    max-width: 150px;
    height: auto;
    margin-bottom: 1rem;
}

.posture-card h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

/* Tarifs Page */
.pricing-section {
    padding: 4rem 0;
}

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

.pricing-category h2 {
    color: var(--primary-color);
    margin-bottom: 2rem;
    text-align: center;
}

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

.pricing-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.pricing-card.featured {
    border: 2px solid var(--accent-color);
}

.pricing-card.featured::before {
    content: 'Recommandé';
    position: absolute;
    top: 20px;
    right: -30px;
    background: var(--accent-color);
    color: white;
    padding: 5px 40px;
    transform: rotate(45deg);
    font-size: 0.8rem;
    font-weight: 600;
}

.pricing-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 2rem;
    text-align: center;
}

.pricing-header h3 {
    color: white;
    margin-bottom: 0.5rem;
}

.pricing-price {
    font-size: 2.5rem;
    font-weight: bold;
}

.pricing-price .currency {
    font-size: 1.5rem;
}

.pricing-duration {
    font-size: 0.9rem;
    opacity: 0.9;
}

.pricing-body {
    padding: 2rem;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.pricing-features li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features i {
    color: var(--secondary-color);
}

/* À propos Page */
.about-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin: 3rem 0;
}

.about-image {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

.about-content h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.credentials-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.credentials-list li {
    padding: 0.5rem 0;
    display: flex;
    align-items: start;
    gap: 0.5rem;
}

.credentials-list i {
    color: var(--primary-color);
    margin-top: 0.2rem;
}

.journey-section {
    background: var(--background-light);
    padding: 4rem 0;
    margin: 4rem -20px;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 3rem auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--primary-color);
}

.timeline-item {
    position: relative;
    margin: 2rem 0;
    width: 50%;
}

.timeline-item.left {
    left: 0;
    text-align: right;
    padding-right: 2rem;
}

.timeline-item.right {
    left: 50%;
    text-align: left;
    padding-left: 2rem;
}

.timeline-item::before {
    content: '';
    position: absolute;
    top: 20px;
    width: 20px;
    height: 20px;
    background: var(--accent-color);
    border-radius: 50%;
    z-index: 1;
}

.timeline-item.left::before {
    right: -10px;
}

.timeline-item.right::before {
    left: -10px;
}

.timeline-content {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.timeline-date {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

/* Contact Page */
.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.contact-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.contact-icon i {
    color: white;
    font-size: 2rem;
}

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

.contact-form-section .container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-form {
    max-width: 700px;
    margin: 0 auto;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(107, 142, 35, 0.1);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

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

.map-section {
    margin: 3rem 0;
    border-radius: 15px;
    overflow: hidden;
    height: 400px;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Yoga Prénatal Page */
.yoga-philosophy {
    padding: 4rem 0;
    background: var(--background-light);
}

.yoga-services {
    padding: 4rem 0;
}

.service-block {
    margin: 4rem 0;
    padding: 3rem 0;
}

.service-block:nth-child(even) {
    background: var(--background-light);
    margin-left: -20px;
    margin-right: -20px;
    padding-left: 20px;
    padding-right: 20px;
}

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

.service-block.reverse .service-content {
    grid-template-columns: 1fr 1fr;
}

.service-block.reverse .service-text {
    order: 2;
}

.service-block.reverse .service-image {
    order: 1;
}

.service-text h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 2.2rem;
}

.service-text ul {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.service-text li {
    margin-bottom: 0.8rem;
    color: var(--text-light);
}

.service-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    line-height: 0;
    display: block;
}

.service-image img {
    width: 100%;
    height: auto;
    display: block;
    vertical-align: bottom;
}

.hatha-yoga-image {
    align-self: start;
    min-height: 100%;
}

.hatha-yoga-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    max-height: none;
}

.service-images-wrapper {
    display: flex;
    flex-direction: column;
    gap: 6rem;
}

.prenatal-benefits {
    margin-top: 2rem;
    padding: 2rem;
    background: var(--background-light);
    border-radius: 15px;
}

.prenatal-benefits h4 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

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

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.benefit-item i {
    color: var(--secondary-color);
    font-size: 1.2rem;
}

.benefit-item span {
    font-size: 0.9rem;
    color: var(--text-dark);
}

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

.posture-card {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.posture-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.posture-card img {
    width: 120px;
    height: 120px;
    object-fit: contain;
    margin-bottom: 1rem;
}

.posture-card h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.posture-card p {
    color: var(--text-light);
    font-size: 0.9rem;
}

.yoga-seniors {
    background: white;
    padding: 4rem 0;
}

.seniors-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-top: 2rem;
}

.seniors-text ul {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.seniors-text li {
    margin-bottom: 0.8rem;
    color: var(--text-light);
}

.seniors-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
}

.workshop-info {
    padding: 4rem 0;
}

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

.workshop-type {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.workshop-type h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-align: center;
}

.workshop-type ul {
    list-style: none;
    padding: 0;
}

.workshop-type li {
    padding: 0.8rem;
    margin-bottom: 0.5rem;
    background: var(--background-light);
    border-radius: 8px;
    border-left: 4px solid var(--secondary-color);
}

.section-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    color: var(--text-light);
    font-size: 1.1rem;
}

/* Tarifs Page Styles */
.pricing-category {
    margin: 4rem 0;
    padding: 3rem 0;
}

.pricing-category:nth-child(even) {
    background: var(--background-light);
    margin-left: -20px;
    margin-right: -20px;
    padding-left: 20px;
    padding-right: 20px;
}

.pricing-category h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.pricing-category h2 i {
    font-size: 2rem;
}

.packages-section {
    margin-top: 3rem;
}

.packages-title {
    text-align: center;
    color: var(--text-dark);
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

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

.package-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    position: relative;
}

.package-card.featured {
    border: 2px solid var(--accent-color);
    transform: scale(1.02);
}

.package-card.featured::before {
    content: 'Recommandé';
    position: absolute;
    top: 15px;
    right: -35px;
    background: var(--accent-color);
    color: white;
    padding: 5px 40px;
    transform: rotate(45deg);
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 1;
}

.package-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.package-header {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: white;
    padding: 2rem;
    text-align: center;
}

.package-header h4 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.package-price {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.package-price .currency {
    font-size: 1.2rem;
}

.package-savings {
    background: rgba(255, 255, 255, 0.2);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    display: inline-block;
}

.package-content {
    padding: 2rem;
}

.package-content ul {
    list-style: none;
    padding: 0;
}

.package-content li {
    padding: 0.8rem 0;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    border-bottom: 1px solid var(--border-color);
}

.package-content li:last-child {
    border-bottom: none;
}

.package-content i {
    color: var(--secondary-color);
}

.yoga-info {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 3rem;
    box-shadow: var(--shadow);
}

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

.detail-item {
    display: flex;
    align-items: start;
    gap: 1rem;
}

.detail-item i {
    color: var(--primary-color);
    font-size: 2rem;
    margin-top: 0.5rem;
}

.detail-item h4 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.detail-item p {
    color: var(--text-light);
    line-height: 1.4;
}

.workshop-pricing {
    text-align: center;
    margin: 3rem 0;
}

.workshop-price-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: var(--shadow);
    max-width: 300px;
    margin: 0 auto;
}

.workshop-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-color), #FFD700);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.workshop-icon i {
    color: white;
    font-size: 2rem;
}

.workshop-price {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary-color);
    margin: 1rem 0;
}

.workshop-price .currency {
    font-size: 1.5rem;
}

.workshop-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.workshop-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.workshop-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.workshop-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.workshop-content {
    padding: 1.5rem;
}

.workshop-content h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.workshop-content p {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.workshop-content ul {
    list-style: none;
    padding: 0;
}

.workshop-content li {
    padding: 0.3rem 0;
    color: var(--text-dark);
    position: relative;
    padding-left: 1.5rem;
}

.workshop-content li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

.seasonal-info {
    text-align: center;
    margin: 3rem 0;
}

.seasonal-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: var(--shadow);
    max-width: 400px;
    margin: 0 auto;
}

.seasonal-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.seasonal-icon i {
    color: white;
    font-size: 2rem;
}

.seasonal-price {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary-color);
    margin: 1rem 0;
}

.seasonal-price .currency {
    font-size: 1.5rem;
}

.seasonal-card ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.seasonal-card li {
    padding: 0.5rem 0;
    color: var(--text-dark);
    position: relative;
    padding-left: 1.5rem;
}

.seasonal-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
}

.group-pricing {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 2rem 0 3rem;
}

.group-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    position: relative;
}

.group-card.featured {
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
}

.group-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.group-card h4 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.group-price {
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.group-price .currency {
    font-size: 1.2rem;
}

.group-services {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: var(--shadow);
}

.group-services h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-align: center;
}

.group-services ul {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 0.5rem;
}

.group-services li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.group-services i {
    color: var(--secondary-color);
}

/* À propos Page Styles */
.about-section {
    padding: 4rem 0;
}

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

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

.philosophy-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.philosophy-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.philosophy-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.philosophy-icon i {
    color: white;
    font-size: 2rem;
}

.philosophy-card h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.journey-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    margin: 3rem 0;
}

.journey-text h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.journey-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.certifications-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.certification-item {
    display: flex;
    justify-content: center;
    align-items: center;
}

.certification-item img {
    width: 100%;
    max-width: 350px;
    height: auto;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.certification-item img:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.specialities-section {
    background: var(--background-light);
    padding: 4rem 0;
}

.specialities-content {
    max-width: 900px;
    margin: 0 auto;
}

.speciality-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.speciality-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.speciality-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.speciality-header i {
    color: var(--primary-color);
    font-size: 2rem;
}

.speciality-header h4 {
    color: var(--text-dark);
    margin: 0;
}

.values-section {
    background: white;
    padding: 4rem 0;
}

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

.value-item {
    text-align: center;
    padding: 1.5rem;
}

.value-item i {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.value-item h4 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.quote-section {
    background: var(--background-light);
    padding: 4rem 0;
    text-align: center;
}

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

.quote-content blockquote {
    font-size: 1.5rem;
    font-style: italic;
    color: var(--primary-color);
    margin-bottom: 2rem;
    position: relative;
    padding: 2rem;
}

.quote-content blockquote::before {
    content: '"';
    font-size: 4rem;
    position: absolute;
    top: -10px;
    left: 10px;
    color: var(--accent-color);
}

.quote-content cite {
    display: block;
    margin-top: 1rem;
    font-size: 1rem;
    color: var(--text-light);
}

/* Contact Page Styles */
.contact-section {
    padding: 4rem 0;
}

.contact-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.contact-intro h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.schedule-section {
    background: var(--background-light);
    padding: 4rem 0;
}

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

.schedule-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.schedule-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 2rem;
    text-align: center;
}

.schedule-header i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.schedule-header h3 {
    color: white;
    margin-bottom: 0.5rem;
}

.schedule-address {
    opacity: 0.9;
    font-size: 0.95rem;
}

.schedule-content {
    padding: 2rem;
}

.schedule-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--border-color);
}

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

.schedule-item.special {
    background: rgba(107, 142, 35, 0.05);
    padding: 0.8rem;
    border-radius: 5px;
}

.day {
    font-weight: 500;
    color: var(--text-dark);
}

.time {
    font-weight: 600;
    color: var(--primary-color);
}

.schedule-item small {
    display: block;
    font-size: 0.8rem;
    color: var(--text-light);
}

.schedule-note {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(107, 142, 35, 0.1);
    border-radius: 8px;
    color: var(--text-dark);
    font-size: 0.9rem;
}

.schedule-note i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

.course-info h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.course-note {
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--background-light);
    border-radius: 10px;
}

.course-note p {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.course-note i {
    color: var(--primary-color);
}

.map-section {
    background: white;
    padding: 4rem 0;
}

.map-container {
    margin: 3rem 0;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-placeholder {
    text-align: center;
    color: var(--text-light);
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.map-placeholder i {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.map-placeholder h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.map-placeholder p {
    margin-bottom: 1.5rem;
}

.map-placeholder .btn {
    margin-top: 1rem;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.3s ease;
}

.map-placeholder .btn i {
    font-size: 1.3rem;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.3rem;
    border-radius: 50%;
}

.map-placeholder .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(107, 142, 35, 0.3);
}

.map-placeholder .btn:hover i {
    background: rgba(255, 255, 255, 0.3);
}

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

.location-item {
    display: flex;
    align-items: start;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.location-item i {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-top: 0.2rem;
}

.location-item h4 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.location-item p {
    color: var(--text-light);
    line-height: 1.4;
}

/* FAQ Styles */
.faq-section {
    background: var(--background-light);
    padding: 4rem 0;
}

.faq-list {
    max-width: 800px;
    margin: 3rem auto 0;
}

.faq-item {
    background: white;
    border-radius: 10px;
    margin-bottom: 1rem;
    box-shadow: var(--shadow);
    overflow: visible;
}

.faq-question {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    cursor: default;
    background: white;
}

.faq-question i:first-child {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.faq-question h4 {
    flex-grow: 1;
    margin: 0;
    color: var(--text-dark);
    font-weight: 600;
}

.faq-question i:last-child {
    display: none;
}

.faq-answer {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-light);
    line-height: 1.6;
    display: block;
    opacity: 1;
}

/* Form Styles */
.checkbox-group {
    margin: 1.5rem 0;
}

.checkbox-label {
    display: flex;
    align-items: start;
    gap: 0.8rem;
    cursor: pointer;
    font-size: 0.95rem;
    line-height: 1.4;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid var(--border-color);
    border-radius: 4px;
    position: relative;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-top: 2px;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-weight: bold;
    font-size: 12px;
}

.form-note {
    text-align: center;
    color: var(--text-light);
    font-size: 0.9rem;
    margin-top: 1rem;
}

.form-note i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

/* Responsive */
/* Tablettes (768px - 1024px) */
@media (max-width: 1024px) {
    .pricing-cards {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .contact-info {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .workshop-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .certifications-grid {
        gap: 1.5rem;
    }

    .certification-item img {
        max-width: 300px;
    }
}

/* Mobile (max 768px) */
@media (max-width: 768px) {
    .page-title {
        font-size: 2.5rem;
    }

    .page-subtitle {
        font-size: 1.1rem;
    }

    .consultation-types {
        grid-template-columns: 1fr;
    }

    .about-hero {
        grid-template-columns: 1fr;
    }

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

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

    .journey-text {
        padding: 0 15px;
    }

    .certifications-grid {
        flex-direction: row;
        gap: 1rem;
        justify-content: center;
        flex-wrap: wrap;
    }

    .certification-item img {
        max-width: 250px;
    }

    .timeline::before {
        left: 20px;
    }

    .timeline-item {
        width: calc(100% - 40px);
        margin-left: 40px;
        text-align: left;
        padding-left: 0;
        padding-right: 0;
    }

    .timeline-item.left,
    .timeline-item.right {
        left: 0;
        text-align: left;
        padding-left: 0;
        padding-right: 0;
    }

    .timeline-item::before {
        left: -30px;
    }

    .timeline-item.left::before,
    .timeline-item.right::before {
        left: -30px;
        right: auto;
    }

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

    .service-block.reverse .service-text {
        order: 1;
    }

    .service-block.reverse .service-image {
        order: 2;
    }

    .service-image {
        display: flex;
    }

    .service-image img {
        object-fit: cover;
        height: 100%;
    }

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

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

    .workshop-types {
        grid-template-columns: 1fr;
    }

    .workshop-list {
        grid-template-columns: 1fr;
    }

    .pricing-cards {
        grid-template-columns: 1fr;
    }

    .pricing-card {
        margin: 0 auto;
        max-width: 400px;
    }

    .contact-info {
        grid-template-columns: 1fr;
    }

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

    .map-container {
        height: auto;
        min-height: 350px;
        padding: 2rem 1rem;
    }

    .workshop-item {
        grid-template-columns: 1fr;
    }

    .workshop-item img {
        height: 200px;
    }

    .service-images-wrapper {
        gap: 3rem;
    }

    .location-details {
        grid-template-columns: 1fr;
    }

    .certifications-grid {
        flex-direction: column;
        gap: 1.5rem;
    }

    .certification-item {
        width: 100%;
    }

    .certification-item img {
        max-width: 100%;
    }
}

/* Petits écrans (max 480px) */
@media (max-width: 480px) {
    .page-title {
        font-size: 2rem;
    }

    .page-subtitle {
        font-size: 1rem;
    }

    .container {
        padding: 0 15px;
    }

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

    .pricing-card,
    .package-card {
        padding: 1.5rem;
    }

    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.95rem;
    }

    .contact-card {
        padding: 1.5rem;
    }

    .schedule-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .map-container {
        height: auto;
        min-height: 320px;
        padding: 1.5rem 1rem;
    }

    .map-placeholder .btn {
        padding: 0.7rem 1.5rem;
        font-size: 1rem;
    }

    .faq-question {
        padding: 1rem;
        font-size: 0.95rem;
    }

    .faq-answer {
        padding: 0 1rem 1rem;
        font-size: 0.9rem;
    }

    .workshop-item img {
        height: 150px;
    }

    .service-images-wrapper {
        gap: 2rem;
    }

    .service-image {
        display: flex;
    }

    .service-image img {
        object-fit: cover;
        height: 100%;
    }

    h2 {
        font-size: 1.6rem;
    }

    h3 {
        font-size: 1.3rem;
    }
}