        /* Global Styles */
    body {
            background-color: #ebf9fc;
            margin: 0;
            font-family: "DM Sans", sans-serif;
            text-align: center;
            color: #000;
        }

        /* Centered Content */
        .container {
            max-width: 1196px;
            margin: 0 auto;
            padding: 0 20px;
        }
		
		/* Base Button Styling */
.btn {
    display: inline-block;
    padding: 14px 28px;
    background-color: #1746ff; /* Your blue color */
    color: white;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease-in-out;
    border: 2px solid #1746ff;
    text-align: center;
}

/* Hover Effect */
.btn:hover {
    background-color: white;
    color: #1746ff;
    border: 2px solid #1746ff;
}

/* Button for Dark Background */
.btn.btn-light {
    background-color: white;
    color: #1746ff;
    border: 2px solid #1746ff;
}

.btn.btn-light:hover {
    background-color: #1746ff;
    color: white;
}

        /* Card Component */
        .card {
            display: flex;
            align-items: center;
            justify-content: space-between; /* Ensure spacing */
            background: #fff;
            border-radius: 4px;
            padding: 36px;
            box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.05); /* Light shadow */
            transition: transform 0.2s ease-in-out;
            text-align: left;
            margin: 40px auto; /* Ensure proper spacing */
        }

        /* Image Styling */
        .card img {
            width: 40%; /* Keep image responsive */
            max-width: 450px;
            height: auto;
            border-radius: 4px;
            object-fit: cover;
        }

        /* Text Content */
        .card-content {
            flex: 1;
            padding-left: 36px;
        }

        .card-title {
            font-size: 36px;
            font-weight: 800;
            margin-bottom: 12px;
            color: #222;
        }

        .card-text {
            font-size: 20px;
            color: #555;
            line-height: 1.6;
        }

        /* Hover Effect */
        .card:hover {
            transform: translateY(-4px);
            box-shadow: 0px 6px 18px rgba(0, 0, 0, 0.08);
        }

        /* Responsive Design */
        @media (max-width: 900px) {
            .card {
                flex-direction: column;
                text-align: center;
                padding: 24px;
            }

            .card img {
                width: 100%;
                max-width: 100%;
            }

            .card-content {
                padding-left: 0;
                padding-top: 20px;
            }

            .card-title {
                font-size: 32px;
            }

            .card-text {
                font-size: 18px;
            }
        }
		
		
/* Numbered List */
.numbered-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.numbered-list li {
    display: flex;
    align-items: center;
    font-size: 18px;
    color: #222;
    margin-bottom: 12px;
}

/* Blue Circle for Numbers */
.circle {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 32px;
    height: 32px;
    background-color: #1746ff; /* Your blue */
    color: white;
    font-size: 16px;
    font-weight: bold;
    border-radius: 50%;
    margin-right: 12px;
}

/* Responsive Adjustments */
@media (max-width: 900px) {
    .card-reverse {
        flex-direction: column; /* Stack image below text */
    }

    .numbered-list li {
        font-size: 16px;
    }

    .circle {
        width: 28px;
        height: 28px;
        font-size: 14px;
    }
}

        /* Navigation */
        .nav {
            width: 100%;
            background: #fff;
            padding: 20px 0;
        }

        .nav .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .nav-title {
            font-size: 24px;
            font-weight: bold;
            color: #222;
        }

        .menu-btn {
            border: none;
            background: none;
            cursor: pointer;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .menu-btn img {
            width: 30px;
            height: 30px;
        }

        /* Full-screen Menu */
        .nav-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background: rgba(0, 0, 0, 0.9);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 30px;
            transform: translateY(-100%);
            transition: transform 0.3s ease-in-out;
        }

        .nav-overlay.active {
            transform: translateY(0);
        }

        .nav-overlay a {
            color: #fff;
            font-size: 36px;
            font-weight: 800;
            text-decoration: none;
        }

        .close-btn {
            position: absolute;
            top: 20px;
            right: 30px;
            width: 40px;
            height: 40px;
            cursor: pointer;
        }

        .close-btn img {
            width: 30px;
            height: 30px;
        }

        /* Headline */
        .headline {
            font-size: 86px;
            font-weight: 1000;
            line-height: 1.1;
            color: #1D63FF;
            margin: 80px 20px 40px;
        }

        /* Responsive Text */
        @media (max-width: 1024px) {
            .headline {
                font-size: 64px;
            }
        }

        @media (max-width: 768px) {
            .headline {
                font-size: 48px;
            }
        }

        @media (max-width: 480px) {
            .headline {
                font-size: 36px;
                line-height: 1.2;
            }
        }

        /* Description */
        .description {
            font-size: 20px;
            color: #555;
            max-width: 960px;
            margin: 0 auto 40px;
            padding: 0 20px;
		line-height: 1.6;
    
        }

        /* Call to Action */
        .cta-btn {
            background: #8d005a;
            color: #fff;
            font-size: 20px;
            font-weight: bold;
            padding: 15px 30px;
            border-radius: 5px;
            text-decoration: none;
            display: inline-block;
            margin-bottom: 40px;
        }

     
      /* Footer */
footer {
    padding: 40px 0;
}

.footer-title {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 20px;
}
		.footer-text {
    font-size: 16px;
    font-weight: 300;
    margin-bottom: 20px;
}

/* Social Media Icons */
.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-icons a {
    text-decoration: none;
    color: #222;
    transition: transform 0.2s ease-in-out, color 0.2s ease-in-out;
}

.social-icons a:hover {
    transform: scale(1.1);
    color: #1746ff;
}
		
		/* Info Cards Section */
.info-cards-section {
    padding: 60px 0;
}

/* Info Card Grid */
.info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    justify-content: center;
}

/* Individual Info Card */
.info-card {
    background: white;
    border-radius: 4px;
    padding: 36px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease-in-out;
}

.info-card:hover {
    transform: translateY(-5px);
}

/* SVG Icon */
.info-card svg {
    fill: ;
    margin-bottom: 16px;
}

/* Headline */
.info-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
}

/* Paragraph */
.info-card p {
    font-size: 20px;
    color: #555;
	line-height: 1.6;
}
		
		/* Supporters Section */
.supporters-section {
    padding: 80px 0;
    text-align: center;
}

/* Headline */
.supporters-title {
    font-size: 86px;
    font-weight: 1000;
    line-height: 1.1;
    color: #1D63FF;
}

/* Description */
.supporters-description {
    font-size: 20px;
    color: #555;
    line-height: 1.6;
}

/* Logo Grid */
.supporters-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
}

/* Logo Images */
.supporters-logos img {
    max-width: 160px;
    height: auto;
    flex: 1 1 calc(20% - 24px); /* 5 logos per row */
    min-width: 120px; /* Prevents logos from being too small */
    object-fit: contain;
}

/* Responsive: Adjust layout for smaller screens */
@media (max-width: 1024px) {
    .supporters-logos img {
        flex: 1 1 calc(33.33% - 24px); /* 3 per row */
    }
}

@media (max-width: 768px) {
    .supporters-logos img {
        flex: 1 1 calc(50% - 24px); /* 2 per row */
    }
}

@media (max-width: 480px) {
    .supporters-logos img {
        flex: 1 1 100%; /* 1 per row */
    }
}

/* FORM STYLING */
form {
    background: #fff;
    padding: 36px;
    border-radius: 4px;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.05);
    max-width: 640px;
    margin: 40px auto;
    text-align: left;
}

form label {
    font-size: 18px;
    font-weight: 600;
    color: #222;
    display: block;
    margin-bottom: 8px;
}

form input {
    width: 96%;
    padding: 12px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
    transition: border-color 0.2s;
    margin-bottom: 20px;
}

form input:focus {
    border-color: #1746ff;
    outline: none;
}

/* BUTTON */
form button {
    background: #1746ff;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s;
}

form button:hover {
    background: #122fb6;
}

/* PARAGRAPHS */
form + p {
    max-width: 600px;
    margin: 20px auto;
    font-size: 16px;
    color: #555;
    text-align: center;
    line-height: 1.6;
}