        /* Base Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  color: #ffffff;
  background-color: #000;
}

/* Utility Container */
.container-header {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

/* Header Styles */
.navbar {
  background-color: #002452;
  padding: 1.5rem 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

.logo {
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
}

.logo img {
    width: 70%;
}

.logo span {
  color: #00c3a5;
}

/* Nav & Contact */
.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: 500;
}

.contact-btn {
  background-color: white;
  color: #002452;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s;
}

/* Hamburger Menu (Mobile) */
#menu-toggle {
  display: none;
}

.hamburger {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: white;
}

/* Hero Section */
.hero {
  height: 100vh;
  background: url('../images/home1.png') center center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding-top: 150px;
  text-align: center;
}

.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0, 36, 82, 0.85), rgba(0, 195, 165, 0.65));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  width: 100%;
  padding: 1rem;
}

/* Hero Text */
.hero h1 {
    font-size: 4.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero h1 span {
  color: #aefcdb;
}

.hero p {
  font-size: 1rem;
  margin-bottom: 2rem;
  color: #e0e0e0;
}

/* Form */
.search-box {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    margin: 0px 0px 25px 0px;
    padding: 9px;
    backdrop-filter: blur(8px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}
.input-wrapper {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 10px 0 0 10px;
  padding: 1.2rem 1rem;
  flex: 1;
  max-width: 500px;
}

.search-icon {
  width: 1.25rem;
  height: 1.25rem;
  margin-right: 0.75rem;
  flex-shrink: 0;
}

.input-wrapper input {
  background: transparent;
  border: none;
  outline: none;
  font-size: 1rem;
  color: white;
  width: 100%;
}

.input-wrapper input::placeholder {
  color: white;
  opacity: 0.9;
}

.search-box button {
    padding: 1.3em 1.5rem;
    background: linear-gradient(to right, #003973, #00c3a5);
    color: white;
    font-weight: 600;
    border: none;
    border-radius: 0 10px 10px 0;
    font-size: 1rem;
    cursor: pointer;
    height: 100%;
}


/* Stats */
.stats {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.stats div {
  text-align: center;
}

.stats strong {
  font-size: 1.3rem;
  font-weight: 700;
  display: block;
}

.stats span {
  font-size: 0.9rem;
  color: #ccc;
}

/* Responsive Design */
@media (max-width: 768px) {
  /* Hide nav and show hamburger */
  .nav-links {
    display: none;
    width: 100%;
    flex-direction: column;
    background: #002452;
    padding: 1rem 0;
  }

  #menu-toggle:checked + .hamburger + .nav-links {
    display: flex;
  }

  .hamburger {
    display: block;
  }

  .contact-btn {
    display: none;
  }

  .hero h1 {
    font-size: 2rem;
  }

.search-box {
    flex-direction: column;
    align-items: stretch;
  }

  .input-wrapper, .search-box button {
    width: 100%;
    border-radius: 10px;
    margin: 0.25rem 0;
  }

  .search-box button {
    height: auto;
  }

  .stats {
    flex-direction: column;
    gap: 1rem;
  }
}
/* --- Speed Section --- */
.speed-section {
  background: #fff;
  padding: 4rem 1.5rem;
  text-align: center;
}

.speed-header h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #111;
}

.speed-header p {
  font-size: 1rem;
  color: #444;
  margin-bottom: 3rem;
}

/* Wrapper for mobile horizontal scroll */
.speed-cards-wrapper {
  overflow-x: auto;
  scroll-snap-type: x mandatory;
}

.speed-cards {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  scroll-snap-align: start;
}

.speed-card {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 1.5rem 1rem;
  width: 260px;
  min-width: 240px;
  scroll-snap-align: center;
  box-shadow: 0 0 0 transparent;
  transition: box-shadow 0.3s ease-in-out;
  position: relative;
}

.speed-card:hover {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.speed-card h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #111;
}

.speed-card .users {
  display: inline-block;
  background: #2e7d32;
  color: white;
  font-size: 0.75rem;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  margin-bottom: 0.8rem;
}

.speed-card .mbps {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0b2f78;
  margin-bottom: 0.5rem;
}

.speed-card p {
  font-size: 0.9rem;
  color: #555;
  min-height: 40px;
  margin-bottom: 1.5rem;
}

.speed-card .btn {
  display: inline-block;
  background-color: #16a34a;
  color: white;
  font-weight: 600;
  padding: 0.6rem 1.2rem;
  border-radius: 6px;
  font-size: 0.9rem;
  text-decoration: none;
  transition: background 0.3s ease;
}

.speed-card .btn:hover {
  background-color: #12813b;
}

.speed-card .btn.hidden {
  display: none;
}

.speed-card:hover .btn.hidden {
  display: inline-block;
}

/* Recommended box */
.recommend-box {
  margin-top: 4rem;
  background: #f8f8f8;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 2rem 1.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.recommend-box h5 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #111;
}

.recommend-box p {
  color: #333;
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.recommend-box .btn.dark {
  background-color: #0b2f78;
  color: white;
  padding: 0.6rem 1.4rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
}

.recommend-box .btn.dark:hover {
  background-color: #09265f;
}

/* Scroll behavior for mobile */
@media (max-width: 768px) {
 .speed-cards-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scroll-padding-left: 1rem;
    margin-left: -1rem;
    margin-right: -1rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .speed-cards {
    display: flex;
    gap: 1rem;
    flex-wrap: nowrap;
    width: max-content;
  }

  .speed-card {
    flex: 0 0 auto;
    scroll-snap-align: start;
    min-width: 250px;
    max-width: 280px;
    width: 85vw;
    box-sizing: border-box;
  }
}
/* === ISP Section Container === */
.isp-section {
  background: #fff;
  padding: 4rem 1.5rem;
  text-align: center;
}

.section-header h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #111;
}

.section-header p {
  font-size: 1rem;
  color: #444;
  margin-bottom: 3rem;
}

/* === Scrollable Wrapper (for carousel) === */
.isp-cards-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  padding: 0 1rem;
  margin: 0 -1rem;
}

/* === Card Container Layout === */
.isp-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
}

@media (max-width: 768px) {
  .isp-cards {
    flex-wrap: nowrap;
    width: max-content;
  }

  .isp-card {
    flex: 0 0 auto;
    scroll-snap-align: start;
    min-width: 260px;
    width: 85vw;
  }
}

/* === ISP Card === */
.isp-card {
  background: #fff;
  border-radius: 12px;
  border: 1px solid #ddd;
  box-shadow: 0 5px 12px rgba(0, 0, 0, 0.05);
  padding: 1.5rem 1rem;
  text-align: center;
  max-width: 260px;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Card Image */
.isp-card img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 1rem;
}

/* ISP Name Tag */
.isp-card .tag {
  background: #1baf63;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.3rem 1rem;
  border-radius: 999px;
  margin-bottom: 0.6rem;
  display: inline-block;
}

/* Rating */
.isp-card .rating {
  font-size: 0.85rem;
  color: #444;
  margin-bottom: 0.6rem;
}

.isp-card .rating span {
  font-weight: 600;
  color: #000;
}

/* Price */
.isp-card .price {
  font-size: 1.2rem;
  font-weight: 700;
  color: #0b2f78;
  margin-bottom: 1rem;
}

/* Feature List */
.isp-card ul,
.isp-card .features {
  list-style: none;
  text-align: left;
  margin: 0 auto 1.5rem;
  padding: 0;
  max-width: 200px;
}

.isp-card ul li,
.isp-card .features li {
  font-size: 0.9rem;
  color: #333;
  margin-bottom: 0.4rem;
  padding-left: 1.2rem;
  position: relative;
}

.isp-card ul li::before,
.isp-card .features li::before {
  content: "●";
  position: absolute;
  left: 0;
  top: 0.2rem;
  font-size: 0.6rem;
  color: #1baf63;
}

/* Button */
.isp-card .btn {
  display: inline-block;
  padding: 0.6rem 1.2rem;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  font-size: 0.9rem;
  background: #0b2f78;
  color: white;
  margin-bottom: 1.5rem;
  transition: background 0.3s ease;
}

.isp-card .btn:hover {
  background: #1baf63;
}

/* Wide Horizontal Divider */
/* .card-divider {
  width: 90%;
  height: 3px;
  background-color: #ddd;
  border: none;
  border-radius: 2px;
  margin-top: auto;
} */

/* === Bottom Compare Button Section === */
.compare-box {
  margin-top: 3rem;
  text-align: center;
}

.compare-box .btn.dark {
  background: #0b2f78;
  color: #fff;
  padding: 0.6rem 1.4rem;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  font-size: 0.9rem;
  transition: background 0.3s ease;
}

.compare-box .btn.dark:hover {
  background: #1baf63;
}

/* Horizontal Line Under Button */
.compare-box hr {
  margin: 2rem auto 0;
  max-width: 75em;
  border: none;
  height: 2px;
  background-color: #ccc;
  border-radius: 1px;
}


/* === Learn & Save Section === */
.learn-section {
  background: #f9f9f9;
  padding: 4rem 1.5rem;
}

.learn-header {
  text-align: center;
  margin-bottom: 3rem;
}

.learn-header h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 0.5rem;
}

.learn-header p {
  color: #444;
  font-size: 1rem;
}

/* === Grid Layout === */
.learn-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

@media (max-width: 1024px) {
  .learn-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .contact-btn {
    display:none;
  }
}

@media (max-width: 600px) {
  .learn-grid {
    grid-template-columns: 1fr;
  }
}

/* === Individual Box === */
.learn-box {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 12px;
  padding: 1.5rem;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 260px;
}

/* Badge + Read Time Row */
.box-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.badge {
  background: #16a34a;
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
}

.read-time {
  font-size: 0.75rem;
  color: #666;
}

/* Heading and Description */
.learn-box h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #111;
}

.learn-box p {
  font-size: 0.9rem;
  color: #444;
  flex-grow: 1;
  margin-bottom: 1rem;
}

/* Read More Link */
.read-more {
  font-size: 0.85rem;
  color: #0b2f78;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s ease;
}

.read-more:hover {
  color: #16a34a;
}



/* FAQ Section */
.faq-section {
  background: #f7f9fb; /* soft light background */
  padding: 4rem 1rem;
  font-family: 'Segoe UI', sans-serif;
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.faq-heading {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: #111;
}

.faq-list {
  text-align: left;
}

.faq-item {
  border-bottom: 1px solid #ddd;
  padding: 1.5rem 0;
  transition: background 0.3s ease;
  background-color: transparent;
}

/* .faq-item.active {
  background-color: #e9f6f0;
} */

.faq-question {
  font-weight: 500;
  position: relative;
  padding-right: 3rem;
  line-height: 1.5;
  color: #1f2937;
}

.faq-question .toggle-btn {
  position: absolute;
  right: 0;
  top: 0;
  background: #1baf63;
  border: none;
  color: white;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

.faq-item:not(.active) .toggle-btn {
  background: #e5e7eb;
  color: #333;
}

.faq-item .toggle-btn:hover {
  background: #1baf63;
  color: white;
}

.faq-answer {
  margin-top: 0.8rem;
  font-size: 0.95rem;
  color: #444;
  display: none;
  max-width: 90%;
}

.faq-item.active .faq-answer {
  display: block;
}

/* CTA Button */
.btn-view {
  background: #0b2f78;
  color: white;
  border: none;
  padding: 0.6rem 1.5rem;
  margin-top: 2rem;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.btn-view:hover {
  background: #09265f;
}

/* Divider */
.faq-divider {
  margin: 2rem auto 0;
  height: 2px;
  background-color: #ccc;
  border: none;
  /* width: 240px; */
}

/* Responsive */
@media (max-width: 768px) {
  .faq-question {
    font-size: 0.95rem;
    padding-right: 2.5rem;
  }

  .faq-answer {
    font-size: 0.9rem;
  }
}

.testimonial-section {
  background: #f8f9fc;
  padding: 4rem 1rem;
  text-align: center;
}

.testimonial-container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-heading {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.section-description {
  font-size: 1rem;
  color: #444;
  margin-bottom: 3rem;
}

.testimonial-carousel {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 1rem;
}

.testimonial-card {
  background: white;
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 0 10px rgba(0,0,0,0.06);
  scroll-snap-align: start;
  flex: 0 0 auto;
  width: 300px;
  text-align: left;
  position: relative;
}

.testimonial-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.user-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.user-info {
  flex: 1;
  margin-left: 0.75rem;
}

.user-name {
  font-size: 1rem;
  font-weight: 700;
  color: #0b2f78;
  margin: 0;
}

.user-subtitle {
  font-size: 0.875rem;
  color: #888;
  margin: 0;
}

.google-logo {
  width: 24px;
  height: 24px;
}

.stars {
  font-size: 1rem;
  color: #facc15;
  margin-bottom: 1rem;
}

.testimonial-text {
  font-size: 0.95rem;
  color: #333;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .testimonial-card {
    width: 80vw;
  }
}

.deals-section {
    background: url('../images/exclusive-deals.png') center center/cover no-repeat;
    padding: 4rem 1.5rem;
    color: #fff;
    text-align: center;
  }

  .deals-container {
    max-width: 1200px;
    margin: 0 auto;
  }

  .deals-heading {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
  }

  .deals-description {
    font-size: 1rem;
    margin-bottom: 3rem;
  }

  .deals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
  }

  .deal-box {
    background: white;
    border-radius: 10px;
    padding: 1.5rem;
    color: #000;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
  }

  .deal-box:hover {
    transform: translateY(-10px);
  }

  .deal-badge {
    background: #16a34a;
    color: #fff;
    font-size: 0.75rem;
    padding: 0.2rem 0.8rem;
    border-radius: 999px;
    display: inline-block;
    margin-bottom: 1rem;
    font-weight: 600;
  }

  .deal-box h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
  }

  .deal-box h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #0b2f78;
    margin-bottom: 0.7rem;
  }

  .deal-box p {
    font-size: 0.9rem;
    color: #444;
    margin-bottom: 1.2rem;
  }

  .deal-button {
    display: inline-block;
    padding: 0.6rem 1.4rem;
    border: 1px solid #ccc;
    border-radius: 6px;
    background: transparent;
    font-weight: 600;
    font-size: 0.9rem;
    color: #000;
    transition: all 0.3s ease;
    text-decoration: none;
  }

  .deal-button:hover {
    background: #0b2f78;
    color: white;
    border-color: #0b2f78;
  }

  .blue {
    background: #0b2f78;
    color: white;
    border-color: #0b2f78;
  }

  .blue:hover {
    opacity: 0.9;
  }



.support-tools-section {
  width: 100%;
  padding: 60px 20px 330px;
  background-color: #fff;
  text-align: center;
}

.section-heading {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #000;
}

.section-description {
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto 50px;
  color: #333;
  line-height: 1.6;
}

.feature-boxes {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.feature-card {
  flex: 1 1 300px;
  max-width: 350px;
  border: 1px solid #e5e5e5;
  border-radius: 10px;
  padding: 30px 20px;
  text-align: center;
  background-color: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.feature-icon {
  height: 50px;
  margin-bottom: 20px;
}

.feature-card h3 {
  font-size: 1.2rem;
  color: #003087;
  font-weight: 600;
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 20px;
}

.learn-button {
  padding: 10px 20px;
  border: 1px solid #000;
  border-radius: 6px;
  text-decoration: none;
  color: #000;
  transition: background-color 0.3s ease, color 0.3s ease;
  display: inline-block;
}

.learn-button:hover {
  background-color: #003087;
  color: #fff;
  border-color: #003087;
}


 .cta-footer-section {
 background: #fff;
    font-family: 'Arial', sans-serif;
    color: #fff;
    margin-top: 0;
    position: relative;
    z-index: 1;
  }

  /* CTA SECTION */
.cta-section {
    border-radius: 12px;
        background: linear-gradient(to right, #0f2c6e, #1f9c79);
    margin: 0 auto;
    max-width: 1200px;
    width: 100%;
    position: absolute;
    top: -120px;
    left: 50%;
    transform: translateX(-50%);
}

.cta-section .inner-cta-section{
      display: flex;
    flex-wrap: wrap;
    width: 100%;
    padding: 40px;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

.cta-section .inner-cta-section

  .cta-left {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
  }

  .cta-left h2 {
    font-size: 28px;
    margin-bottom: 10px;
  }

  .cta-left p {
    font-size: 15px;
    margin-bottom: 20px;
  }

  .cta-buttons a {
    display: inline-block;
    margin-right: 15px;
    background: #28c76f;
    padding: 10px 20px;
    color: white;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
  }

  .cta-buttons a:nth-child(2) {
    background: #1b6e99;
  }

.cta-section .inner-cta-section .cta-right {
    width: 420px;
    position: absolute;
    bottom: -4px;
    right: 68px;
}

  .cta-right img {
    max-width: 100%;
    height: auto;
  }

  /* FOOTER */
  .footer {
    background-color: #002060;
    color: #fff;
    padding: 200px 20px 40px;
  }

  .footer-columns {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: auto;
    gap: 20px;
  }

  .footer-col {
    flex: 1;
    min-width: 180px;
  }

  .footer-col h4 {
    margin-bottom: 15px;
    font-size: 16px;
  }

  .footer-col ul {
    list-style: none;
    padding: 0;
  }

  .footer-col ul li {
    margin-bottom: 8px;
  }

  .footer-col ul li a {
    color: #fff;
    text-decoration: none;
    transition: 0.2s;
  }

  .footer-col ul li a:hover {
    color: #28c76f;
  }

  .footer-providers {
    text-align: left;
    margin: 30px auto;
    max-width: 1200px;
  }

  .footer-providers p {
    margin: 5px 0;
  }

  .footer-providers a {
    color: #fff;
    text-decoration: none;
    margin: 0 5px;
  }

  .footer-providers a:hover {
    color: #28c76f;
  }

  .footer-bottom {
    border-top: 1px solid #336;
    margin-top: 30px;
    padding-top: 15px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    font-size: 14px;
  }

  .footer-links a {
    margin-left: 15px;
    color: #fff;
    text-decoration: none;
  }

  .footer-links a:hover {
    color: #28c76f;
  }

  /* RESPONSIVE */
  @media (max-width: 768px) {

.support-tools-section {
    padding: 40px 20px;
}

    .cta-section {
    flex-wrap: nowrap;
    border-radius: 0;
    max-width: 100%;
    width: 100%;
    padding: 20px;
    text-align: center;
    position: unset;
    transform: unset;
      flex-direction: column;
}

    .cta-right {
      text-align: center;
      margin-top: 20px;
      display: none;
    }

    .footer {
    padding: 40px 20px;
}

    .footer-columns {
      flex-direction: column;
      text-align: center;
    }

    .footer-bottom {
      flex-direction: column;
      text-align: center;
      gap: 10px;
    }

    .footer-links a {
      margin-left: 0;
      margin-right: 10px;
    }
  }

