/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Liberation Sans', Arial, Helvetica, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    margin-bottom: 1rem;
    color: #004693;
}

h1 { font-size: 2rem; }
h2 { font-size: 1.75rem; }
h3 { font-size: 1.5rem; }

p {
    margin-bottom: 1rem;
}

a {
    color: #004693;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    text-align: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

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

.btn-primary:hover {
    background-color: #003366;
    text-decoration: none;
}

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

.btn-secondary:hover {
    background-color: #004693;
    color: white;
    text-decoration: none;
}

/* Header */
.header {
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    position: relative;
}

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

.logo-img {
    height: 64px;
    width: auto;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #004693;
}

/* Navigation */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 3px;
    background-color: #004693;
    margin: 3px 0;
    transition: 0.3s;
}

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

.nav-link {
    font-weight: 500;
    color: #333;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #004693;
    text-decoration: none;
}

/* Hero section */
.hero {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 4rem 0;
}

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

.hero-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #004693;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #666;
    margin-bottom: 2rem;
}

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

/* Section titles */
.section-title {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2rem;
    color: #004693;
}

/* Services section */
.services {
    padding: 4rem 0;
    background-color: #fff;
}

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

.service-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid #e9ecef;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,70,147,0.1);
}

.service-icon {
    color: #004693;
    margin-bottom: 1.5rem;
}

.service-title {
    color: #004693;
    margin-bottom: 1rem;
}

.service-description {
    color: #666;
    margin-bottom: 1.5rem;
}

.service-proof {
    border-top: 1px solid #e9ecef;
    padding-top: 1.5rem;
}

.testimonial {
    font-style: italic;
    color: #555;
    margin-bottom: 0.5rem;
    border-left: 4px solid #004693;
    padding-left: 1rem;
}

.testimonial-author {
    font-size: 0.9rem;
    color: #777;
    margin-bottom: 1rem;
}

/* About section */
.about {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

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

.about-description {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    text-align: center;
}

.expertise {
    margin-bottom: 2rem;
}

.expertise h3 {
    margin-bottom: 1rem;
    text-align: center;
}

.tech-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 2rem;
}

.tech-tag {
    background-color: #004693;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 16px;
    font-size: 0.8rem;
    font-weight: 500;
}

.tech-tag:hover {
    transform: scale(1.05);
}

.tech-tag.expert {
    background-color: #28a745;
}

.tech-tag.advanced {
    background-color: #007bff;
}

.tech-tag.intermediate {
    background-color: #6c757d;
}

.experience {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: 1fr;
    text-align: center;
}

.experience-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.experience-item strong {
    font-size: 1.5rem;
    color: #004693;
    font-weight: 700;
}

.experience-item span {
    color: #666;
}

/* Contact section */
.contact {
    padding: 4rem 0;
    background-color: #fff;
}

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

.contact-info h3 {
    margin-bottom: 1rem;
}

.contact-info p {
    color: #666;
    margin-bottom: 2rem;
}

.contact-methods {
    display: grid;
    gap: 1rem;
    grid-template-columns: 1fr;
}

.contact-method {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.contact-method strong {
    color: #004693;
    font-weight: 600;
}

.contact-method a {
    color: #666;
}

.contact-method a:hover {
    color: #004693;
}

/* Form styles */
.form {
    display: grid;
    gap: 1.5rem;
}

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

.form-group label {
    font-weight: 500;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #004693;
    box-shadow: 0 0 0 2px rgba(0,70,147,0.1);
}

/* Page-specific styles */
.page-hero {
    background: linear-gradient(135deg, #004693 0%, #0056b3 100%);
    color: white;
    padding: 3rem 0;
}

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

.page-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white;
}

.page-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
}

.breadcrumb a:hover {
    color: white;
}

.breadcrumb-separator {
    opacity: 0.6;
}

/* Active navigation link */
.nav-link.active {
    color: #004693;
    font-weight: 600;
}

/* Formations overview */
.formations-overview {
    padding: 3rem 0;
    background-color: #f8f9fa;
}

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

.overview-content h2 {
    margin-bottom: 1.5rem;
}

.overview-content p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
}

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

.stat-item {
    text-align: center;
}

.stat-item strong {
    display: block;
    font-size: 2rem;
    color: #004693;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-item span {
    color: #666;
    font-size: 0.9rem;
}

/* Formations catalog */
.formations-catalog {
    padding: 4rem 0;
    background-color: white;
}

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

.formation-category:last-child {
    margin-bottom: 0;
}

.category-title {
    font-size: 1.75rem;
    color: #004693;
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
}

.category-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: #004693;
    margin: 0.75rem auto 0;
}

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

.formation-card {
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.formation-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,70,147,0.1);
}

.formation-header {
    background: #f8f9fa;
    padding: 1.5rem;
    border-bottom: 1px solid #e9ecef;
    display: flex;
    justify-content: space-between;
}

.formation-header h4 {
    color: #004693;
    font-size: 1.25rem;
    margin: 0;
}

.formation-meta span {
    background: #004693;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 16px;
    font-size: 0.85rem;
    font-weight: 500;
}

.archive {
	background-color: #ffffff;
    opacity: 60%;
}
.archive h1:after, a.archive:after {
	content: " (archive)";
}

.duration {
    background: #28a745 !important;
}

.level {
    background: #6c757d !important;
}

.formation-content {
    padding: 2rem;
}

.formation-content p {
    color: #666;
    margin-bottom: 1.5rem;
}

.formation-topics {
    list-style: none;
    margin-bottom: 2rem;
}

.formation-topics li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #555;
    border-bottom: 1px solid #f8f9fa;
}

.formation-topics li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
}

.formation-topics li:last-child {
    border-bottom: none;
}

.formation-testimonial {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 6px;
    border-left: 4px solid #004693;
}

.formation-testimonial blockquote {
    font-style: italic;
    color: #555;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.formation-testimonial cite {
    font-size: 0.85rem;
    color: #777;
    font-style: normal;
}

.formation-actions {
    margin-top: 1.5rem;
    text-align: center;
}

.formation-header h4 a {
    color: #004693;
    text-decoration: none;
}

.formation-header h4 a:hover {
    text-decoration: underline;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

/* Benefits section */
.formation-benefits {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

.benefits-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin-top: 3rem;
}

.benefit-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    border: 1px solid #e9ecef;
}

.benefit-icon {
    color: #004693;
    margin-bottom: 1.5rem;
}

.benefit-card h3 {
    color: #004693;
    margin-bottom: 1rem;
}

.benefit-card p {
    color: #666;
    margin: 0;
}

/* CTA section */
.formation-cta {
    padding: 4rem 0;
    background: linear-gradient(135deg, #004693 0%, #0056b3 100%);
    color: white;
}

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

.cta-content h2 {
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

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

.formation-cta .btn-secondary {
    border-color: white;
    color: white;
}

.formation-cta .btn-secondary:hover {
    background-color: white;
    color: #004693;
}

/* Course detail page styles */
.course-overview {
    padding: 3rem 0;
    background-color: white;
}

.course-info-grid {
    display: grid;
    gap: 3rem;
    grid-template-columns: 1fr;
}

.course-main-info h2 {
    margin-bottom: 1.5rem;
}

.course-description {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
}

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

.highlight-item {
    text-align: center;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.highlight-item strong {
    display: block;
    font-size: 1.5rem;
    color: #004693;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.highlight-item span {
    color: #666;
    font-size: 0.9rem;
}

.meta-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.meta-card h3 {
    margin-bottom: 1.5rem;
    color: #004693;
}

.meta-items {
    display: grid;
    gap: 1rem;
}

.meta-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid #e9ecef;
}

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

.meta-label {
    font-weight: 500;
    color: #333;
}

.meta-value {
    color: #666;
    text-align: right;
}

/* Audience section */
.course-audience {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

.audience-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin-top: 3rem;
}

.audience-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    border: 1px solid #e9ecef;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.audience-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,70,147,0.1);
}

.audience-icon {
    color: #004693;
    margin-bottom: 1.5rem;
}

.audience-card h3 {
    color: #004693;
    margin-bottom: 1rem;
}

.audience-card p {
    color: #666;
    margin: 0;
}

/* Prerequisites section */
.course-prerequisites {
    padding: 4rem 0;
    background-color: white;
}

.prerequisites-content {
    display: grid;
    gap: 3rem;
    grid-template-columns: 1fr;
    margin-top: 3rem;
}

.prerequisites-required,
.prerequisites-recommended {
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.prerequisites-required {
    background: #fff5f5;
    border-color: #fed7d7;
}

.prerequisites-recommended {
    background: #f0fff4;
    border-color: #c6f6d5;
}

.prerequisites-required h3 {
    color: #c53030;
    margin-bottom: 1.5rem;
}

.prerequisites-recommended h3 {
    color: #2f855a;
    margin-bottom: 1.5rem;
}

.prerequisites-list {
    list-style: none;
    margin: 0;
}

.prerequisites-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #555;
}

.prerequisites-required .prerequisites-list li::before {
    content: '●';
    position: absolute;
    left: 0;
    color: #c53030;
    font-weight: bold;
}

.prerequisites-recommended .prerequisites-list li::before {
    content: '○';
    position: absolute;
    left: 0;
    color: #2f855a;
    font-weight: bold;
}

/* Environment section */
.course-environment {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

.environment-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin-top: 3rem;
}

.environment-category {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.environment-category h3 {
    color: #004693;
    margin-bottom: 1.5rem;
}

.tech-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tech-item {
    background: #004693;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 16px;
    font-size: 0.85rem;
    font-weight: 500;
}

.tools-list,
.system-requirements {
    display: grid;
    gap: 1rem;
}

.tool-item,
.requirement-item {
    padding: 0.75rem 0;
    border-bottom: 1px solid #f8f9fa;
}

.tool-item:last-child,
.requirement-item:last-child {
    border-bottom: none;
}

/* Program section */
.course-program {
    padding: 4rem 0;
    background-color: white;
}

.program-days {
    margin-top: 3rem;
}

.program-day {
    background: #f8f9fa;
    border-radius: 8px;
    margin-bottom: 2rem;
    overflow: hidden;
    border: 1px solid #e9ecef;
}

.program-day:last-child {
    margin-bottom: 0;
}

.day-header {
    background: #004693;
    color: white;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.day-duration {
    background: rgba(255,255,255,0.2);
    padding: 0.25rem 0.75rem;
    border-radius: 16px;
    font-size: 0.85rem;
    font-weight: 500;
}

.day-content {
    padding: 2rem;
}

.day-content h4 {
    color: #004693;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.program-day .sect2 {
    list-style: none;
    margin: 0 0 1.5rem 0;
}

.program-day .sect2 li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #555;
    border-bottom: 1px solid #e9ecef;
}

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

.program-day .sect2 li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #004693;
    font-weight: bold;
}

.program-day .sect2 li strong {
    color: #28a745;
}

/* Outcomes section */
.course-outcomes {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

.outcomes-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin-top: 3rem;
}

.outcome-category {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.outcome-category h3 {
    color: #004693;
    margin-bottom: 1.5rem;
}

.outcomes-list,
.deliverables-list,
.certification-list {
    list-style: none;
    margin: 0;
}

.outcomes-list li,
.deliverables-list li,
.certification-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #555;
}

.outcomes-list li::before,
.deliverables-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
}

.certification-list li::before {
    content: '🏆';
    position: absolute;
    left: 0;
}

.certification-info p {
    color: #666;
    margin-bottom: 1rem;
}

/* Testimonial section */
.course-testimonial {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

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

.main-testimonial {
    font-size: 1.25rem;
    font-style: italic;
    color: #555;
    margin-bottom: 2rem;
    padding: 2rem;
    background: white;
    border-radius: 8px;
    border-left: 4px solid #004693;
}

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

.author-info strong {
    display: block;
    color: #004693;
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.author-info span {
    color: #666;
    font-size: 0.9rem;
}

.testimonial-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.stars {
    color: #ffd700;
    font-size: 1.25rem;
}

.rating-text {
    color: #004693;
    font-weight: 600;
}

/* Conseil page styles */
.conseil-overview {
    padding: 3rem 0;
    background-color: white;
}

.overview-content {
    max-width: 1000px;
    margin: 0 auto;
}

.overview-content h2 {
    text-align: center;
    margin-bottom: 1.5rem;
}

.overview-content p {
    font-size: 1.1rem;
    color: #666;
    text-align: center;
    margin-bottom: 3rem;
}

.conseil-values {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin-top: 3rem;
}

.value-item {
    text-align: center;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.value-icon {
    color: #004693;
    margin-bottom: 1.5rem;
}

.value-item h3 {
    color: #004693;
    margin-bottom: 1rem;
}

.value-item p {
    color: #666;
    margin: 0;
    font-size: 1rem;
}

/* Services grid */
.conseil-services {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

.services-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin-top: 3rem;
}

.service-detail-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid #e9ecef;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-detail-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,70,147,0.1);
}

.service-detail-card .service-icon {
    color: #004693;
    margin-bottom: 1.5rem;
}

.service-detail-card h3 {
    color: #004693;
    margin-bottom: 1rem;
}

.service-detail-card p {
    color: #666;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #555;
    border-bottom: 1px solid #f8f9fa;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
}

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

.service-duration {
    background: #e3f2fd;
    padding: 0.75rem;
    border-radius: 6px;
    color: #004693;
    font-size: 0.9rem;
    border-left: 4px solid #004693;
}

/* Projects section */
.conseil-projects {
    padding: 4rem 0;
    background-color: white;
}

.projects-intro {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.projects-grid {
    display: grid;
    gap: 3rem;
    margin-top: 3rem;
}

.project-card {
    background: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #e9ecef;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,70,147,0.1);
}

.project-header {
    background: #004693;
    color: white;
    padding: 2rem;
}

.project-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.project-type,
.project-duration {
    background: rgba(255,255,255,0.2);
    padding: 0.25rem 0.75rem;
    border-radius: 16px;
    font-size: 0.85rem;
    font-weight: 500;
}

.project-header h3 {
    color: white;
    margin: 0;
    font-size: 1.5rem;
}

.project-content {
    padding: 2rem;
}

.project-content h4 {
    color: #004693;
    margin-bottom: 1rem;
    margin-top: 2rem;
    font-size: 1.1rem;
}

.project-content h4:first-child {
    margin-top: 0;
}

.project-context p,
.project-solution p,
.project-results p {
    color: #666;
    margin-bottom: 1rem;
}

.project-challenges ul,
.project-solution ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.project-challenges li,
.project-solution li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #555;
}

.project-challenges li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: #dc3545;
}

.project-solution li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #004693;
    font-weight: bold;
}

.results-metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.metric-item {
    text-align: center;
    padding: 1rem;
    background: white;
    border-radius: 8px;
    border: 2px solid #e3f2fd;
}

.metric-item strong {
    display: block;
    font-size: 1.5rem;
    color: #004693;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.metric-item span {
    color: #666;
    font-size: 0.9rem;
}

.tech-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.project-card .tech-item {
    background: #004693;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 16px;
    font-size: 0.85rem;
    font-weight: 500;
}

/* Conseil testimonial */
.conseil-testimonial {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

/* Development page styles */
.dev-overview {
    padding: 3rem 0;
    background-color: white;
}

.dev-values {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin-top: 3rem;
}

/* Technologies section */
.dev-technologies {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

.tech-overview {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin-top: 3rem;
}

.tech-category-compact {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid #e9ecef;
    text-align: center;
}

.tech-category-compact h3 {
    color: #004693;
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.expertise-legend {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.legend-item .tech-tag {
    padding: 0.25rem 0.75rem;
    border-radius: 16px;
    font-size: 0.8rem;
    font-weight: 500;
    color: white;
}

.legend-text {
    color: #666;
    font-size: 0.9rem;
}

/* Dev projects section */
.dev-projects {
    padding: 4rem 0;
    background-color: white;
}

/* Dev testimonial */
.dev-testimonial {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

/* Dev CTA */
.common-cta {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.common-cta .cta-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.common-cta .cta-content h2 {
    margin-bottom: 1rem;
}

.common-cta .cta-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.common-cta .cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.common-cta .cta-info {
    opacity: 0.8;
}

/* Footer */
.footer {
    background-color: #004693;
    color: white;
    padding: 2rem 0;
}

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

.footer-left .logo-text {
    color: white;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

.footer-left p {
    color: rgba(255,255,255,0.8);
    margin: 0;
    font-size: 0.9rem;
}

.footer-right {
    display: flex;
    gap: 1.5rem;
}

.social-link {
    color: rgba(255,255,255,0.8);
    font-weight: 500;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: white;
    text-decoration: none;
}

.plan ul {
    padding-left: 40px;
}

/* Mobile styles */
@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: white;
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        flex-direction: column;
        padding: 1rem 0;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: all 0.3s ease;
        z-index: 1000;
    }
    
    .nav-menu.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    
    .nav-menu li {
        text-align: center;
        padding: 0.5rem 0;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
    }
    
    .contact-methods {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
}

/* Tablet styles */
@media (min-width: 769px) {
    .service-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr 1fr;
        align-items: start;
    }
    
    .contact-methods {
        grid-template-columns: 1fr 1fr;
    }
    
    .experience {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Desktop styles */
@media (min-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.375rem;
    }
    
    .service-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .hero-cta {
        flex-direction: row;
    }
    
    .btn {
        width: auto;
    }
    
    .formation-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .course-info-grid {
        grid-template-columns: 2fr 1fr;
    }
    
    .audience-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .prerequisites-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .environment-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .outcomes-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .conseil-values {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .dev-values {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .tech-overview {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .expertise-legend {
        flex-direction: row;
        justify-content: center;
    }
}