
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
            font-family: Arial, sans-serif;
        }
        body {
            line-height: 1.6;
            scroll-behavior: smooth;
        }
        header {
            background-color: white;
            color: #2c3e50;
            padding: 20px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .container {
            width: 90%;
            margin: auto;
            max-width: 1200px;
        }
        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            position: relative;
        }
        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo img {
            height: 40px;
            width: auto;
        }
        .menu-toggle {
            display: none;
            font-size: 24px;
            cursor: pointer;
            z-index: 1001;
        }
        nav ul {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
            align-items: center;
        }
        nav ul li {
            margin: 0 5px;
            position: relative;
        }
        nav ul li a, .donate-btn {
            color: #2c3e50;
            text-decoration: none;
            padding: 10px 15px;
            border-radius: 5px;
            display: inline-block;
        }
        .donate-btn {
            background-color: #e74c3c;
            color: #ffffff;
        }
        .donate-desktop {
            display: none;
        }
        nav ul li .submenu {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            background-color: #fff;
            list-style: none;
            padding: 0;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            z-index: 999;
            min-width: 200px;
        }
        nav ul li .submenu li a {
            display: block;
            padding: 10px 15px;
            color: #2c3e50;
            text-decoration: none;
        }
        nav ul li .submenu li a:hover {
            background-color: #f2f2f2;
        }
        nav ul li:hover .submenu {
            display: block;
        }
        .banner {
            position: relative;
            overflow: hidden;
            height: 400px;
        }
        .slide {
            position: absolute;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            opacity: 0;
            transition: opacity 1s ease-in-out;
            display: flex;
            justify-content: center;
            align-items: center;
            flex-direction: column;
            color: white;
            text-align: center;
        }
        .slide.active {
            opacity: 1;
        }
        .slide h2, .slide p {
            background-color: rgba(0, 0, 0, 0.5);
            padding: 10px 20px;
            border-radius: 10px;
            margin: 10px;
        }
        section {
            padding: 30px 0;
        }
        .card {
            background: #f9f9f9;
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 0 5px rgba(0,0,0,0.1);
            text-align: center;
            flex: 1 1 calc(33.333% - 20px);
        }
        .card img {
            width: 100px;
            height: 100px;
            object-fit: cover;
            border-radius: 50%;
            margin-bottom: 10px;
        }
        .news, .events, .donors, .team {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
            justify-content: center;
        }
        .recent-events-wrapper {
            position: relative;
        }
        .recent-events {
            display: flex;
            overflow-x: auto;
            gap: 20px;
            scroll-snap-type: x mandatory;
            padding-bottom: 10px;
            scroll-behavior: smooth;
        }
        .recent-events .event-card {
            flex: 0 0 calc(33.333% - 20px);
            scroll-snap-align: start;
            background: #f9f9f9;
            padding: 15px;
            border-radius: 10px;
            box-shadow: 0 0 5px rgba(0,0,0,0.1);
            text-align: center;
        }
        .recent-events .event-card img {
            width: 100%;
            height: 180px;
            object-fit: cover;
            border-radius: 10px;
        }
        .recent-events .event-card h4 {
            margin-top: 10px;
        }
        .recent-events .event-card a {
            display: inline-block;
            margin-top: 5px;
            color: #3498db;
            text-decoration: none;
        }
        .slider-buttons {
            position: absolute;
            top: 50%;
            width: 100%;
            display: flex;
            justify-content: space-between;
            transform: translateY(-50%);
        }
        .slider-buttons button {
            background: rgba(0, 0, 0, 0.5);
            color: white;
            border: none;
            padding: 10px 15px;
            cursor: pointer;
            font-size: 18px;
            border-radius: 50%;
        }
        .newsletter {
            background: #ecf0f1;
            padding: 20px;
            text-align: center;
            border-radius: 10px;
        }
        .newsletter input[type="email"] {
            padding: 10px;
            width: 300px;
            max-width: 100%;
            margin-right: 10px;
        }
        .newsletter button {
            padding: 10px 20px;
            background-color: #2c3e50;
            color: white;
            border: none;
            border-radius: 5px;
        }
        footer {
            background-color: #2c3e50;
            color: white;
            text-align: center;
            padding: 20px 0;
            margin-top: 40px;
        }
        .social-icons a {
            margin: 0 10px;
            color: white;
            font-size: 20px;
            text-decoration: none;
        }


    .president-message {
      display: flex;
      gap: 20px;
      align-items: flex-start;
      margin-top: 20px;
      flex-wrap: wrap;
    }
    .president-message img {
      width: 250px;
      height: auto;
      border-radius: 10px;
      object-fit: cover;
      flex-shrink: 0;
    }
    .president-message .text {
      flex: 1;
    }
    @media (max-width: 768px) {
      .president-message {
        flex-direction: column;
        align-items: center;
        text-align: center;
      }
      .president-message img {
        margin-bottom: 15px;
      }
    }
        @media (max-width: 768px) {
            .menu-toggle {
                display: block;
            }
            nav ul {
                display: none;
                flex-direction: column;
                width: 100%;
                background-color: #f9f9f9;
                margin-top: 20px;
            }
            nav ul.show {
                display: flex;
            }
            nav ul li {
                margin: 10px 0;
                text-align: center;
            }
            nav ul li .submenu {
                position: static;
                box-shadow: none;
                padding-left: 20px;
            }
            nav ul li.active .submenu {
                display: block;
            }
            .donate-desktop {
                display: none;
            }
            .donate-toggle {
                display: block;
                margin-left: auto;
                margin-right: 20px;
            }
            .recent-events .event-card {
                flex: 0 0 100%;
            }
        }
        @media (min-width: 769px) {
            .donate-desktop {
                display: inline-block;
            }
            .donate-toggle {
                display: none;
            }
        }
 .rotate {
    transform: rotate(180deg);
    transition: transform 0.3s ease;
}

