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


.grid-cols-3 {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            width: 50vw; /* 70% of the viewport width */
            margin: 0 auto; /* Center horizontally */
            gap: 10px; /* Space between columns */
        }
        .grid-item {
            padding: 20px;
            background-color: lightgray;
            text-align: center;
            border: 1px solid #ccc;
        }

.container {
    width: 90%;
    margin: auto;
    text-align: center;
}

.header {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    position: relative;
    max-width: 600px; /* Constrain the width of the header */
    margin-left: 0; /* Align the header to the left */
}

.header svg {
    position: absolute; /* Keep the SVG logo on the left */
    left: 20px; /* Adjust spacing from the left edge */
}

.text {
    text-align: center;
}

.logo {
    max-width: 150px;
    height: auto;
}

.text h1 {
    font-size: 3rem;
    margin: 0;
}

.text h2 {
    font-size: 1.5rem;
    margin: 0;
    font-weight: lighter;
}

.preferences {
    margin: 20px 0;
    font-size: 1rem;
}

.columns {
    display: flex;
    gap: 100px;
    justify-content: center;
    margin-top: 40px;
}

.column-left, .column-center, .column-right {
    flex: 1;
    max-width: 400px;
}

.column-left h3 {
    font-size: 0.9rem;
    text-align: left;
    padding-top:100;
     color: black;
     font-weight:400;
}


.column-right h3 {
    font-size: 1.2rem;
    text-align: left;
    padding-top:100;
     color: black;
     font-weight:500;
}

p, span {
    text-align: left;
    font-size: 0.8rem;
    line-height: 1.5;
    color:#787878;
}

a {
 /*   color: #007BFF; */
    color:#007B7D;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.news-item {
    display: flex;
    align-items: center; /* Aligns the items vertically centered */
}

.news-container .news-item {
    display: flex;
    align-items: center; /* Aligns the items vertically centered */
}

.text-block {
    overflow: hidden; /* Clears the float and ensures proper container expansion */
    margin-bottom: 20px; /* Adds some space at the bottom of the text block */
    text-align:left;
}

.news-container .text-block {
    overflow: hidden; /* Clears the float and ensures proper container expansion */
    margin-bottom: 20px; /* Adds some space at the bottom of the text block */
    text-align:left;
}

.news-image {
    float: left; /* Aligns the image to the left */
    margin-right: 15px; /* Adds space between the image and text */
    margin-bottom: 10px; /* Adds space below the image */
    width: 100px; /* Fixed size for the image */
    height: 130px; /* Fixed size for the image */
}

.news-container .news-image {
    float: left; /* Aligns the image to the left */
    margin-right: 15px; /* Adds space between the image and text */
    margin-bottom: 10px; /* Adds space below the image */
    width: 100px; /* Fixed size for the image */
    height: 130px; /* Fixed size for the image */
}

.text-content {
    overflow: hidden; /* Ensures that both the h3 and p stay together and within the same flow */
}




h3, p {
    margin: 0; /* Removes default margins */
    margin-bottom:5px;
    line-height: 1.4; /* Adjusts line height for readability */
}

a {
    display: inline-block; /* Keeps the link as an inline-block element */
    margin-top: 10px; /* Adds some space between the text and the link */
    color:#007B7D; /* Adds color to the link */
    
    text-decoration: none; /* Removes underline */
}

a span .bearla {
    all: unset; /* Reset styles on span to inherit everything from the parent */
    display: inline; /* Ensure it stays inline */
    color: inherit; /* Explicitly inherit color */
    text-decoration: inherit; /* Explicitly inherit underline or other decoration */
    cursor: inherit; /* Inherit the pointer cursor from the <a> */
  }

a:hover {
    text-decoration: underline; /* Underlines link on hover */
}

 .bottom-line {
        width: 100%;
        height: 0.8cm;
        /*    background-color: #007B7D; */
        background-color: #FFFFFF; 
        margin-top: 20px;
        }

  footer {
    background-color: #333;
    color: white;
    padding: 20px 0;
    font-size: 14px;
     
  }
  .footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 20px;
  }
  .footer-left {
    flex: 1;
  }
  .footer-center {
    flex: 2;
    text-align: center;
  }
  .footer-right {
    flex: 1;
    text-align: right;
  }
  .footer-links {
    list-style: none;
    padding: 0;
  }
  .footer-links li {
    margin: 5px 0;
  }
  .footer-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
  }
  .footer-links a:hover {
    color: #f1c40f;
  }
  .social-icons a {
    margin-left: 10px;
  }
  .social-icons img {
    width: 20px;
    height: 20px;
  }
  
  @media (max-width: 400px) {
     .header {margin-bottom: 50px}
    .columns {
        display: flex;
        flex-direction: column;
    }
    .column-left, .column-right {
        width: 100%;
    }
    .news-item, .text-block {
        padding: 10px;
    }
}
