  /* CSS for the banner image */
  .banner {
    width: 100%;
    height: 500px;
    background-image: url('cows.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Optional styling for the text inside the banner */
.banner-text {
    text-align: center;
    color: white;
    padding-top: 200px;
    font-size: 2em;
    font-weight: bold;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
}

* {
box-sizing: border-box;
margin: 0;
padding: 0;
font-family: Arial, sans-serif;
}

body {
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
background-color: #012519;
}

.container {
width: 100%;
display: flex;
flex-wrap: wrap;
gap: 20px;
justify-content: space-between;
}

.block {
width: 23%;
background-color: white;
border-radius: 8px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
overflow: hidden;
transition: transform 0.3s;
}

.block:hover {
transform: scale(1.05);
}

.block img {
width: 100%;
height: 150px;
object-fit: cover;
}

.block-content {
padding: 15px;
}

.block-title {
font-size: 18px;
font-weight: bold;
margin-bottom: 10px;
color: #333;
}

.block-text {
font-size: 14px;
color: #666;
line-height: 1.5;
}

@media (max-width: 768px) {
.block {
width: 48%;
}
}

@media (max-width: 480px) {
.block {
width: 100%;
}
}

  
  .contact-info a {
    text-decoration: none;
    color: #ffffff;
    font-size: 18px;

  }
  
  .img1 {
    width: 24px;
    height: 24px;
    border-radius: 10%;
  }

  