.contactuscontainer {
    display: flex;
    justify-content: space-between;  /* Distribute sections evenly */
    align-items: stretch;  /* Make all boxes equal height */
    max-width: 1000px;
    margin: 50px auto;
    padding: 20px;
}

/* Individual box styling */
.box {
    width: 30%; /* Equal width for each section */
    padding: 20px;
    background: #f5f5f5;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
}

/* Headings */
h3 {
    font-size: 22px;
    color: #2f7d13;
    margin-bottom: 10px;
}

/* Paragraph styling */
p {
    font-size: 16px;
    color: #333;
    line-height: 1.5;
}

/* Email link */
.email a {
    text-decoration: none;
    color: #2f7d13;
    font-weight: bold;
}

/* Social Links */
.social-links {
    /* margin-top: auto;  */
	/* Pushes social links to the bottom */
}
.buyBtn {
border: none;
border-radius: 6px;
padding: 4px 4px;
margin-top: 15px;
width: 17%;
color: white;
background: #396014;

}
.buyBtn a {
    text-decoration: none;
    color: white;
}


.social-links a {
    display: block;
    text-decoration: none;
    color: #2f7d13;
    font-weight: bold;
    margin: 5px 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contactuscontainer {
        flex-direction: column;  /* Stack sections in column layout */
        align-items: center;
    }

    .box {
        width: 80%; /* Take up more space on smaller screens */
        margin-bottom: 20px;
    }
}