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

:root {
    /* Colors based on client preferences */
    --primary-bg: #151515; /* Dark charcoal */
    --secondary-bg: #252525; /* Lighter charcoal */
    --tertiary-bg: #1a1a1a; /* Darker charcoal for depth */
    --accent-color: #ffc107; /* Golden yellow */
    --accent-hover: #ffb300; /* Darker golden yellow */
    --accent-light: #fff3cd; /* Light golden yellow */
    --accent-dark: #e0a800; /* Dark golden yellow */
    --text-light: #ffffff;
    --text-cream: #f8f9fa;
    --text-gray: #adb5bd;
    --text-muted: #6c757d;
    --border-color: #343a40;
    --border-light: #495057;
    --success-color: #28a745;
    --warning-color: #ffc107;
    --error-color: #dc3545;
    
    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--text-light);
    background-color: var(--primary-bg);
}

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

/* Header */
.header {
    background-color: var(--primary-bg);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
    backdrop-filter: blur(10px);
}

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

.logo h1 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 0.2rem;
}

.logo p {
    font-size: 0.9rem;
    color: var(--text-gray);
    font-weight: 300;
}

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

.nav-menu a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 0.5rem 1rem;
}

.nav-menu a:hover {
    color: var(--accent-color);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-light);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    min-height: 100vh;
    padding: 6rem 2rem 2rem;
    background: linear-gradient(135deg, var(--primary-bg) 0%, var(--secondary-bg) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../images/hero-bg-pattern.png');
    background-repeat: no-repeat;
    background-position: right center;
    background-size: cover;
    opacity: 0.1;
    z-index: 0;
}

.hero-content {
    flex: 1;
    max-width: 600px;
    z-index: 1;
    position: relative;
}

.hero h2 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-cream);
    margin-bottom: 2rem;
    max-width: 500px;
}

.hero-image {
    flex: 1;
    text-align: center;
    z-index: 1;
    position: relative;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Buttons */
.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--accent-color);
    color: var(--primary-bg);
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 140, 66, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

.btn-secondary:hover {
    background-color: var(--accent-color);
    color: var(--primary-bg);
}

/* About Section */
.about {
    padding: 6rem 0;
    background-color: var(--secondary-bg);
    position: relative;
    overflow: hidden;
}

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

.about-decoration {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.nature-vector {
    max-width: 100%;
    height: auto;
    opacity: 0.8;
    filter: brightness(1.1);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.nature-vector:hover {
    transform: scale(1.05);
    opacity: 1;
}

.about-text-clean {
    text-align: left;
}

.about h3 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.about-description {
    margin-bottom: 2.5rem;
}

.about-lead {
    font-size: 1.2rem;
    color: var(--text-cream);
    line-height: 1.7;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.about-mission {
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.about-public {
    font-size: 1rem;
    color: var(--text-gray);
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 0;
}

.about-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Services Teaser Section */
.services-teaser {
    padding: 6rem 0;
    background-color: var(--primary-bg);
}

.services-teaser h3 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--accent-color);
    text-align: center;
    margin-bottom: 1rem;
}

.services-subtitle {
    text-align: center;
    color: var(--text-gray);
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.service-highlight {
    text-align: center;
    padding: 2rem;
    background-color: var(--secondary-bg);
    border-radius: 15px;
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-highlight:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
    color: var(--accent-color);
}

.service-highlight h4 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.service-highlight p {
    color: var(--text-cream);
    font-size: 1rem;
    line-height: 1.5;
}

.services-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Process Section */
.process {
    padding: 6rem 0;
    background-color: var(--secondary-bg);
}

.process h3 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--accent-color);
    text-align: center;
    margin-bottom: 3rem;
}

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

.step {
    text-align: center;
    padding: 2rem;
}

.step-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--accent-color);
    color: var(--primary-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 1rem;
}

.step h4 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.step p {
    color: var(--text-cream);
}

/* Blog Section */
.blog-section {
    padding: 6rem 0;
    background-color: var(--secondary-bg);
}

.blog-section h3 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--accent-color);
    text-align: center;
    margin-bottom: 1rem;
}

.blog-subtitle {
    text-align: center;
    color: var(--text-gray);
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.blog-highlight {
    text-align: center;
    padding: 2rem;
    background-color: var(--primary-bg);
    border-radius: 15px;
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-highlight:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.blog-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
    color: var(--accent-color);
}

.blog-highlight h4 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.blog-highlight p {
    color: var(--text-cream);
    font-size: 1rem;
    line-height: 1.5;
}

.blog-cta {
    text-align: center;
}

/* CTA Contact Section */
.cta-contact {
    padding: 6rem 0;
    background: var(--primary-bg);
    color: var(--text-light);
}

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

.cta-text h3 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.cta-subtitle {
    font-size: 1.2rem;
    color: var(--text-cream);
    margin-bottom: 2rem;
    opacity: 0.9;
}

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

.cta-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-light);
    font-weight: 500;
}

.cta-feature i {
    font-size: 1.2rem;
    width: 20px;
}

.cta-actions {
    text-align: center;
}

.btn-large {
    font-size: 1.2rem;
    padding: 1.5rem 3rem;
    margin-bottom: 2rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: var(--accent-color);
    color: var(--primary-bg);
    border: 2px solid var(--accent-color);
}

.btn-large:hover {
    background-color: transparent;
    color: var(--accent-color);
    border-color: var(--accent-color);
}

.cta-contact-info {
    color: var(--text-light);
}

.cta-contact-info p {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    opacity: 0.9;
}

/* Footer */
.footer {
    background-color: var(--accent-color);
    color: var(--primary-bg);
    padding: 4rem 0 1rem;
}

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

.footer-section h4 {
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.footer-logo h4 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.footer-logo p {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 1rem;
}

.footer-description {
    line-height: 1.6;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

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

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--primary-bg);
    color: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.footer-social a:hover {
    background-color: var(--secondary-bg);
    transform: translateY(-2px);
}

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

.footer-section ul li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-section ul li i {
    width: 16px;
    opacity: 0.8;
}

.footer-section a {
    color: var(--primary-bg);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-section a:hover {
    opacity: 0.8;
    transform: translateX(3px);
}

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

.footer-contact i {
    width: 16px;
    opacity: 0.8;
}

.footer-contact a {
    color: var(--primary-bg);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer-contact a:hover {
    opacity: 0.8;
}

.footer-bottom {
    border-top: 1px solid rgba(13, 40, 24, 0.2);
    padding-top: 1.5rem;
}

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

.footer-legal {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-legal a {
    color: var(--primary-bg);
    text-decoration: none;
    font-size: 0.9rem;
    transition: opacity 0.3s ease;
}

.footer-legal a:hover {
    opacity: 0.8;
}

.footer-legal span {
    opacity: 0.6;
}

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

@media (max-width: 992px) {
    .footer {
        padding: 3rem 0 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
        margin-bottom: 2rem;
    }
    
    .footer-section:nth-child(1) {
        grid-column: 1 / -1;
        text-align: center;
        margin-bottom: 1rem;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-logo h4 {
        font-size: 1.6rem;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 2.5rem 0 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .footer-section:nth-child(1) {
        grid-column: auto;
        margin-bottom: 0;
    }
    
    .footer-logo h4 {
        font-size: 1.5rem;
    }
    
    .footer-description {
        font-size: 0.95rem;
    }
    
    .footer-social {
        justify-content: center;
        margin-top: 1rem;
    }
    
    .footer-social a {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .footer-section h4 {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
    
    .footer-section ul li,
    .footer-contact p {
        justify-content: center;
        margin-bottom: 0.6rem;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .footer-legal {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .footer-legal a {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 2rem 0 1rem;
    }
    
    .footer-content {
        gap: 1.5rem;
    }
    
    .footer-logo h4 {
        font-size: 1.3rem;
    }
    
    .footer-description {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .footer-social {
        gap: 0.8rem;
    }
    
    .footer-social a {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
    }
    
    .footer-section h4 {
        font-size: 1.1rem;
    }
    
    .footer-section ul li,
    .footer-contact p {
        font-size: 0.9rem;
    }
    
    .footer-section ul li i,
    .footer-contact i {
        width: 14px;
        font-size: 0.85rem;
    }
    
    .footer-bottom {
        padding-top: 1rem;
    }
    
    .footer-legal {
        gap: 0.8rem;
    }
    
    .footer-legal a {
        font-size: 0.8rem;
    }
    
    .footer-legal span {
        font-size: 0.8rem;
    }
}

/* Mobile Navigation Styles */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background-color: var(--primary-bg);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.3s ease;
        z-index: 999;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu li {
        margin: 1rem 0;
    }
    
    .nav-menu a {
        font-size: 1.5rem;
        padding: 1rem 2rem;
    }
    
    .nav-toggle {
        display: flex;
        z-index: 1001;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
    
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 8rem 1rem 2rem;
    }
    
    .hero h2 {
        font-size: 2.5rem;
    }
    
    .hero-content {
        margin-bottom: 2rem;
    }
    
    .about-content-simple {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .about-decoration {
        order: 2;
        margin-top: 2rem;
    }
    
    .about-text-clean {
        order: 1;
        text-align: center;
    }
    
    .nature-vector {
        max-width: 200px;
    }
    
    .about-cta {
        justify-content: center;
    }
    
    .blog-highlights {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .cta-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .cta-features {
        align-items: center;
    }
    
    .btn-large {
        width: 100%;
        max-width: 300px;
    }
    
    .services-preview {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .hero h2 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .services h3,
    .about h3,
    .contact h3,
    .process h3 {
        font-size: 2rem;
    }
}

/* Page-specific Styles */

/* Hero Page */
.hero-page {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, var(--primary-bg) 0%, var(--secondary-bg) 100%);
    text-align: center;
}

.hero-page-content h1 {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-cream);
    max-width: 600px;
    margin: 0 auto;
}

/* Prestations Intro */
.prestations-intro {
    padding: 4rem 0;
    background-color: var(--secondary-bg);
    text-align: center;
}

.intro-text {
    font-size: 1.2rem;
    color: var(--text-cream);
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto;
    font-style: italic;
}

/* Prestations Main */
.prestations-main {
    padding: 6rem 0;
    background-color: var(--primary-bg);
}

.prestation-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 8rem;
    min-height: 500px;
}

.prestation-card:last-child {
    margin-bottom: 0;
}

.prestation-card.reverse {
    direction: rtl;
}

.prestation-card.reverse > * {
    direction: ltr;
}

.prestation-image-large {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    height: 400px;
}

.prestation-image-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.prestation-card:hover .prestation-image-large img {
    transform: scale(1.05);
}

.prestation-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(13, 40, 24, 0.7) 0%, rgba(255, 140, 66, 0.3) 100%);
    display: flex;
    align-items: flex-end;
    padding: 2rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.prestation-card:hover .prestation-overlay {
    opacity: 1;
}

.prestation-overlay .prestation-icon {
    background-color: var(--accent-color);
    color: var(--primary-bg);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.prestation-content-large {
    padding: 2rem 0;
}

.prestation-content-large h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.prestation-lead {
    font-size: 1.3rem;
    color: var(--accent-color);
    font-weight: 500;
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.prestation-content-large p {
    font-size: 1.1rem;
    color: var(--text-cream);
    line-height: 1.7;
    margin-bottom: 2rem;
}

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

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-light);
    font-weight: 500;
}

.feature-item i {
    color: var(--accent-color);
    font-size: 1.2rem;
    width: 20px;
    text-align: center;
}

/* Blog Integration */
.blog-integration {
    padding: 6rem 0;
    background-color: var(--secondary-bg);
}

.blog-integration h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--accent-color);
    text-align: center;
    margin-bottom: 3rem;
}

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

.blog-feature {
    text-align: center;
    padding: 2rem;
    background-color: var(--primary-bg);
    border-radius: 10px;
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease;
}

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

.blog-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
    color: var(--accent-color);
}

.blog-feature h3 {
    color: var(--accent-color);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.blog-feature p {
    color: var(--text-cream);
    font-size: 0.95rem;
    line-height: 1.5;
}

.blog-cta {
    text-align: center;
}

/* Navigation Active State */
.nav-menu a.active {
    color: var(--accent-color);
    background-color: rgba(255, 140, 66, 0.1);
    border-radius: 5px;
}

/* Contact Process Section */
.contact-process {
    padding: 6rem 0;
    background-color: var(--secondary-bg);
}

.contact-process h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--accent-color);
    text-align: center;
    margin-bottom: 1rem;
}

.process-intro {
    text-align: center;
    color: var(--text-gray);
    font-size: 1.1rem;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.timeline-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    align-items: flex-start;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--accent-color);
    color: var(--primary-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.timeline-content h3 {
    color: var(--accent-color);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: var(--text-cream);
    line-height: 1.6;
}

/* Contact Main Section */
.contact-main {
    padding: 6rem 0;
    background-color: var(--primary-bg);
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info-section h2,
.contact-form-section h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 2rem;
}

/* Contact Card */
.contact-card {
    background-color: var(--secondary-bg);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid var(--border-color);
    margin-bottom: 2rem;
}

.contact-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.contact-avatar {
    font-size: 3rem;
    color: var(--accent-color);
}

.contact-details h3 {
    color: var(--accent-color);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.contact-details p {
    color: var(--text-gray);
    margin: 0;
}

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

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.method-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background-color: var(--accent-color);
    color: var(--primary-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.method-info h4 {
    color: var(--accent-color);
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.method-info p {
    color: var(--text-cream);
    margin-bottom: 0.3rem;
    font-size: 0.95rem;
}

/* Contact Notes */
.contact-notes {
    background-color: var(--primary-bg);
    border-radius: 10px;
    padding: 1.5rem;
    border: 1px solid var(--border-color);
}

.contact-notes h4 {
    color: var(--accent-color);
    font-size: 1.1rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-notes ul {
    list-style: none;
    color: var(--text-cream);
}

.contact-notes li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.contact-notes li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

/* Main Contact Form */
.main-contact-form {
    background-color: var(--secondary-bg);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid var(--border-color);
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background-color: var(--primary-bg);
    color: var(--text-light);
    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: var(--accent-color);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-gray);
}

.form-group textarea {
    resize: none;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.checkbox-group label {
    color: var(--text-gray);
    font-size: 0.9rem;
    line-height: 1.4;
    font-weight: normal;
    margin-bottom: 0;
}

/* FAQ Section */
.contact-faq {
    padding: 6rem 0;
    background-color: var(--secondary-bg);
}

.contact-faq h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--accent-color);
    text-align: center;
    margin-bottom: 3rem;
}

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

.faq-item {
    background-color: var(--primary-bg);
    border-radius: 10px;
    padding: 2rem;
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.faq-item h3 {
    color: var(--accent-color);
    font-size: 1.1rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.faq-item p {
    color: var(--text-cream);
    line-height: 1.6;
    margin: 0;
}

/* Legal Content Section */
.legal-content {
    padding: 6rem 0;
    background-color: var(--primary-bg);
}

.legal-document {
    max-width: 900px;
    margin: 0 auto;
}

.legal-section {
    margin-bottom: 3rem;
    background-color: var(--secondary-bg);
    border-radius: 10px;
    padding: 2rem;
    border: 1px solid var(--border-color);
}

.legal-section:last-child {
    margin-bottom: 0;
}

.legal-section h2 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 1rem;
}

.legal-section h2 i {
    font-size: 1.2rem;
}

.legal-info {
    color: var(--text-cream);
    line-height: 1.7;
}

.legal-info p {
    margin-bottom: 1rem;
}

.legal-info p:last-child {
    margin-bottom: 0;
}

.legal-info strong {
    color: var(--accent-color);
    font-weight: 600;
}

.legal-info a {
    color: var(--accent-color);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.legal-info a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

.legal-info ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.legal-info ul li {
    margin-bottom: 0.5rem;
    color: var(--text-cream);
}

/* Responsive for legal page */
@media (max-width: 768px) {
    .legal-content {
        padding: 4rem 0;
    }
    
    .legal-section {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .legal-section h2 {
        font-size: 1.3rem;
        flex-direction: column;
        gap: 0.3rem;
        text-align: center;
    }
    
    .legal-info {
        font-size: 0.95rem;
    }
}

/* Responsive for contact page */
@media (max-width: 768px) {
    .timeline-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .contact-header {
        flex-direction: column;
        text-align: center;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

/* Responsive for prestations page */
@media (max-width: 768px) {
    .hero-page-content h1 {
        font-size: 2.2rem;
    }
    
    .prestation-card {
        grid-template-columns: 1fr;
        gap: 3rem;
        margin-bottom: 6rem;
        min-height: auto;
    }
    
    .prestation-card.reverse {
        direction: ltr;
    }
    
    .prestation-image-large {
        height: 300px;
        order: -1;
    }
    
    .prestation-content-large {
        text-align: center;
        padding: 1rem 0;
    }
    
    .prestation-content-large h2 {
        font-size: 2rem;
    }
    
    .prestation-features {
        align-items: center;
    }
    
    .blog-features {
        grid-template-columns: 1fr;
    }
} 