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

:root {
    --primary-color: #1a5f7a;
    --secondary-color: #2c8ba8;
    --accent-color: #57c4e5;
    --dark-color: #0f3443;
    --light-color: #f4f9fc;
    --text-color: #333333;
    --text-light: #666666;
    --border-color: #e0e0e0;
    --success-color: #28a745;
    --warning-color: #ffc107;
    --danger-color: #dc3545;
    --white: #ffffff;
    --shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 5px 25px rgba(0, 0, 0, 0.15);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

ul {
    list-style: none;
}

/* Container Utilities */
.container-fluid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

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

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

/* Navigation */
.main-navigation {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.brand-logo img {
    border-radius: 50%;
    border: 2px solid var(--primary-color);
}

.site-name {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 28px;
    color: var(--primary-color);
    cursor: pointer;
}

.nav-menu {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-menu a {
    padding: 8px 16px;
    border-radius: 5px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    background: var(--primary-color);
    color: var(--white);
}

.nav-menu i {
    margin-right: 5px;
}

/* Hero Section */
.hero-section {
    position: relative;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    padding: 100px 20px;
    text-align: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease;
}

.hero-subtitle {
    font-size: 24px;
    margin-bottom: 40px;
    opacity: 0.95;
    animation: fadeInUp 1s ease;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin: 40px 0;
    flex-wrap: wrap;
}

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

.stat-item i {
    font-size: 36px;
    margin-bottom: 10px;
}

.stat-number {
    display: block;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 14px;
    opacity: 0.9;
}

.cta-primary {
    display: inline-block;
    padding: 15px 40px;
    background: var(--white);
    color: var(--primary-color);
    border-radius: 30px;
    font-size: 18px;
    font-weight: 600;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

/* Content Sections */
.content-section {
    padding: 80px 20px;
}

.bg-light {
    background-color: var(--light-color);
}

.bg-gradient {
    background: linear-gradient(135deg, var(--dark-color) 0%, var(--primary-color) 100%);
    color: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.bg-gradient .section-title {
    color: var(--white);
}

.section-description {
    font-size: 18px;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto;
}

.light-text {
    color: var(--white);
}

.light-text .section-description {
    color: rgba(255, 255, 255, 0.9);
}

/* Grid Layouts */
.grid-layout {
    display: grid;
    gap: 30px;
}

.three-cols {
    grid-template-columns: repeat(3, 1fr);
}

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

/* Feature Cards */
.feature-card {
    background: var(--white);
    border-radius: 15px;
    padding: 40px 30px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    text-align: center;
}

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

.feature-card.highlight {
    border: 3px solid var(--accent-color);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: var(--white);
}

.blue-gradient {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.green-gradient {
    background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
}

.purple-gradient {
    background: linear-gradient(135deg, #ee0979 0%, #ff6a00 100%);
}

.feature-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.feature-card p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.feature-list {
    text-align: left;
}

.feature-list li {
    padding: 8px 0;
    color: var(--text-color);
}

.feature-list i {
    color: var(--success-color);
    margin-right: 10px;
}

/* Dual Column Layout */
.dual-column-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.column-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.accent-title {
    color: var(--primary-color);
}

.lead-text {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 30px;
}

.column-image img {
    border-radius: 15px;
    box-shadow: var(--shadow);
}

/* Process Steps */
.transition-process {
    margin-top: 30px;
}

.process-step {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.step-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
}

.step-content h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--dark-color);
}

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

/* Risk Timeline */
.risk-timeline {
    max-width: 1000px;
    margin: 0 auto;
}

.timeline-item {
    display: flex;
    gap: 30px;
    margin-bottom: 50px;
}

.timeline-marker {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 4px solid var(--white);
}

.low-risk {
    background: #28a745;
}

.medium-risk {
    background: #ffc107;
}

.high-risk {
    background: #dc3545;
}

.timeline-content {
    flex: 1;
    background: rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: 10px;
}

.timeline-content h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--white);
}

.risk-meter {
    height: 10px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    margin: 15px 0;
    position: relative;
    overflow: hidden;
}

.risk-meter::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    background: var(--white);
    border-radius: 5px;
}

.risk-meter.low::after {
    width: 30%;
}

.risk-meter.medium::after {
    width: 60%;
}

.risk-meter.high::after {
    width: 90%;
}

/* Philosophy Grid */
.thinking-continuous {
    text-align: center;
}

.centered-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 50px;
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.philosophy-card {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: left;
}

.philosophy-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 20px;
}

.philosophy-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.philosophy-card p {
    color: var(--text-light);
}

/* Countdown Section */
.countdown-section {
    background: var(--light-color);
    padding: 60px 20px;
}

.countdown-wrapper {
    text-align: center;
}

.countdown-wrapper h3 {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.time-unit {
    background: var(--white);
    padding: 25px 35px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    min-width: 120px;
}

.time-value {
    display: block;
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.time-label {
    font-size: 14px;
    color: var(--text-light);
    text-transform: uppercase;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 80px 20px;
    color: var(--white);
}

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

.cta-content-box h2 {
    font-size: 40px;
    margin-bottom: 20px;
}

.cta-text {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-primary-large,
.btn-secondary-large {
    padding: 15px 40px;
    border-radius: 30px;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary-large {
    background: var(--white);
    color: var(--primary-color);
}

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

.btn-primary-large:hover,
.btn-secondary-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Disclaimer Section */
.disclaimer-section {
    padding: 60px 20px;
    background: #fff8e1;
}

.disclaimer-box {
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    border-left: 5px solid var(--warning-color);
}

.disclaimer-box h3 {
    font-size: 24px;
    color: var(--warning-color);
    margin-bottom: 20px;
}

.disclaimer-box h3 i {
    margin-right: 10px;
}

.disclaimer-box p {
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.8;
}

/* Footer */
.site-footer {
    background: var(--dark-color);
    color: var(--white);
    padding: 60px 20px 20px;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h4 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--accent-color);
}

.footer-column p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 15px;
    line-height: 1.6;
}

.footer-contact p {
    margin-bottom: 10px;
}

.footer-contact i {
    margin-right: 10px;
    color: var(--accent-color);
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-color);
}

.registration-number {
    margin-top: 20px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark-color);
    color: var(--white);
    padding: 25px;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    display: none;
}

.cookie-banner.show {
    display: block;
    animation: slideUp 0.5s ease;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.cookie-text h4 {
    font-size: 20px;
    margin-bottom: 10px;
}

.cookie-text h4 i {
    color: var(--warning-color);
    margin-right: 10px;
}

.cookie-text p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
}

.cookie-btn {
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-btn.accept {
    background: var(--success-color);
    color: var(--white);
}

.cookie-btn.decline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.cookie-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Blog Page */
.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    padding: 80px 20px;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 15px;
}

.header-subtitle {
    font-size: 20px;
    opacity: 0.95;
}

.blog-container {
    padding: 80px 20px;
}

.blog-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.blog-intro h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.blog-intro p {
    font-size: 18px;
    color: var(--text-light);
}

.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 40px;
}

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

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

.post-card.featured {
    grid-column: span 2;
}

.post-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.post-card.featured .post-image {
    height: 400px;
}

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

.post-card:hover .post-image img {
    transform: scale(1.1);
}

.post-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
}

.court-terme {
    background: #667eea;
}

.moyen-terme {
    background: #11998e;
}

.long-terme {
    background: #ee0979;
}

.risque {
    background: #ff6a00;
}

.transition {
    background: #764ba2;
}

.equilibre {
    background: #38ef7d;
}

.post-content {
    padding: 30px;
}

.post-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    font-size: 14px;
    color: var(--text-light);
}

.post-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.post-title {
    font-size: 24px;
    color: var(--dark-color);
    margin-bottom: 15px;
    line-height: 1.4;
}

.post-excerpt {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

.post-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.tag {
    padding: 5px 15px;
    background: var(--light-color);
    border-radius: 15px;
    font-size: 13px;
    color: var(--primary-color);
}

.read-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 25px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.read-more-btn:hover {
    background: var(--secondary-color);
}

/* About Page */
.about-story {
    padding: 80px 20px;
}

.story-content h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.lead-paragraph {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.8;
}

.story-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.story-milestone {
    text-align: center;
    padding: 30px;
    background: var(--light-color);
    border-radius: 10px;
}

.milestone-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    margin: 0 auto 20px;
}

.story-milestone h3 {
    font-size: 20px;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.story-milestone p {
    color: var(--text-light);
}

.values-section {
    padding: 80px 20px;
    background: var(--light-color);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.value-card {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow);
}

.value-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin: 0 auto 20px;
}

.value-card h3 {
    font-size: 22px;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.value-card p {
    color: var(--text-light);
}

.team-section {
    padding: 80px 20px;
}

.team-grid {
    display: grid;
    gap: 50px;
}

.team-member {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 40px;
    align-items: start;
}

.member-photo img {
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.member-info h3 {
    font-size: 28px;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.member-role {
    font-size: 18px;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 20px;
}

.member-bio {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

.member-expertise {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.expertise-tag {
    padding: 8px 16px;
    background: var(--light-color);
    border-radius: 20px;
    font-size: 14px;
    color: var(--primary-color);
    font-weight: 600;
}

.mission-section {
    padding: 80px 20px;
    background: var(--light-color);
}

.mission-content h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.mission-statement {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.8;
}

.mission-points {
    display: grid;
    gap: 25px;
}

.mission-point {
    display: flex;
    gap: 20px;
    align-items: start;
}

.mission-point i {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.mission-point h4 {
    font-size: 20px;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.mission-point p {
    color: var(--text-light);
}

.cta-about {
    padding: 80px 20px;
}

.cta-box-about {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 60px;
    border-radius: 20px;
    text-align: center;
    color: var(--white);
}

.cta-box-about h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.cta-box-about p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.btn-large-cta {
    display: inline-block;
    padding: 15px 50px;
    background: var(--white);
    color: var(--primary-color);
    border-radius: 30px;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-large-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Contact Page */
.contact-main-section {
    padding: 80px 20px;
}

.contact-layout {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 60px;
}

.contact-intro h2 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.contact-intro p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 30px;
}

.contact-details {
    display: grid;
    gap: 25px;
}

.detail-item {
    display: flex;
    gap: 20px;
}

.detail-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.detail-content h3 {
    font-size: 18px;
    color: var(--dark-color);
    margin-bottom: 8px;
}

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

.detail-content a {
    color: var(--primary-color);
    font-weight: 600;
}

.detail-note {
    font-size: 14px;
    color: var(--text-light);
    margin-top: 5px;
}

.contact-benefits {
    margin-top: 40px;
    padding: 25px;
    background: var(--light-color);
    border-radius: 10px;
}

.contact-benefits h3 {
    font-size: 20px;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.benefits-list li {
    padding: 8px 0;
    color: var(--text-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

.benefits-list i {
    color: var(--success-color);
}

.form-wrapper {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.form-wrapper h2 {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.form-description {
    color: var(--text-light);
    margin-bottom: 30px;
}

.contact-form {
    display: grid;
    gap: 20px;
}

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

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 8px;
}

.form-group label i {
    color: var(--primary-color);
    margin-right: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--border-color);
    border-radius: 5px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

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

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

.checkbox-label {
    display: flex;
    align-items: start;
    gap: 10px;
    font-size: 14px;
    color: var(--text-light);
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 3px;
    cursor: pointer;
}

.submit-btn {
    padding: 15px 40px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.map-section {
    padding: 80px 20px;
    background: var(--light-color);
}

.map-container {
    max-width: 1200px;
    margin: 30px auto 0;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.map-container img {
    width: 100%;
}

/* Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.modal-overlay.show {
    display: flex;
}

.modal-content {
    background: var(--white);
    padding: 50px;
    border-radius: 15px;
    text-align: center;
    max-width: 500px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.modal-icon {
    width: 80px;
    height: 80px;
    background: var(--success-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    margin: 0 auto 25px;
}

.modal-content h2 {
    font-size: 28px;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.modal-content p {
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.6;
}

.modal-close-btn {
    padding: 12px 40px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.modal-close-btn:hover {
    background: var(--secondary-color);
}

/* Single Post */
.post-single {
    padding-bottom: 60px;
}

.post-header-single {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 80px 20px;
    color: var(--white);
}

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

.post-category-badge {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.post-header-single h1 {
    font-size: 48px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.post-meta-single {
    display: flex;
    gap: 25px;
    font-size: 16px;
    opacity: 0.95;
    flex-wrap: wrap;
}

.post-meta-single span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.post-featured-image {
    max-width: 1200px;
    margin: -80px auto 60px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
}

.post-content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 60px;
}

.post-main-content {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-color);
}

.post-main-content h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin: 40px 0 20px;
}

.post-main-content h3 {
    font-size: 28px;
    color: var(--dark-color);
    margin: 30px 0 15px;
}

.post-main-content p {
    margin-bottom: 20px;
}

.post-main-content strong {
    color: var(--dark-color);
    font-weight: 600;
}

.post-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-widget {
    background: var(--light-color);
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 30px;
}

.sidebar-widget h3 {
    font-size: 20px;
    color: var(--dark-color);
    margin-bottom: 20px;
}

.related-posts li {
    margin-bottom: 12px;
}

.related-posts a {
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.related-posts a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.cta-widget {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
}

.cta-widget h3 {
    color: var(--white);
}

.cta-widget p {
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 20px;
}

.widget-cta-btn {
    display: block;
    text-align: center;
    padding: 12px 25px;
    background: var(--white);
    color: var(--primary-color);
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.widget-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.key-points li {
    padding: 8px 0;
    color: var(--text-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

.key-points i {
    color: var(--success-color);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .three-cols {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .post-content-wrapper {
        grid-template-columns: 1fr;
    }
    
    .post-sidebar {
        position: static;
    }
}

@media (max-width: 768px) {
    .mobile-toggle {
        display: block;
    }
    
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        display: none;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .three-cols,
    .two-cols,
    .philosophy-grid,
    .story-grid,
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .dual-column-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .post-card.featured {
        grid-column: span 1;
    }
    
    .posts-grid {
        grid-template-columns: 1fr;
    }
    
    .team-member {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-layout {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .post-header-single h1 {
        font-size: 32px;
    }
    
    .post-featured-image {
        margin-top: -40px;
    }
}

@media (max-width: 480px) {
    .hero-stats {
        gap: 30px;
    }
    
    .stat-number {
        font-size: 24px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .countdown-timer {
        gap: 15px;
    }
    
    .time-unit {
        padding: 20px 25px;
        min-width: 90px;
    }
    
    .time-value {
        font-size: 36px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .btn-primary-large,
    .btn-secondary-large {
        width: 100%;
    }
}