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

html, body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Header styles to match the reference */
.header {
  background: #fff;
  display: flex;
  align-items: center;
  padding: 0 1.5rem;
  height: 80px;
  min-height: 80px;
  border-bottom: none;
}
.header .logo img {
  height: 48px;
  max-height: 48px;
  border: 12px solid transparent !important;
  border-radius: 6px !important;
  box-sizing: border-box !important;
}
nav.main-nav {
  display: flex;
  align-items: center;
  background: #1a2745;
  height: 80px;
  margin-left: auto;
}
nav.main-nav ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}
nav.main-nav ul li {
  margin: 0;
}
nav.main-nav ul li a {
  display: block;
  padding: 0 1.1rem;
  color: #1a2745;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  height: 80px;
  line-height: 80px;
  background: #fff;
  transition: background 0.2s, color 0.2s;
}
nav.main-nav ul li.active a,
nav.main-nav ul li a:hover {
  background: #1a2745;
  color: #fff;
}
nav.main-nav ul li:last-child a,
nav.main-nav ul li a.button {
  background: #c1272d;
  color: #fff;
  font-weight: 700;
  border-radius: 0;
}

/* Header styles for mobile */
.header {
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 0;
  border-bottom: none;
  position: relative;
}
.header .logo img {
  height: 60px;
  display: block;
  margin: 0 auto;
}
/* Hamburger menu placeholder */
.header .hamburger {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.header .hamburger span {
  display: block;
  width: 24px;
  height: 3px;
  background: #1a2745;
  margin: 4px 0;
  border-radius: 2px;
}

/* Hero Section Overlay Styles */
.hero-section {
  position: relative;
  width: 100%;
  max-width: 100vw;
  height: 580px;
  overflow: hidden;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(26,39,69,0.85) 0%, rgba(26,39,69,0.45) 55%, rgba(26,39,69,0.05) 100%),
              linear-gradient(0deg, rgba(26,39,69,0.55) 0%, rgba(26,39,69,0.00) 60%);
}
.hero-section .hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.6);
}
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  color: #fff;
  padding: 0 5vw;
  text-align: left;
  z-index: 2;
  max-width: 900px;
  padding-left: 3vw;
}
.hero-area {
  font-size: 1.2rem;
  letter-spacing: 2px;
  margin-bottom: 2.2rem;
  font-weight: 500;
  color: #fff;
}
.hero-sep {
  color: #c1272d;
  font-weight: bold;
  margin: 0 0.5rem;
}
.hero-overlay h1 {
  font-size: 3.5rem;
  font-weight: 800;
  margin: 0 0 1.5rem 0;
  line-height: 1.1;
  color: #fff;
  letter-spacing: -1px;
}
.hero-desc {
  font-size: 1.35rem;
  margin-bottom: 2.2rem;
  max-width: 900px;
  color: #fff;
  font-weight: 400;
}
.hero-buttons {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  align-items: center;
  margin-top: 0.5rem;
}
.hero-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.2rem 2.8rem;
  font-size: 1.25rem;
  font-weight: 700;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, border 0.2s;
  border: 2px solid transparent;
  margin: 0;
  box-shadow: 0 2px 12px rgba(26,39,69,0.10);
}
.hero-btn-red {
  background: #c1272d;
  color: #fff;
  border-color: #c1272d;
}
.hero-btn-red:hover {
  background: #a01e23;
  border-color: #a01e23;
}
.hero-btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}
.hero-btn-outline:hover {
  background: #fff;
  color: #1a2745;
}

@media (max-width: 900px) {
  .hero-section { height: 400px; }
  .hero-overlay h1 { font-size: 1.1rem; }
  .hero-desc { font-size: 0.9rem; }
  .hero-overlay { padding: 0 1vw; }
  .hero-btn { padding: 0.7rem 1.2rem; font-size: 0.95rem; }
}
@media (max-width: 600px) {
  .hero-section { height: 260px; }
  .hero-overlay h1 { font-size: 0.95rem; }
  .hero-desc { font-size: 0.8rem; }
  .hero-overlay { padding: 0 1vw; }
  .hero-btn { padding: 0.6rem 1rem; font-size: 0.9rem; }
}

/* About Us section styles */
.homepage-content h2, .homepage-content h3, .homepage-content h1 {
  color: #1a2745;
  font-weight: 800;
}
.homepage-content h2 {
  margin-top: 2rem;
  color: #c1272d;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 1px;
}
.homepage-content h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.homepage-content {
  padding: 1.5rem 1rem;
}

.below-hero-trust {
  margin: 2.2rem auto 1.2rem auto;
  text-align: center;
  max-width: 95vw;
}
.service-area {
  font-size: 1.05rem;
  color: #c1272d;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 0.3rem;
}
.trust-message {
  font-size: 1rem;
  color: #1a2745;
  font-weight: 500;
  margin-bottom: 0.2rem;
}
@media (max-width: 600px) {
  .below-hero-trust {
    margin: 1.2rem auto 0.7rem auto;
  }
  .service-area {
    font-size: 0.98rem;
  }
  .trust-message {
    font-size: 0.93rem;
  }
}

#main-menu.main-menu > ul > li > a {
  color: #111 !important;
  font-weight: 700 !important;
  padding: 0 1.7rem !important;
  font-size: 1.35rem !important;
  height: 80px !important;
  line-height: 80px !important;
  min-width: 160px !important;
  text-align: center !important;
  box-sizing: border-box !important;
}

#main-menu.main-menu > ul > li.active > a,
#main-menu.main-menu > ul > li.active > a span {
  background: #1a2745 !important;
  color: #fff !important;
}

#main-menu.main-menu > ul > li:last-child > a,
#main-menu.main-menu > ul > li:last-child > a span,
#main-menu.main-menu > ul > li > a.button,
#main-menu.main-menu > ul > li > a.button span {
  background: #c1272d !important;
  color: #fff !important;
  font-weight: 700 !important;
  font-size: 1.1rem !important;
}

@media (max-width: 900px) {
  #main-menu.main-menu > ul > li > a,
  #main-menu.main-menu > ul > li > a span {
    font-size: 0.95rem !important;
    padding: 0.6rem 0.8rem !important;
  }
  .header {
    height: 48px !important;
    min-height: 48px !important;
    padding: 0 0.5rem !important;
  }
  .header .logo img {
    height: 32px !important;
    max-height: 32px !important;
  }
}
@media (max-width: 600px) {
  #main-menu.main-menu > ul > li > a,
  #main-menu.main-menu > ul > li > a span {
    font-size: 0.9rem !important;
    padding: 0.6rem 0.8rem !important;
  }
}

@media (min-width: 901px) {
  .header .container {
    max-width: 100% !important;
    width: 100% !important;
    margin: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .logo {
    margin-left: 0 !important;
    margin-right: 0 !important;
    flex: 0 0 auto !important;
  }
  #main-menu.main-menu {
    margin-left: 0 !important;
    margin-right: 0 !important;
    flex: 0 0 auto !important;
    width: auto !important;
    display: flex !important;
    justify-content: flex-end !important;
  }
  #main-menu.main-menu > ul {
    justify-content: flex-end !important;
    width: 100% !important;
  }
  .header .hamburger {
    display: none !important;
  }
  .header .logo img {
    height: 72px !important;
    max-height: 72px !important;
  }
}

.about-section {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 3rem;
  max-width: 1200px;
  margin: 3rem auto 0 auto;
  padding: 2.5rem 2rem;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(26,39,69,0.07);
}
.about-img {
  flex: 0 0 340px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-img img {
  width: 100%;
  max-width: 340px;
  height: auto;
  display: block;
}
.about-content {
  flex: 1 1 0%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.about-label {
  color: #c1272d;
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 0.5rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.about-content h2 {
  color: #1a2745;
  font-size: 2.2rem;
  font-weight: 800;
  margin: 0 0 1rem 0;
}
.about-content p {
  color: #444;
  font-size: 1.1rem;
  margin-bottom: 1rem;
  line-height: 1.6;
}
.about-btn {
  display: inline-block;
  background: #1a2745;
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 0.8rem 2.2rem;
  border-radius: 4px;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(26,39,69,0.08);
  transition: background 0.2s, color 0.2s;
  margin-top: 0.5rem;
}
.about-btn:hover {
  background: #c1272d;
  color: #fff;
}
@media (max-width: 900px) {
  .about-section {
    flex-direction: column;
    gap: 2rem;
    padding: 1.5rem 0.5rem;
  }
  .about-img {
    flex: 0 0 180px;
    max-width: 90vw;
  }
  .about-img img {
    max-width: 90vw;
  }
  .about-content h2 {
    font-size: 1.3rem;
  }
}

.about-section-bg {
  position: relative;
  width: 100vw;
  min-height: 500px;
  height: 500px;
  background: url('/wrench.jpg') left -80px center no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin: 0 auto 0 auto;
  overflow: hidden;
}
.about-content-bg {
  background: none !important;
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  max-width: 540px;
  margin-right: 6vw;
  padding: 1.1rem 1.1rem 1.1rem 0.8rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.about-content-bg h2 {
  color: #1a2745;
  font-size: 1.2rem;
  font-weight: 800;
  margin: 0 0 0.5rem 0;
}
.about-content-bg p {
  color: #444;
  font-size: 0.92rem;
  margin-bottom: 0.5rem;
  line-height: 1.45;
}
.about-btn {
  font-size: 0.95rem;
  padding: 0.6rem 1.2rem;
}
@media (max-width: 900px) {
  .about-section-bg {
    min-height: 340px;
    height: auto;
    background-position: left top;
    justify-content: center;
  }
  .about-content-bg {
    margin: 1.5rem 0.5rem;
    padding: 1.2rem 1rem;
    max-width: 98vw;
  }
  .about-content-bg h2 {
    font-size: 1rem;
  }
  .about-content-bg p {
    font-size: 0.85rem;
  }
}

.cta-bar {
  width: 100vw;
  background: #c1272d;
  color: #fff;
  font-size: 1.25rem;
  font-weight: 400;
  text-align: center;
  padding: 1.2rem 0.5rem;
  margin: 0 auto;
  letter-spacing: 0.01em;
}
.cta-bar a {
  color: #fff;
  font-weight: 700;
  text-decoration: underline;
  transition: color 0.2s;
}
.cta-bar a:hover {
  color: #ffe0e6;
}
@media (max-width: 900px) {
  .cta-bar {
    font-size: 1rem;
    padding: 0.8rem 0.2rem;
  }
}

.results-section {
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  background: #e9f0f6;
  width: 100vw;
  max-width: 100vw;
  height: 410px;
  margin: 0 auto 0 auto;
  padding: 0;
  box-sizing: border-box;
  position: relative;
}
.results-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  max-width: 540px;
  z-index: 1;
  text-align: center;
  padding: 2.2rem 1.5rem 2.2rem 3vw;
  height: 100%;
}
.results-label {
  color: #1a2745;
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
  letter-spacing: 0.04em;
}
.results-content h2 {
  color: #1a2745;
  font-size: 2rem;
  font-weight: 800;
  margin: 0 0 0.8rem 0;
}
.results-content p {
  color: #5a6473;
  font-size: 1rem;
  margin-bottom: 1rem;
  line-height: 1.5;
}
.results-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.results-list li {
  color: #1a2745;
  font-size: 1rem;
  margin-bottom: 0.7rem;
  display: flex;
  align-items: center;
  font-weight: 500;
  justify-content: center;
  text-align: center;
}
.checkmark {
  color: #1a7fc1;
  font-size: 1.15rem;
  margin-right: 0.7rem;
  font-weight: bold;
}
.results-image {
  flex: 1 1 0;
  min-width: 180px;
  max-width: 40vw;
  display: flex;
  align-items: stretch;
  justify-content: flex-end;
  overflow: hidden;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  height: 100%;
}
.results-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 220px;
}
@media (max-width: 1100px) {
  .results-section {
    flex-direction: column;
    min-height: 0;
    height: auto;
    position: static;
  }
  .results-content {
    padding: 1.2rem 0.7rem 0.7rem 0.7rem;
    max-width: 100vw;
    height: auto;
  }
  .results-image {
    position: static;
    max-width: 100vw;
    min-width: 0;
    height: 140px;
  }
  .results-image img {
    min-height: 140px;
    height: 140px;
  }
}

@media (min-width: 1101px) {
  .results-content {
    margin-left: 12vw;
  }
}

.top-contact-bar {
  width: 100vw;
  background: #075a99;
  color: #fff;
  font-size: 1.15rem;
  font-weight: 400;
  padding: 0.5rem 0;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.top-contact-content {
  display: flex;
  gap: 2.2rem;
  align-items: center;
  margin-right: 3vw;
}
.top-contact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.top-contact-icon {
  font-size: 1.3rem;
  vertical-align: middle;
}
.top-contact-bar a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}
.top-contact-bar a:hover {
  color: #ffe0e6;
  text-decoration: underline;
}
@media (max-width: 900px) {
  .top-contact-bar {
    font-size: 0.95rem;
    padding: 0.3rem 0;
  }
  .top-contact-content {
    gap: 1.1rem;
    margin-right: 1vw;
  }
  .top-contact-icon {
    font-size: 1rem;
  }
}

.top-contact-item .top-contact-icon {
  color: #fff !important;
}

/* --- Our Expert Services Section Styles --- */
.services-section {
  background: #fff;
  padding: 3.5rem 0 3.5rem 0;
  width: 100vw;
  max-width: 100vw;
}
.services-header {
  text-align: center;
  margin-bottom: 2.5rem;
}
.services-label {
  color: #c1272d;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.5rem;
}
.services-header h2 {
  color: #1a2745;
  font-size: 2.5rem;
  font-weight: 800;
  margin: 0 0 0.7rem 0;
}
.services-intro {
  color: #5a6473;
  font-size: 1.15rem;
  margin-bottom: 0;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 2.2rem 2.2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2vw;
}
.service-card {
  background: #f7fafd;
  border-radius: 12px;
  box-shadow: 0 2px 16px rgba(26,39,69,0.07);
  padding: 2rem 1.2rem 1.5rem 1.2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: box-shadow 0.2s, transform 0.2s;
  min-height: 370px;
}
.service-card:hover {
  box-shadow: 0 6px 32px rgba(26,39,69,0.13);
  transform: translateY(-4px) scale(1.025);
}
.service-card img {
  width: 100%;
  max-width: 260px;
  height: 160px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 1.2rem;
  background: #e9f0f6;
}
.service-card h3 {
  color: #1a2745;
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 0 0.7rem 0;
}
.service-card p {
  color: #5a6473;
  font-size: 1rem;
  margin: 0;
}
@media (max-width: 900px) {
  .services-section {
    padding: 2.2rem 0 2.2rem 0;
  }
  .services-header h2 {
    font-size: 1.5rem;
  }
  .services-intro {
    font-size: 1rem;
  }
  .service-card {
    padding: 1.2rem 0.7rem 1.2rem 0.7rem;
    min-height: 320px;
  }
  .service-card img {
    max-width: 98vw;
    height: 120px;
  }
}
@media (max-width: 600px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
    padding: 0 0.5vw;
  }
  .service-card {
    min-height: 0;
  }
}

/* --- Get In Touch Today Section Styles --- */
.contact-section {
  position: relative;
  width: 100vw;
  min-height: 340px;
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin: 0 auto 0 auto;
  background: #1a2745;
}
.contact-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(26,39,69,0.65) 0%, rgba(26,39,69,0.85) 100%);
}
.contact-bg {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: url('/InTouch.jpg') center center no-repeat;
  background-size: cover;
  z-index: 1;
  filter: brightness(0.55) grayscale(0%);
}
.contact-overlay {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding: 2.5rem 1rem 2.5rem 1rem;
}
.contact-label {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 0.7rem;
  opacity: 0.85;
}
.contact-title {
  font-size: 2.8rem;
  font-weight: 800;
  margin: 0 0 1.2rem 0;
  color: #fff;
  letter-spacing: -1px;
}
.contact-desc {
  font-size: 1.25rem;
  margin-bottom: 2.2rem;
  color: #fff;
  font-weight: 400;
  opacity: 0.97;
}
.contact-desc a {
  color: #fff;
  text-decoration: underline;
  font-weight: 600;
  transition: color 0.2s;
}
.contact-desc a:hover {
  color: #ffe0e6;
}
.contact-btn {
  display: inline-block;
  background: #c1272d;
  color: #fff;
  font-weight: 700;
  font-size: 1.3rem;
  padding: 0.9rem 3.2rem;
  border-radius: 4px;
  text-decoration: none;
  box-shadow: 0 4px 18px rgba(26,39,69,0.13);
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  margin-top: 0.5rem;
  letter-spacing: 0.01em;
}
.contact-btn:hover {
  background: #a01e23;
  color: #fff;
  box-shadow: 0 8px 32px rgba(26,39,69,0.18);
}
@media (max-width: 900px) {
  .contact-section {
    height: 300px;
    min-height: 220px;
  }
  .contact-title {
    font-size: 1.5rem;
  }
  .contact-desc {
    font-size: 1rem;
  }
  .contact-btn {
    font-size: 1rem;
    padding: 0.7rem 1.5rem;
  }
}

/* --- Custom Footer Styles (Font Update) --- */
.custom-footer {
  background: #fff;
  padding: 2.5rem 0 1.5rem 0;
  border-top: 1px solid #e9e9e9;
  width: 100vw;
  max-width: 100vw;
  font-family: Arial, Helvetica, sans-serif;
}
.footer-container {
  display: grid;
  grid-template-columns: 2.2fr 1.2fr 1.2fr 1.2fr;
  align-items: flex-start;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2vw;
  gap: 2.5rem;
}
.footer-logo-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  min-width: 220px;
}
.footer-logo {
  width: 210px;
  max-width: 100%;
  margin-bottom: 1.1rem;
}
.footer-copyright {
  color: #888;
  font-size: 1.05rem;
  margin-bottom: 0.7rem;
  margin-top: 0.2rem;
  line-height: 1.5;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 400;
}
.footer-links {
  color: #888;
  font-size: 1.05rem;
  margin-top: 0.7rem;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 400;
}
.footer-links a {
  color: #888;
  text-decoration: none;
  margin: 0 0.2rem;
  transition: color 0.2s;
  font-weight: 400;
}
.footer-links a:hover {
  color: #c1272d;
  text-decoration: underline;
}
.footer-col {
  min-width: 180px;
  margin-bottom: 1.5rem;
}
.footer-heading {
  color: #c1272d;
  font-size: 1.25rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  margin-bottom: 0.7rem;
  border-bottom: 1px solid #ececec;
  padding-bottom: 0.3rem;
  letter-spacing: 0.01em;
}
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-col ul li {
  margin-bottom: 0.5rem;
  color: #5a6473;
  font-size: 1.08rem;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 400;
}
.footer-col ul li a {
  color: #5a6473;
  text-decoration: none;
  transition: color 0.2s;
  font-weight: 400;
  font-family: Arial, Helvetica, sans-serif;
}
.footer-col ul li a:hover {
  color: #c1272d;
  text-decoration: underline;
}
@media (max-width: 1100px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}
@media (max-width: 700px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 1.2rem;
    padding: 0 1vw;
  }
  .footer-logo {
    width: 140px;
  }
  .footer-col, .footer-logo-col {
    min-width: 0;
    align-items: flex-start;
  }
  .footer-heading {
    font-size: 1.1rem;
  }
}

/* --- Animations on Scroll --- */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s cubic-bezier(0.4,0,0.2,1), transform 0.7s cubic-bezier(0.4,0,0.2,1);
  will-change: opacity, transform;
}
.animate-on-scroll.animated {
  opacity: 1;
  transform: none;
}

/* Terms & Conditions Page Styles */
.terms-container {
  max-width: 900px;
  margin: 40px auto 60px auto;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 16px rgba(26,39,69,0.07);
  padding: 40px 32px 48px 32px;
  font-family: Inter, Helvetica, Arial, sans-serif;
}
.terms-title {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 32px;
  color: #1a2745;
  text-align: left;
  letter-spacing: -1px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}
.terms-content {
  font-size: 1.08rem;
  color: #222;
  line-height: 1.7;
  font-family: Inter, Helvetica, Arial, sans-serif;
}
.terms-content h1,
.terms-content h2,
.terms-content h3,
.terms-content h4 {
  color: #1a2745;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 800;
  margin-top: 2.2em;
  margin-bottom: 0.7em;
  letter-spacing: -0.5px;
}
.terms-content h1 {
  font-size: 2rem;
  margin-top: 0;
}
.terms-content h2 {
  font-size: 1.3rem;
}
.terms-content h3 {
  font-size: 1.1rem;
}
.terms-content strong,
.terms-content b {
  color: #1a2745;
  font-weight: 700;
}
.terms-content ul, .terms-content ol {
  margin-bottom: 1.1em;
  padding-left: 2em;
}
.terms-content li {
  margin-bottom: 0.5em;
}
.terms-content p {
  margin-bottom: 1.1em;
}
.terms-content {
  word-break: break-word;
}
.terms-content em {
  font-style: italic;
}
.terms-content {
  background: none;
}
.terms-content > ol > li,
.terms-content > ul > li {
  font-weight: 500;
}
.terms-content {
  counter-reset: section;
}
.terms-content h2:before {
  counter-increment: section;
  content: counter(section) ". ";
  color: #1a2745;
  font-weight: 800;
  margin-right: 0.3em;
}
@media (max-width: 700px) {
  .terms-container {
    padding: 18px 6vw 32px 6vw;
    margin: 18px 0 32px 0;
  }
  .terms-title {
    font-size: 1.3rem;
    margin-bottom: 18px;
  }
  .terms-content {
    font-size: 0.98rem;
  }
  .terms-content h1 {
    font-size: 1.2rem;
  }
  .terms-content h2 {
    font-size: 1.05rem;
  }
  .terms-content h3 {
    font-size: 0.98rem;
  }
} 