@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&display=swap');

/* Reset styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* General styles */
html {
    scroll-behavior: smooth;
}
body {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-size: 1rem;
    color: #111;
    line-height: 1.4;
    background: #fff;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* --- BUTTON STYLES --- */
.btn-primary,
button,
input[type="submit"],
.news-action-btn,
#reviewForm button {
    background: linear-gradient(90deg, #4fc3f7 0%, #0673bc 50%, #4fc3f7 100%);
    color: #fff;
    border: none;
    border-radius: 7px;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(16, 54, 90, 0.10);
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: background 0.18s, color 0.18s, outline 0.18s, transform 0.13s;
    display: inline-block;
}
.btn-primary:hover,
.btn-primary:focus,
button:hover,
button:focus,
input[type="submit"]:hover,
input[type="submit"]:focus,
.news-action-btn:hover,
.news-action-btn:focus,
#reviewForm button:hover,
#reviewForm button:focus {
    background: linear-gradient(90deg, #b2ebff 0%, #308df0 50%, #b2ebff 100%);
    color: #fff;
    outline: 2px solid #0673bc;
    transform: translateY(-2px) scale(1.04);
}

section:not(.hero) {
    padding: 6rem 0;
}
.section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: .5rem;
}
.section-subtitle {
    text-align: center;
    color: #6c757d;
    margin-bottom: 3rem;
}

/* Header styles */
header {
    color: #fff;
    background-color: #212529;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
header > .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1rem;
    padding-bottom: 1rem;
    flex-wrap: wrap;
}
header .logo a {
    text-decoration: none;
    color: #fff;
    font-size: 1.25rem;
    font-weight: bold;
    letter-spacing: 1px;
}
header .btn-toggle {
    background: transparent;
    color: #fff;
    border: solid 2px #fff;
    border-radius: 5px;
    padding: .5rem;
    cursor: pointer;
    font-size: 1.25rem;
    display: block;
}
header .navigation {
    display: none;
    flex-basis: 100%;
    margin-top: 1rem;
}
header .navigation.active {
    display: block;
}
header .nav-items {
    list-style: none;
    padding-left: 0;
}
.nav-items .nav-link {
    text-decoration: none;
    color: #fff;
    display: block;
    padding: 0.5rem 0;
    border-radius: 5px;
    transition: all 0.3s ease;
    font-weight: 500;
}
.nav-items .nav-link:hover,
.nav-items .nav-link:focus {
    background-color: #0673bc;
    padding-left: 0.5rem;
    color: #fff;
    outline: 2px solid #0673bc;
}

/* Language switcher styles */
.language-switcher {
    margin-left: 1rem;
    display: inline-block;
    vertical-align: middle;
}
.language-switcher select {
    padding: 0.25rem 1.5rem 0.25rem 0.5rem;
    border-radius: 4px;
    border: 1px solid #035d9a;
    background: #0673bc url('data:image/svg+xml;utf8,<svg fill="0673bc" height="18" viewBox="0 0 24 24" width="18" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>') no-repeat right 0.5rem center/1em;
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
    min-width: 102px;
    transition: border-color 0.2s;
}
.language-switcher select:focus {
    outline: 2px solid #0673bc;
    border-color: #03476c;
    background-color: #308df0;
}

/* Hero section */
.hero {
    height: 90vh;
    background: url('./images/background.jpg') center center/cover no-repeat;
    position: relative;
}
.hero-overlay {
    color: #fff;
    background: #00000080;
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.hero-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}
.hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: 700;
    letter-spacing: 1px;
}
.hero-content p {
    font-size: 1rem;
    margin-bottom: 2rem;
}
.hero .btn-primary {
    font-size: 1.125rem;
}

/* About section */
.galerie-title {
    text-align: center;
    width: 100%;
    margin-bottom: 0rem; /* opțional, dacă vrei spațiu sub titlu */
    font-size: 2rem; /* sau cât vrei tu */
}
.carousel-container {
  width: 100%;
  max-width: 1200px;
  height: 500px; /* CREȘTE LA 480-520PX! */
  margin-top: 0;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  
}
.carousel-track {
  display: flex;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  will-change: transform;
}
.carousel-track img {
  display: block;
  margin: 0 20px;
  width: 260px;
  height: 220px;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.14);
  background: #fff;
  opacity: 0.7;
  filter: blur(0.5px);
  transition: transform 0.2s, filter 0.2s, opacity 0.2s;
}

@media (max-width: 900px) {
  .carousel-container {
    height: 190px;
  }
  .carousel-track img {
    width: 130px;
    height: 110px;
    margin: 0 10px;
  }
}
@media (max-width: 600px) {
  .carousel-container {
    height: 120px;
  }
  .carousel-track img {
    width: 70px;
    height: 56px;
    margin: 0 4px;
  }
}

/* Services section */
.services > .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}
.service-card {
    text-align: center;
    background-color: #f8f9fa;
    border-radius: 5px;
    padding: 2rem 1rem;
    transition: box-shadow .5s ease;
    box-shadow: 0 2px 10px rgb(0 0 0 / 0.03);
}
.service-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}
.service-card .service-title {
    font-size: 1.25rem;
    margin-bottom: .5rem;
    font-weight: 700;
}

/* Team section */
.team > .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px,1fr));
    gap: 2rem;
}
.team-member {
    display: flex;
    flex-direction: column;
    gap: .75rem;
    align-items: center;
    background: #f8f9fa;
    border-radius: 8px;
    padding: 2rem 1rem;
    box-shadow: 0 2px 10px rgb(0 0 0 / 0.03);
}
.team-member img {
    max-width: 200px;
    border-radius: 8px;
    border: solid 5px #bbb;
    object-fit: cover;
    aspect-ratio: 1/1;
}
.team-member h3 {
    margin-top: .5rem;
    font-size: 1.15rem;
    font-weight: 700;
}
.team-member p.role {
    color: #6c757d;
    font-size: 1rem;
}
.team-member .member-socials {
    list-style: none;
    display: flex;
    gap: .5rem;
    padding-left: 0;
}
.team-member .member-socials li {
    display: inline-block;
}
.team-member .member-socials a {
    text-decoration: none;
    color: #fff;
    background-color: #0673bc;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: color .3s, background-color .3s;
    font-size: 1.2rem;
}
.team-member .member-socials a:hover,
.team-member .member-socials a:focus {
    color: #0673bc;
    background-color: #f8f9fa;
    outline: 2px solid #0673bc;
}

/* Testimonials section */

.testimonials-section {
  max-width: 650px;
  margin: 40px auto;
  padding: 32px 24px;
  background: #f4f7fa;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  position: relative;
  text-align: center;
}
.testimonials-section h2 {
  margin-bottom: 24px;
  font-size: 2rem;
  color: #184e77;
  font-weight: 700;
}
.testimonials-carousel {
  min-height: 160px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.testimonial-slide {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(60,93,154,0.09);
  padding: 22px 36px 19px 36px;
  max-width: 90%;
  margin: 0 auto;
  transition: box-shadow 0.2s, transform 0.15s;
}
.testimonial-slide strong {
  font-size: 1.13rem;
  color: #184e77;
  font-weight: 600;
}
.testimonial-slide .stars {
  color: #ffd700;
  font-size: 1.18em;
  margin-left: 0.6em;
  letter-spacing: 1.5px;
}
.testimonial-slide p {
  margin: 12px 0 7px 0;
  color: #28445c;
  font-size: 1.04rem;
}
.testimonial-slide small {
  color: #74a4c6;
  font-size: 0.96em;
}
.testimonial-avatar {
  width: 54px;
  height: 54px;
  margin: 0 auto 9px auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.testimonial-avatar img,
.testimonial-avatar svg {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #1976d2;
  background: #fff;
  box-shadow: 0 2px 8px rgba(25,118,210,0.07);
  display: block;
}
.carousel-controls {
  display: flex;
  justify-content: center;
  gap: 28px;
  margin-top: 18px;
}
.carousel-controls button {
  display: flex;                  /* Flexbox for perfect centering */
  align-items: center;            /* Vertical center */
  justify-content: center;        /* Horizontal center */
  background: #1976d2;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  font-size: 1.3em;
  cursor: pointer;
  transition: background 0.18s, transform 0.14s;
  padding: 0;                     /* Remove default padding */
  line-height: 1;                 /* Single line height for icon vertical alignment */
}
.carousel-controls button:hover {
  background: #005daa;
  transform: scale(1.11);
}

/* Contact section */
.contact {
    background-color: #e1edfa;
}
.contact-fast {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    justify-content: center;
    margin-bottom: 2rem;
    padding: 1rem 0;
}
.contact-fast-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.contact-fast-item h3 {
    margin-bottom: .5rem;
}
.contact-fast-item p a {
    text-decoration: none;
    color: #0673bc;
    transition: color .3s;
}
.contact-fast-item p a:hover,
.contact-fast-item p a:focus {
    text-decoration: underline;
    color: #03476c;
}
/* Make each row (number + icon) a flex container for perfect alignment */
.telefon-row {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.6em;
  
}
.telefon-row a:first-child {
  font-size: 1.07em;
  font-weight: 500;
  text-decoration: none;
}
.whatsapp-icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #25d366;
  color: #fff;
  width: 1.5em;
  height: 1.5em;
  border-radius: 50%;
  margin-left: 0.7em;
  text-decoration: none;
  transition: background 0.2s;
  font-size: 1em;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
}
.whatsapp-icon-btn:hover {
  background: #128c7e;
}
.whatsapp-icon-btn i {
  margin: 0;
  font-size: 1em;
}

/* Contact form with name and email side-by-side */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
    width: 100%;           /* Ensure the form takes full width of parent (.container) */
    max-width: none;       /* Remove any unintended width limitation */
}
.contact-form .form-row {
    display: flex;
    gap: 1rem;
    width: 100%;
}
.contact-form .form-row .form-group {
    flex: 1;
}

.contact-form .form-message {
    width: 100%;
}
.contact-form .form-message textarea {
    height: 120px;
    min-height: 80px;
    max-height: 200px;
}
.contact-form input,
.contact-form textarea {
    font-family: inherit;
    padding: 1rem;
    width: 100%;
    border: 1px solid #bbb;
    border-radius: 5px;
    background: #fff;
    font-size: 1rem;
    resize: none;
    transition: border-color .3s;
}
.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #0673bc;
    outline: none;
}
.contact-form .btn-primary {
    width: 100%;
    justify-self: center;
    margin-top: 1rem;
    align-self: center;
}

/* FAQ */
.faq details {
    margin-bottom: 1rem;
    background: #f6faff;
    padding: 1rem;
    border-radius: 8px;
  }
  .faq summary {
    font-weight: bold;
    cursor: pointer;
  }

  /* News/Update Bans Section Styles */
#news-update-section {
    background: #f4f7fa;
    border-radius: 14px;
    box-shadow: 0 4px 16px rgba(60,93,154,0.07);
    padding: 2.8rem 2rem 2.2rem 2rem;
    margin: 3rem auto 2rem auto;
    max-width: 900px;
    position: relative;
}

.news-update-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

#news-update-section h2 {
    font-size: 2rem;
    color: #184e77;
    font-weight: 700;
    margin: 0;
}

.news-action-btn {
    color: #fff;
    border: none;
    border-radius: 7px;
    padding: 0.75em 1.7em;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(16, 54, 90, 0.10);
    transition: background 0.18s, transform 0.13s;
    letter-spacing: 0.5px;
}
.news-action-btn:hover,
.news-action-btn:focus {
    outline: 2px solid #0673bc;
    color: #fff;
    transform: translateY(-2px) scale(1.04);
}

.server-response-container {
    margin-top: 1.5rem;
    padding: 1.1em 1em;
    background: #fff;
    color: #111;
    border-radius: 7px;
    box-shadow: 0 1px 8px rgba(16, 54, 90, 0.07);
    font-family: "SFMono-Regular", "Consolas", "Liberation Mono", "Menlo", monospace;
    font-size: 0.98em;
    min-height: 2.5em;
    white-space: pre-wrap;
    word-break: break-word;
    letter-spacing: 0.03em;
}

.bans-table {
    width: 100%;
    border-collapse: collapse;
    font-family: Arial, sans-serif;
    margin-top: 1em;
}
.bans-table th, .bans-table td {
    border: 1px solid #ddd;
    padding: 8px 12px;
    text-align: center;
}
.bans-table th {
    background-color: #003366;
    color: #fff;
}
.bans-table tr:nth-child(even) {
    background-color: #f2f2f2;
}
.bans-table tr:hover {
    background-color: #e6f7ff;
}

  /* Review section */
  .review-section {
  max-width: 700px;
  margin: 48px auto;
  padding: 36px 28px 28px 28px;
  border-radius: 18px;
  box-shadow: 0 6px 32px 0 rgba(0, 53, 128, 0.13);
  position: relative;
  overflow: hidden;
}
.review-section h2 {
  text-align: center;
  color: #184e77;
  font-size: 2.2rem;
  margin-bottom: 28px;
  letter-spacing: 1px;
  font-weight: 700;
}
#reviewForm {
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: #fff;
  padding: 22px 18px 18px 18px;
  border-radius: 14px;
  box-shadow: 0 1px 8px rgba(16, 54, 90, 0.07);
  margin-bottom: 38px;
  transition: box-shadow 0.18s;
}
#reviewForm input,
#reviewForm select,
#reviewForm textarea {
  padding: 11px 12px;
  border: 1.5px solid #b2c6e7;
  border-radius: 7px;
  font-size: 1.08rem;
  background: #f5f8fb;
  transition: border 0.2s, box-shadow 0.2s;
  outline: none;
}
#reviewForm input:focus,
#reviewForm select:focus,
#reviewForm textarea:focus {
  border: 1.5px solid #5390d9;
  box-shadow: 0 0 0 2px #b6d0ff3a;
}
/* #reviewForm button { ... } removed for gradient inheritance */

#reviewForm button {
  width: 100%;
  font-weight: bold;
  font-size: 1.1rem;
  margin-top: 0.5em;
}

/* Footer styles */
footer {
    color: #fff;
    background-color: #212529;
    padding: 2rem 0 0.5rem 0;
    margin-top: 2rem;
}
footer .footer-main {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 4rem; /* Equal space between addresses */
    align-items: flex-start;
    text-align: center;
}
footer .footer-address {
    flex: 1 1 0;
    min-width: 260px;
    margin-bottom: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 360px;
}
footer .footer-address p {
    margin-bottom: 0.5rem;
}
footer .footer-address a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
    line-height: 1.4;
}
footer .footer-address a:hover,
footer .footer-address a:focus {
    color: #0673bc;
}
footer .footer-map {
    margin-top: 0.5rem;
    width: 100%;
    max-width: 320px;
}
footer .footer-map iframe {
    width: 100%;
    height: 200px;
    border-radius: 8px;
    border: 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.09);
}
footer .footer-bottom {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}
footer .copyright {
    font-size: 0.9rem;
    color: #bbb;
    text-align: center;
}
footer .social-items {
    list-style: none;
    display: flex;
    gap: .75rem;
    margin: 0;
    padding: 0;
    justify-content: center;
}
footer .social-items li {
    display: inline-block;
}
footer .social-items a {
    text-decoration: none;
    color: #fff;
    background-color: #0673bc;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.2rem;
    transition: color .3s, background-color .3s;
}
footer .social-items a:hover,
footer .social-items a:focus {
    color: #0673bc;
    background-color: #fff;
    outline: 2px solid #0673bc;
}

/* Privacy policy */
.privacy-policy-wrapper {
    max-width: 700px;
    margin: 4rem auto 2rem auto;
    padding: 2.5rem 1.5rem;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 24px 0 rgba(6, 115, 188, 0.13), 0 1.5px 6px 0 rgba(0,0,0,0.07);
    text-align: center;
  }
  
  .privacy-policy-wrapper h1 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #0673bc;
  }
  
  .privacy-policy-wrapper p {
    font-size: 1.13rem;
    color: #23324a;
    margin-bottom: 1.3em;
    line-height: 1.7;
  }
  .privacy-policy-wrapper ul {
  list-style: none;
  padding-left: 0;
  margin-left: 0; 
}
  .footer-privacy-container {
    width: 100%;
    text-align: center;
    margin: 1.2rem 0 0.5rem 0;
  }
  .privacy-link {
    color: #0673bc;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    margin: 0.4rem auto 0 auto;
    font-size: 1rem;
    transition: color 0.2s;
  }
  .privacy-link:hover,
  .privacy-link:focus {
    color: #004c82;
    text-decoration: none;
  }
  /* PWA Section */
  #pwa-install-banner {
  display: none;
  position: absolute;
  top: 125px;
  right: 250px;
  transform: translateY(-50%);
  background: #212529;
  color: #fff;
  padding: 8px 16px 8px 12px;
  border-radius: 8px;
  box-shadow: 0 2px 10px #0009;
  z-index: 1500;
  font-size: 1em;
  min-width: 180px;
  line-height: 1.2;
  display: flex;
  align-items: center;
  margin-left: 12px;
  animation: slideInRight 0.25s;
}

/* Dacă vrei să se suprapună peste container la resize, setează .container { position:relative; } */
header .container {
  position: relative;
}

#pwa-install-banner .message {
  flex: 0 1 auto;
  font-size: 1em;
  white-space: nowrap;
  margin-right: 10px;
}

#pwa-install-btn {
  flex: 0 0 auto;
  margin-right: 7px;
  padding: 4px 12px;
  border: none;
  border-radius: 4px;
  background: linear-gradient(90deg, #b2ebff 0%, #308df0 50%, #b2ebff 100%);
  color: #222;
  cursor: pointer;
  font-size: 0.95em;
  font-weight: bold;
  box-shadow: 0 2px 6px #0002;
  transition: opacity 0.18s;
  min-width: 65px;
  height: 26px;
  line-height: 1;
  display: inline-block;
}
#pwa-install-btn:hover {
  opacity: 0.87;
}

#pwa-install-close {
  position: absolute;
  top: 4px;
  right: 8px;
  cursor: pointer;
  font-size: 1.2em;
  color: #fff;
  font-weight: bold;
  transition: color 0.18s;
  background: none;
  border: none;
  line-height: 1;
  z-index: 2;
  padding: 0 2px;
}
#pwa-install-close:hover {
  color: #f55;
}

@keyframes slideInRight {
  from { opacity: 0; right: -40px; }
  to   { opacity: 1; right: 0; }
}

@media (max-width: 700px) {
  #pwa-install-banner {
    top: 100%;
    right: 0;
    transform: translateY(0);
    font-size: 0.93em;
    min-width: 120px;
    padding: 6px 4px 6px 8px;
  }
  #pwa-install-btn {
    padding: 3px 6px;
    font-size: 0.93em;
    min-width: 50px;
    height: 22px;
  }
  #pwa-install-close {
    font-size: 1.1em;
    top: 1px;
    right: 2px;
  }
}

/* Responsive for footer addresses */
@media screen and (max-width: 900px) {
    footer .footer-main {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }
    footer .footer-address {
        max-width: 100%;
        width: 100%;
    }
}

@media screen and (min-width: 768px) {
    .btn-primary {
        font-size: 1rem;
        padding: 1rem 3rem;
    }
    header .btn-toggle {
        display: none;
    }
    header .navigation {
        display: flex !important;
        flex-basis: auto;
        margin: 0;
    }
    header .nav-items {
        display: flex;
        gap: 1rem;
    }
    .nav-items .nav-link {
        padding: .5rem 1rem;
    }
    .hero-content h1 {
        font-size: 3.5rem;
    }
    .hero-content p {
        font-size: 1.125rem;
    }
    .contact-form .btn-primary {
        width: auto;
        justify-self: center;
    }
    .contact-form .form-row {
        flex-direction: row;
    }
    .contact-fast {
        grid-template-columns: 1fr 1fr;
        align-items: start;
        margin-bottom: 2rem;
    }
}
@media (max-width: 600px) {
    .language-switcher {
        margin-left: 0;
        margin-top: .5rem;
        display: block;
    }
    .language-switcher select {
        width: 100%;
    }
}
@media (max-width: 900px) {
    .testimonials blockquote {
      margin-left: 0.5rem;
      margin-right: 0.5rem;
      padding: 1.4rem 1rem 1rem 1rem;
      font-size: 1rem;
    }
    .testimonials h2 {
      font-size: 1.4rem;
    }
  }
  
  @media (max-width: 600px) {
    .testimonials {
      padding: 2rem 0 1rem 0;
    }
    .testimonials blockquote {
      max-width: 95vw;
      min-width: 0;
      padding: 1rem 0.7rem 0.7rem 0.7rem;
    }
  }

@media (max-width: 650px) {
  .review-section {
    padding: 16px 2vw;
  }
  #reviewForm {
    padding: 10px 5vw 14px 5vw;
  }
  .testimonial-slide {
    padding: 12px 8vw 10px 8vw;
  }
  #testimonials {
    gap: 16px;
  }
}

@media screen and (max-width: 767px) {
    .contact-fast {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .contact-form .form-row {
        flex-direction: column;
        gap: 0;
    }
    .contact-form .btn-primary {
        width: 100%;
    }
}
@media (max-width: 700px) {
    .privacy-policy-wrapper {
      margin: 2.2rem 0.5rem 1rem 0.5rem;
      padding: 1.3rem 0.5rem;
    }
    .privacy-policy-wrapper h1 {
      font-size: 1.35rem;
    }
    .privacy-policy-wrapper p {
      font-size: 1rem;
    }
  }
  /* Responsive for News/Update Bans Section */
@media screen and (max-width: 700px) {
    #news-update-section {
        padding: 1.2rem 0.7rem;
    }
    .news-update-header {
        flex-direction: column;
        gap: 1.2em;
        align-items: stretch;
    }
    .news-action-btn {
        width: 100%;
        font-size: 1rem;
        padding: 0.7em 0.7em;
    }
}