/* give.css */
.give-container {
    max-width: 800px;
    margin: 20px auto;
    background: #fff;
    padding: 40px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 1);
    border-radius: 10px;
}

h1,h2 {
    color: #d4af37;
    text-align: center;
}

p {
    color: #666;
    line-height: 1.6;
}

.donation-methods {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    margin-top: 40px;
}

.method {
    background: #f0f0f0;
    padding: 20px;
    border-radius: 8px;
    width: 45%;
    margin-bottom: 20px; /* For better spacing on smaller screens */
}

.method h2 {
    color: #444;
}

.info {
    font-weight: bold;
    color: #333;
    background-color: #e9e9e9;
    padding: 10px;
    text-align: center;
    border-radius: 4px;
    margin-top: 20px;
}

main {
    width: 100%;
    margin-top: 125px; /* Adjust this value based on the actual height of your header */
    /* Additional styling for main content area */
}
@media (max-width: 768px) {
    .donation-methods {
        flex-direction: column;
        align-items: center;
    }

    .method {
        width: 80%; /* Adjust width for smaller screens */
    }
	

    .give-container {
       
		margin: 10px 20px 100px 0px ;
		
    }

}
