
    body, html {
      height: 100%;
      margin: 0;
      font-family: Arial, sans-serif;
    }

    .half {
      display: flex;
      min-height: 100vh;
    }

    .bg {
      flex: 1;
      background-size: cover;
      background-position: center;
    }

    .contents {
      flex: 1;
      display: flex;
      align-items: center;
      justify-content: center;
      background-color: #fff;

    }

    .contents h3 {
      font-weight: 600;
    }

    .contents p {
      font-size: 1.1rem;
      line-height: 1.6;
    }
    
    .heading-tag {
      color: #ba992e;
      font-size: 50px;
    }

    
    .social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border: 2px solid #ba992e; 
    border-radius: 50%; /* circle */
    color: #fff; /* white icon */
    margin-right: 15px;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    text-decoration: none;
    background: #ba992e;

    }
    .social-icons a:hover {
    color: #ba992e; 
    border-color: #000; 
    background-color: black; 
    }

    .logo img {
      max-width: 100%;
      height: auto;
    }

    @media (max-width: 768px) {
      .half {
        flex-direction: column;
      }
      .bg, .contents {
        width: 100%;
      }
      .contents {
        padding: 30px;
      }
    }

footer {
 
  color: #ba992e; /* golden text */
  font-weight: 700;
  letter-spacing: 1px;
}

.footer-text {
  margin: 0;
  font-size: 1rem;
}