@charset "utf-8";
/* CSS Document */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Open Sans', sans-serif;
            line-height: 1.7;
            color: var(--text-color);
            background-color: #f5f7fa;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 600;
            line-height: 1.3;
        }

        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
        }

        .logo h1 {
            font-size: 1.8rem;
            font-weight: bold;
        }

        .logo span {
            color: #e74c3c;
        }

        .back-btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: var(--primary-color);
            font-weight: 500;
            transition: var(--transition);
        }

        .back-btn:hover {
            color: var(--secondary-color);
            transform: translateX(-3px);
        }

        /* Hero Section */
        .page-hero {
        background: linear-gradient(160deg, #0B3D1C, #1A622C, #4C9A6A);
        color: white;
        padding: 80px 0 60px;
        text-align: center;
        }
        


/* Ligne animée en bas */
header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        #1a3a5f 25%, 
        #2c5282 50%, 
        #1a3a5f 75%, 
        transparent 100%);
    background-size: 200% 100%;
    animation: lineFlow 3s linear infinite;
}

/* Animation de la ligne */
@keyframes lineFlow {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}
        .page-hero h1 {
            font-size: 3rem;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        }

        .page-hero p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto;
            opacity: 0.9;
        }

        /* President Section */
        .president-message {
            padding: 80px 0;
            background-color: white;
        }

        .president-header {
            display: flex;
            align-items: center;
            gap: 40px;
            margin-bottom: 50px;
        }

        .president-portrait {
            flex: 0 0 250px;
            border-radius: 9%;
            overflow: hidden;
            box-shadow: var(--shadow-lg);
            border: 5px solid var(--secondary-color);
        }

        .president-portrait img {
            width: 100%;
            height: auto;
            display: block;
        }

        .president-intro {
            flex: 1;
        }

        .president-intro h2 {
            font-size: 2.5rem;
            color: var(--primary-color);
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }

        .president-intro h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 80px;
            height: 4px;
            background-color: var(--secondary-color);
            border-radius: 2px;
        }

        .president-intro p {
            font-size: 1.1rem;
            color: var(--text-light);
            margin-top: 20px;
        }

        .message-content {
            max-width: 900px;
            margin: 0 auto;
            font-size: 1.1rem;
            line-height: 1.8;
        }

        .message-content p {
            margin-bottom: 25px;
            text-align: justify;
        }

        .message-intro {
            font-size: 1.3rem;
            font-weight: 600;
            color:#035B15;
            border-left: 4px solid var(--secondary-color);
            padding-left: 20px;
            margin-bottom: 30px;
        }

        .commitments {
            background-color: var(--light-color);
            padding: 30px;
            border-radius: var(--border-radius);
            margin: 40px 0;
            box-shadow: var(--shadow);
        }

        .commitments h3 {
            color: var(--primary-color);
            margin-bottom: 20px;
            font-size: 1.5rem;
        }

        .commitments ul {
            list-style-type: none;
        }

        .commitments li {
            margin-bottom: 15px;
            padding-left: 30px;
            position: relative;
        }

        .commitments li::before {
            content: "•";
            color: var(--secondary-color);
            font-size: 1.5rem;
            position: absolute;
            left: 0;
            top: -5px;
        }

        .message-outro {
            font-style: italic;
            text-align: center;
            margin-top: 40px;
            padding: 20px;
            border-top: 1px solid #eee;
            border-bottom: 1px solid #eee;
            font-size: 1.2rem;
            color: #035B15;
        }

        .signature {
            text-align: right;
            margin-top: 40px;
            font-family: 'Montserrat', sans-serif;
        }

        .signature p {
            margin-bottom: 5px;
        }

        .signature-name {
            font-weight: 700;
            font-size: 1.3rem;
            color: #035B15;
        }

        .signature-title {
            font-style: italic;
            color: var(--text-light);
        }

        /* Values Section */
        .values {
            padding: 80px 0;
            background-color: var(--light-color);
        }

        .section-title {
            text-align: center;
            margin-bottom: 50px;
        }

        .section-title h2 {
            font-size: 2.5rem;
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }

        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background-color: var(--secondary-color);
            border-radius: 2px;
        }

        .values-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }

        .value-card {
            background-color: white;
            border-radius: var(--border-radius);
            padding: 30px;
            text-align: center;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }

        .value-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-lg);
        }

        .value-icon {
            font-size: 3rem;
            color: #035B15;
            margin-bottom: 20px;
        }


        .value-card h3 {
            font-size: 1.3rem;
            margin-bottom: 15px;
            color: #035B15;
        }

       

     

        /* Responsive */
        @media (max-width: 992px) {
            .president-header {
                flex-direction: column;
                text-align: center;
            }
            
            .president-intro h2::after {
                left: 50%;
                transform: translateX(-50%);
            }
        }

        @media (max-width: 768px) {
            .page-hero h1 {
                font-size: 2.2rem;
            }
            
            .president-intro h2 {
                font-size: 2rem;
            }
            
            .section-title h2 {
                font-size: 2rem;
            }
        }