/********** Template CSS **********/
:root {
    --primary: #FF6F0F;
    --secondary: #FFF0E6;
    --light: #F8F8F9;
    --dark: #001D23;
}

body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

header {
    background-color: var(--dark);
    padding: 10px 0;
}

.main-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-md img {
    width: 100px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav-links li {
    display: inline;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary);
}

.btn-donate {
    background-color: var(--primary);
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
}

.btn-donate:hover {
    background-color: #ff4a3d;
}

/*** Contact Us Section ***/
.contact-us {
    padding: 50px 20px;
}

.contact-us h2 {
    font-size: 2.5rem;
    color: var(--dark);
}

.contact-us h3 {
    font-size: 1.8rem;
    color: var(--dark);
    margin-bottom: 20px;
}

.contact-us p {
    font-size: 1.2rem;
    color: var(--dark);
}

.social-links {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.social-links li {
    display: flex;
    align-items: center;
}

.social-links img {
    width: 20px;
    margin-right: 10px;
}

/*** Footer ***/
footer {
    background-color: var(--dark);
    color: white;
    padding: 40px 20px;
    text-align: left;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
}

.footer-item {
    flex: 1;
    min-width: 200px;
}

.footer-item img {
    margin-bottom: 10px;
}

.footer-item h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.footer-item p,
.footer-item ul,
.footer-item form {
    font-size: 1rem;
    margin-bottom: 10px;
}

.footer-item ul {
    list-style: none;
    padding: 0;
}

.footer-item ul li {
    margin-bottom: 5px;
}

.footer-item ul a {
    color: white;
    text-decoration: none;
}

.footer-item ul a:hover {
    color: var(--primary);
}

.footer-item form {
    display: flex;
    flex-direction: column;
}

.footer-item input[type="email"] {
    padding: 10px;
    border: none;
    border-radius: 5px;
    margin-bottom: 10px;
}

.footer-item button {
    padding: 10px;
    border: none;
    border-radius: 5px;
    background-color: var(--primary);
    color: white;
    cursor: pointer;
}

.footer-item button:hover {
    background-color: #ff4a3d;
}

.footer-note {
    text-align: center;
    margin-top: 20px;
    font-size: 0.875rem;
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 10px;
    justify-content: center;
}

.footer-social a {
    color: white;
    text-decoration: none;
    font-size: 1.5rem;
}

.footer-social a img {
    width: 30px;
    height: 30px;
}

.footer-social a:hover {
    color: var(--primary);
}

/* Remove underline from footer quick links */
.footer-nav a {
    text-decoration: none;
}

/* Add hover effect for better user experience (optional) */
.footer-nav a:hover {
    text-decoration: none; /* You can replace this with any desired effect */
}