body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
}

header {
    background: #4CAF50;
    color: white;
    padding: 20px 0;
    text-align: center;
}

h1 {
    margin: 0;
}

main {
    padding: 20px;
}

section {
    margin-bottom: 20px;
    padding: 15px;
    background: white;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

h2 {
    color: #4CAF50;
}
.card-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.card {
    background: #e7f3fe;
    border: 1px solid #b3d7ff;
    border-radius: 5px;
    padding: 20px;
    margin: 10px;
    width: 250px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s;
    width: 300px;
    height: 250px !important;
}

.card:hover {
    transform: scale(1.05);
}

.description {
    margin: 0;
}

.more-info {
    display: none;
    position: absolute;
    bottom: 10px;
    left: 10px;
    right: 10px;
    background: rgba(255, 255, 255, 0.9);
    padding: 10px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.card:hover .more-info {
    display: block;
}
.why-choose {
    background: #f0f8ff;
    padding: 20px;
    border-radius: 5px;
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.grid-item {
    background: white;
    border: 1px solid #b3d7ff;
    border-radius: 5px;
    padding: 20px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.grid-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.icon {
    font-size: 40px;
    margin-bottom: 10px;
}

.mission {
    position: relative;
    overflow: hidden;
    color: white;
    padding: 40px 20px;
    text-align: center;
    background: url('https://source.unsplash.com/1600x900/?nature,food') no-repeat center center/cover;
}

.mission h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.mission-content {
    background: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
    padding: 20px;
    border-radius: 10px;
    max-width: 100%;
    margin: 0 auto;
}

.mission-text p {
    font-size: 1.2em;
    line-height: 1.6;
}

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

.contact-details {
    max-width: 600px;
    margin: 50px auto;
    padding: 20px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

h2 {
    text-align: center;
    color: #333;
}

.contact-item {
    margin: 20px 0;
}

.contact-item h3 {
    margin: 0;
    color: #4CAF50; /* Green color for headings */
}

.contact-item p {
    margin: 5px 0;
    font-size: 16px;
}

.contact-item a {
    text-decoration: none;
    color: #007BFF; /* Blue color for links */
}

.contact-item a:hover {
    text-decoration: underline; /* Underline on hover */
}