body {
    background-color: #0A0F2B;
    color: #FFFFFF;
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
}
p {
    text-align: center;
    font-size: 1.5rem;
    color: #E5E7EB; /* A light grey color */
    max-width: 800px;
    margin: 20px auto; /* This adds space above/below and centers it */
}
.donate-button {
    background-color: #F59E0B;
    color: #0A0F2B;
    border: none;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 8px;
    display: block;
    margin: 30px auto;
    cursor: pointer;
    text-decoration: none; /* This removes the underline from the link */
    text-align: center;
    max-width: 300px; /* Optional: Keeps the button from getting too wide */
}
/* Hero Section Styling */
#hero {
    background-color: #0A0F2B; /* Dark Blue */
    color: #FFFFFF;
    text-align: center;
    padding: 100px 20px; /* Adds spacious padding inside the section */
}

/* Problem Section Styling */
#problem {
    background-color: #FFFFFF; /* White */
    color: #1F2937; /* Dark Gray for text */
    text-align: center;
    padding: 100px 20px;
}

/* Style the heading in the Problem section */
#problem h2 {
    color: #0A0F2B; /* Our dark blue */
    font-size: 2.5rem;
}

/* Style the paragraph in the Problem section */
#problem p {
    color: #4B5563; /* Professional gray */
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto; /* Centers the paragraph */
}
/* Solution Section Styling */
#solution {
    background-color: #FAFAFA; /* Light Gray */
    color: #1F2937;
    text-align: center;
    padding: 100px 20px;
}

#solution h2 {
    color: #0A0F2B;
    font-size: 2.5rem;
}

#solution  p {  /* This styles only the direct paragraph child */
    color: #4B5563;
    font-size: 1.2rem;
    max-width: 800px;
    margin: 20px auto 50px auto; /* Top, Right, Bottom, Left */
}

/* Process Card Styling */
.process-card {
    background-color: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    padding: 40px 30px;
    margin: 20px auto;
    max-width: 800px;
    text-align: center;
}

.process-card h3 {
    color: #0A0F2B;
    font-size: 1.8rem;
}

.process-card p {
    color: #4B5563;
    font-size: 1.1rem;
    margin-top: 10px;
}
/* Footer Styling */
#footer {
    background-color: #0A0F2B; /* Dark Blue */
    color: #E5E7EB; /* Light Gray */
    text-align: center;
    padding: 60px 20px;
}

#footer p {
    margin: 8px auto !important;  /* Changed from '0' to 'auto' and added !important */
    font-size: 1rem;
    max-width: none !important;   /* Added this line */
    text-align: center;           /* Added this line */
}
/* Our Story Section Styling */
#story {
    background-color: #FFFFFF; /* White */
    color: #1F2937; /* Dark Gray for text */
    text-align: center;
    padding: 100px 20px;
}

#story h2 {
    color: #0A0F2B; /* Our dark blue */
    font-size: 2.5rem;
    margin-bottom: 30px;
}

#story p {
    color: #4B5563; /* Professional gray */
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto; /* Centers the paragraph */
    line-height: 1.6;
}
/* Mobile Responsive Styles */
@media (max-width: 768px) {
    #hero h1 {
        font-size: 2.5rem !important;
    }
    
    #hero p, #problem p, #solution > p {
        font-size: 1.1rem !important;
        padding: 0 20px;
    }

    #problem h2, #solution h2 {
        font-size: 2rem !important;
    }

    .process-card {
        margin: 20px 15px;
        padding: 30px 20px;
    }

    .process-card h3 {
        font-size: 1.5rem;
    }

    button {
        padding: 12px 25px;
        font-size: 1rem;
    }
}
