* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html, body {
  height: 100%;
  width: 100%;
  font-size: 1em;
  line-height: 1.5;
  font-family: Georgia, serif;
  display: flex;
  background-color: #772014;
  flex-direction: column;
}
::-moz-selection {
  background: #b3d4fc;
  text-shadow: none;
}
::selection {
  background: #b3d4fc;
  text-shadow: none;
}
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}
audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}
fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}
textarea {
  resize: vertical;
}
.hidden,
[hidden] {
  display: none !important;
}
.visually-hidden {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}
.visually-hidden.focusable:active,
.visually-hidden.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  white-space: inherit;
  width: auto;
}
.invisible {
  visibility: hidden;
}
.clearfix::before,
.clearfix::after {
  content: "";
  display: table;
}
.clearfix::after {
  clear: both;
}
@media only screen and (min-width: 35em) {
  .navbar {
    position: static;
    padding: 20px;
  }
}
::-moz-selection {
  background: #b3d4fc;
  text-shadow: none;
}
::selection {
  background: #b3d4fc;
  text-shadow: none;
}
@media print,
(-webkit-min-device-pixel-ratio: 1.25),
(min-resolution: 1.25dppx),
(min-resolution: 120dpi) {
  body {
    font-family: Georgia, serif;
    background-color: #772014;
    overflow-x: hidden;
    padding-top: 40px;
  }
}
.wrap-logo {
  display: inline-block;
  vertical-align: middle;
  padding-left: 20px;
  margin-right: auto;
}

.logo > img {
    max-height: 50px;
}
.navbar {
  background: #19180A;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0px 4px 8px rgba(230, 57, 70, 0.5);
}
.navbar a {
  align-items: center;
  color: white;
  text-decoration: none;
  padding: 10px 20px;
  font-weight: bold;
  margin: 0 10px;
  transition: 0.3s ease-in-out;
}
  .nav-links {
    display: inline-block;
    align-items: center;
  }
  .navbar a:hover {
    background-color: #772014;
    color: black;
    border-radius: 5px;
  }
  .burger-menu {
    align-items: center;
    display: none;
    flex-direction: column;
    justify-content: space-between;
    height: 20px;
    width: 30px;
    cursor: pointer;
    z-index: 1001;
    margin-left: auto;
  }
  .burger-menu span {
    height: 3px;
    width: 100%;
    background-color: white;
    transition: all 0.3s ease;
  }
  .news-section {
      padding: 40px 20px;
      background: black;
    }
  .section-title {
      text-align: center;
      color: white;
      font-size: 2.5em;
      margin-bottom: 40px;
      font-family: Georgia, serif;
    }
  .news-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      max-width: 1200px;
      margin: 0 auto;
    }
  .news-content h3,
  .news-content p,
  .news-date {
      color:#F1EFE4;
    }
  .news-card {
      background: #2F0902;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 0 15px 5px rgba(255, 0, 0, 0.7);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
  .news-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 0 20px 8px rgba(255, 0, 0, 0.9);
    }
  .news-image {
      height: 250px;
      overflow: hidden;
    }
  .news-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
  .news-content {
      padding: 20px;
    }
  .news-content h3 {
      color: #F1EFE4;
      margin-bottom: 10px;
      font-size: 1.4em;
    }
  .news-date {
      display: block;
      color: #772014;
      font-size: 0.9em;
      margin-bottom: 15px;
    }
  .news-content p {
      color: #F1EFE4;
      line-height: 1.6;
    }
  .form-row {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 15px;
      margin-bottom: 30px;
    }
  .form-group {
      display: flex;
      flex-direction: column;
    }
  .image-wrapper {
    flex-shrink: 0;
    padding: 15px;
  }

    @media (max-width: 768px) {
      .navbar {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding-bottom: 20px;
      }
      .form-row {
        grid-template-columns: 1fr;
        gap: 0;
      }
      .form-group {
        margin-bottom: 15px;
      }
      .nav-links {
        display: flex;
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: 70%;
        max-width: 300px;
        background: #19180A;
        flex-direction: column;
        justify-content: center;
        transform: translateX(100%);
        transition: transform 0.3s ease-in-out;
      }

      .nav-links.active {
        display: flex;
        transform: translateX(0);
      }

      .navbar a {
        padding: 15px 20px;
        margin: 10px 0;
        width: 100%;
        text-align: center;
      }
      .burger-menu {
        display: flex;
      }

      .burger-menu.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
      }
      .about {
        background-color: black;
        padding: 50px 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        animation: fadeIn 1.5s ease-in-out;
      }
      .burger-menu.active span:nth-child(2) {
        opacity: 0;
      }
      .burger-menu.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
      }
      .news-grid {
        grid-template-columns: 1fr;
      }
      .section-title {
        font-size: 2em;
      }
      .news-card,
      .service-card {
        max-width: 90vw;
        margin: 0 auto;
      }
      .news-image img {
        width: auto;
        height: auto;
        object-fit: cover;
      }
      .footer{
        flex-direction: row;
        align-items: flex-start;
        margin-top: auto;
      }
      .footer a {
        width: 100%;
      }
      .services{
      }
      .services h2 {
        margin-top: 5%;
        font-size: 2em;
        color: white;
      }
      .form-box {
        max-width: 100%;
        padding: 35px;
      }
      .form-title {
        padding-top: 80px;
        font-size: 1.8rem;
        text-align: center;
        margin-bottom: 20px;
      }
      .form-subtitle {
        font-size: 1.2rem;
        text-align: center;
        margin-bottom: 20px;
      }
      .Info {
        flex-direction: column;
        text-align: center;
      }
      .profile-img {
        width: 100%;
        max-width: 300px;
        height: auto;
        margin: 0 auto;
      }
      .text-content {
        padding-top: 90px;
        width: 100%;
        box-shadow: 0 0 10px red;
      }
      .text-content h1 {
        font-size: 2em;
      }
      .text-content p {
        font-size: 1em;
        max-width: 100%;
      }
      .text-content h3 {
        font-size: 1.1em;
      }
      .image-wrapper {
        width: 100%;
        max-width: 300px;
      }
      .form-row {
        display: flex;
        flex-wrap: wrap;
        gap: 15px;
        justify-content: center;
      }
      .form-group {
        flex: 1 1 30%;
        margin-bottom: 15px;
      }
      .profile-img:hover {
        transform: scale(1.05);
      }
      .contact {
        padding: 20px;
      }
      .form-group input,
      .form-group label {
        width: 100%;
        text-align: center;
      }

      .radio-group {
        display: flex;
        justify-content: center;
        gap: 20px;
      }

      .radio-group label {
        margin: 0 5px;
      }

      textarea {
        width: 100%;
        padding: 10px;
        margin-bottom: 15px;
      }

      button {
        width: 100%;
        padding: 10px;
        margin-top: 10px;
        text-align: center;
      }
      .news-section h2{
        padding-top: 90px;
      }
    }
@media (min-width: 769px) {
  .contact {
    padding: 40px;
  }
  .form-title {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 30px;
  }
  .form-subtitle {
    font-size: 1.4rem;
    text-align: center;
    margin-bottom: 30px;
  }
  .form-row {
    display: flex;
    gap: 20px;
    justify-content: center;
  }
  .form-group {
    flex: 1 1 30%;
  }
  .form-group input {
    width: 100%;
  }
  .radio-group {
    display: flex;
    justify-content: center;
    gap: 20px;
  }

  .radio-group label {
    margin: 0 10px;
  }

  textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
  }

  button {
    width: 100%;
    padding: 10px;
    margin-top: 20px;
    text-align: center;
  }
}
  @media (max-width: 480px) {
    .footer {
      flex-direction: column;
      text-align: center;
    }
    .footer a {
      width: 100%;
    }

    .service-image img{
      width: 200px;
      height: 150px;

    }
  }
    .footer {
      background-color: #772014;
      width: 100%;
      font-family: Georgia, serif;
      font-size: 18px;
      text-align: center;
    }
    .footer a {
      margin-top: 15px;
      color: #F2EFE9;
      text-decoration: none;
      transition: color 0.3s ease-in-out;
    }
    .footer p{
      margin-top: 10px;
      margin-bottom: 10px;
      color: #F7F8F2;
    }
    .footer a:hover {
      color: #46130C;
    }
    .services {
      text-align: center;
      padding: 50px 20px;
      background: black;
    }
    .services h2 {
      font-size: 2.5em;
      color: #F1EFE4;
    }
    .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 20px;
      max-width: 1200px;
      margin: 30px auto;
    }
    .service-card {
      background: #2F0902;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 0 15px 5px rgba(255, 0, 0, 0.7);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: center;
      padding-bottom: 20px;
    }
    .service-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 0 20px 8px rgba(255, 0, 0, 0.9);
    }
    .service-image {
      width: 100%;
      height: 200px;
      overflow: hidden;
    }
    .service-image img {
      width: 100%;
      height: 200px;
      object-fit: contain;
      object-position: center;
      display: block;
    }
    .service-content {
      padding: 20px;
    }
    .service-content h3 {
      color: #F1EFE4;
      font-size: 1.5em;
      margin-bottom: 10px;
    }
    .service-content a{
      color: brown;
      transition: color 0.3s ease-in-out;
    }
    .service-content a:hover {
      color: #772014;
    }
    .service-content p {
      color: #F1EFE4;
      line-height: 1.6;
    }
    .form-title {
      font-family: Georgia, serif;
      text-align: center;
      color: white;
      margin-top: 5%;
    }
    .contact{
      background-color:#19180A;
    }
    .form-row {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
    }
    .form-row input {
      flex: 1;
      min-width: 200px;
    }

    .form-box {
      font-family: Georgia, serif;
      background-color: white;
      width: 80%;
      max-width: 660px;
      margin: 20px auto;
      padding: 20px;
      border-radius: 10px;
      box-shadow: 0 0 15px 5px rgba(255, 0, 0, 0.7);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: center;
    }
    .form-subtitle {
      text-align: center;
      color: #666;
      font-size: 14px;
    }

    label {
      display: block;
      margin-top:10px;
      font-weight: bold;
    }
    input, textarea, button {
      width: 100%;
      padding: 12px;
      margin-top: 10px;
      border: 1px solid #ccc;
      border-radius: 5px;
      box-sizing: border-box;
      transition: box-shadow 0.3s ease-in-out;
    }

    input:focus, textarea:focus {
      outline: none;
      box-shadow: 0 0 10px rgba(255, 0, 0, 0.7);
    }

    textarea {
      resize: vertical;
    }

    .radio-group {
      display: flex;
      flex-direction: column;
      gap: 5px;
      align-items: center;

    }
    .radio-group label {
      display: flex;
      align-items: center;
      gap: 3px;
      font-size: 16px;
    }
    button:hover {
      background-color: #218838;
      box-shadow: 0 0 10px rgba(33, 136, 56, 0.8);
    }

    button {
      background-color: #143109;
      color: white;
      font-size: 16px;
      cursor: pointer;
      border: none;
      transition: background-color 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    }
    .about {
      background-color: black;
      padding: 50px 20px;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      animation: fadeIn 1.5s ease-in-out;
    }
    .Info{
      display: flex;
      align-items: center;
      gap: 20px;
      padding: 20px;
      animation: fadeIn 1.5s ease-in-out;
    }

    .text-content {
      flex: 1;
      margin-top: 50px;
      background-color: black;
      color: white;
      padding: 20px;
      box-shadow: 0 0 15px red;
      border-radius: 10px;
      text-align: start;
      width: 100%;
    }
    .text-content h1 {
      text-align: center;
      font-size: 2.5em;
      color: #732520;
      margin-bottom: 20px;
    }
    .text-content p {
      font-size: 1.2em;
      line-height: 1.8;
      max-width: 600px;
    }
    .profile-img {
      width: 100%;
      height: auto;
      border-radius: 10px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
      transition: transform 0.5s;
    }
    .profile-img:hover {
      transform: scale(1.1);
      box-shadow: 0 0 20px 10px brown;
    }
    .about h3{
      margin-top: 10px;
      color: white;
      font-size: 1.3em;
      font-family: Georgia, serif;
      font-style: normal;
    }
    .about a{
      text-decoration: none;
      color: #9D2A1B;
    }
    .about a:hover{
      color: #46130C;
      transition: 0.3s ease-in-out;
    }
    .about p{
      color: white;
    }
    .image-wrapper {
      flex-shrink: 0;
      padding: 15px;
      width: 400px;
      display: flex;
      justify-content: center;
    }
    @keyframes fadeIn {
      from {
        opacity: 0;
        transform: translateY(-20px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }
    @keyframes slideUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

