/* ================================
   SATELLITE TV SOLUTIONS - NAVBAR CSS
   ================================ */

/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Lato', sans-serif;
  background-color: #ffffff;
  color: #222;
  line-height: 1.6;
}

/* ------------------------------
   BANNER SECTION
------------------------------ */
.banner {
  background: #00c6ff; /* Deep purple shade */
  color: #fff;
  text-align: center;
  padding: 10px 0;
  font-size: 15px;
}

.banner a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.banner a:hover {
  text-decoration: underline;
}

/* ------------------------------
   NAVBAR SECTION
------------------------------ */
.navbar {
  background: #f7f7fa;
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.navbar-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
 
  height: 35px;
}

/* Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  transition: all 0.3s ease;
}

.nav-links a {
  text-decoration: none;
  color: #333;
  font-weight: 600;
  font-size: 16px;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #00c6ff; /* Purple hover */
}

/* Call Button */
.navbar-button {
  background-color: #00c6ff;
  color: #fff !important;
  padding: 10px 18px;
  border-radius: 6px;
  transition: background 0.3s ease;
}

.navbar-button:hover {
  background-color: #101935;
}

/* Hamburger */
.menu-toggle {
  font-size: 26px;
  color: #00c6ff;
  cursor: pointer;
  display: none;
  user-select: none;
}

/* ------------------------------
   RESPONSIVENESS
------------------------------ */

/* Tablet */
@media (max-width: 992px) {
  .nav-links {
    gap: 18px;
  }

  .logo {
    width: 140px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 70px;
    right: 0;
    width: 100%;
    background: #fff;
    flex-direction: column;
    gap: 0;
    border-top: 1px solid #ddd;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.4s ease;
  }

  .nav-links a {
    display: block;
    padding: 14px 20px;
    border-bottom: 1px solid #eee;
  }

  .nav-links.show {
    max-height: 350px;
    box-shadow: 0 6px 10px rgba(0,0,0,0.1);
  }

  .navbar-button {
    display: block;
    margin: 10px 0;
    text-align: center;
  }
}

/* ============================
   HERO SECTION - SATELLITE TV SOLUTIONS
============================ */

.hero {
  background: linear-gradient(rgba(10, 25, 47, 0.85), rgba(10, 25, 47, 0.85)),
              url('images/hero-satellite-bg.jpg') center/cover no-repeat;
  color: #fff;
  padding: 80px 20px;
}

.hero-wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Left Side */
.hero-left {
  flex: 1;
  min-width: 300px;
}

.hero-left h1 {
  font-size: 2.6rem;
  font-weight: 900;
  line-height: 1.3;
  margin-bottom: 20px;
}

.hero-left .highlight {
  color: #00c6ff; /* golden orange accent */
}

.hero-left .italic-text {
  font-style: italic;
  color: #d6e4ff;
  font-weight: 400;
}

.hero-left .tagline {
  font-size: 1.1rem;
  color: #f0f4ff;
  margin-bottom: 25px;
}

.cta-button {
  display: inline-block;
  background-color: #00c6ff;
  color: #0a192f;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.cta-button:hover {
  background-color: #f89a1c;
  transform: translateY(-2px);
}

.deals-heading {
  font-size: 1.5rem;
  margin: 40px 0 15px;
  color: #00c6ff;
}

.features-list {
  list-style: none;
  padding: 0;
}

.features-list li {
  font-size: 1rem;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.features-list i {
  color: #00c6ff;
  font-size: 1.1rem;
}

/* Right Side - Form */
.hero-right {
  flex: 1;
  min-width: 320px;
}

.hero-form-wrapper {
  background-color: rgba(255, 255, 255, 0.95);
  color: #0a192f;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.form h3 {
  font-size: 1.6rem;
  margin-bottom: 10px;
  color: #0a192f;
}

.form p {
  font-size: 0.95rem;
  color: #333;
  margin-bottom: 20px;
}

.form label {
  display: block;
  font-weight: 700;
  margin: 10px 0 5px;
  color: #0a192f;
}

.form input[type="text"],
.form input[type="tel"],
.form input[type="email"] {
  width: 100%;
  padding: 10px 12px;
  border-radius: 6px;
  border: 1px solid #ccc;
  margin-bottom: 15px;
  font-size: 1rem;
  transition: border 0.3s ease;
}

.form input:focus {
  border-color: #00c6ff;
  outline: none;
}

.submit-button {
  background-color:#00c6ff;
  color: #fff;
  padding: 12px 24px;
  border: none;
  border-radius: 6px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.3s;
  width: 100%;
}

.submit-button:hover {
  background-color: #00c6ff;
  color: #0a192f;
}

/* ============================
   RESPONSIVE DESIGN
============================ */
@media (max-width: 992px) {
  .hero-wrapper {
    flex-direction: column;
    align-items: center;
  }

  .hero-left,
  .hero-right {
    width: 100%;
  }

  .hero-left h1 {
    font-size: 2.2rem;
    text-align: center;
  }

  .hero-left .tagline {
    text-align: center;
  }

  .features-list {
    padding-left: 10px;
  }

  .cta-button {
    display: block;
    margin: 0 auto 20px;
    text-align: center;
  }

  .hero-form-wrapper {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
  }
}

@media (max-width: 600px) {
  .hero-left h1 {
    font-size: 1.8rem;
  }

  .form input,
  .submit-button {
    font-size: 0.95rem;
  }

  .hero {
    padding: 60px 10px;
  }
}
/* Pricing Section */
.pricing-section {
  background: #101935;
  color: #fff;
  padding: 80px 20px;
  text-align: center;
  font-family: 'Inter', sans-serif;
}

.centered-heading {
  font-size: 2.2rem;
  font-weight: 700;
  color: #00c6ff;
  margin-bottom: 10px;
}

.centered-subtext {
  font-size: 1rem;
  color: #d0d0d0;
  margin-bottom: 50px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  max-width: 1200px;
  margin: 0 auto;
}

.pricing-card-three {
  background: #1a1f35;
  padding: 35px 25px;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 198, 255, 0.1);
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.pricing-card-three:hover {
  transform: translateY(-10px);
  border: 1px solid #00c6ff;
  box-shadow: 0 6px 25px rgba(0, 198, 255, 0.3);
}

.duration {
  font-size: 0.9rem;
  background: #00c6ff;
  color: #0b132b;
  display: inline-block;
  padding: 4px 10px;
  border-radius: 5px;
  margin-bottom: 15px;
  font-weight: 600;
}

.pricing-card-three h3 {
  font-size: 1.4rem;
  margin: 10px 0;
  color: #fff;
}

.price {
  font-size: 1.6rem;
  color: #00e6ff;
  font-weight: 700;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 20px 0;
  text-align: left;
}

.pricing-features li {
  margin-bottom: 10px;
  font-size: 0.95rem;
  color: #dcdcdc;
}

.pricing-features i {
  color: #00e6ff;
  margin-right: 8px;
}

.pricing-btn {
  display: inline-block;
  background: #00c6ff;
  color: #0b132b;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.pricing-btn:hover {
  background: #00e6ff;
}

.highlight {
  background: linear-gradient(145deg, #16213e, #0f3460);
  border: 1px solid #00e6ff;
  transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  .pricing-section {
    padding: 60px 15px;
  }
  .pricing-card-three {
    padding: 25px 20px;
  }
}
/* Quality Section */
.quality-section {
  background: #101935; /* Deep navy tone */
  color: #fff;
  padding: 80px 20px;
  font-family: 'Inter', sans-serif;
}

.quality-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 50px;
  flex-wrap: wrap;
}

.quality-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 15px;
  box-shadow: 0 6px 20px rgba(0, 198, 255, 0.2);
  transition: transform 0.4s ease;
}

.quality-image img:hover {
  transform: scale(1.05);
}

.quality-content {
  flex: 1;
  min-width: 300px;
}

.quality-content h2 {
  font-size: 2rem;
  color: #00e6ff;
  margin-bottom: 15px;
}

.quality-subtext {
  color: #d4d4d4;
  font-size: 1rem;
  margin-bottom: 30px;
}

.quality-feature {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 25px;
}

.quality-feature i {
  font-size: 1.6rem;
  color: #00c6ff;
  flex-shrink: 0;
  margin-top: 5px;
}

.quality-feature h3 {
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 5px;
}

.quality-feature p {
  color: #bfc7d4;
  font-size: 0.95rem;
  line-height: 1.5;
}

.quality-btn {
  display: inline-block;
  background: #00c6ff;
  color: #0b132b;
  padding: 12px 25px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
  margin-top: 10px;
}

.quality-btn:hover {
  background: #00e6ff;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .quality-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .quality-image img {
    max-width: 90%;
  }

  .quality-feature {
    justify-content: center;
    text-align: left;
  }
}

@media (max-width: 600px) {
  .quality-section {
    padding: 60px 15px;
  }

  .quality-content h2 {
    font-size: 1.7rem;
  }

  .quality-feature {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
/* Why Choose Section */
.why-choose-section {
  background: #f4f7fa;
  color: #1a1a1a;
  padding: 80px 20px;
  font-family: 'Inter', sans-serif;
  text-align: center;
}

.section-heading {
  font-size: 2.2rem;
  color: #00c6ff;
  margin-bottom: 10px;
}

.section-subtext {
  font-size: 1rem;
  color: #555;
  margin-bottom: 50px;
}

.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.why-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 30px 20px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.why-card i {
  font-size: 2rem;
  color: #00c6ff;
  margin-bottom: 15px;
}

.why-card h3 {
  font-size: 1.1rem;
  color: #111;
  margin-bottom: 10px;
}

.why-card p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.5;
}

/* Responsive */
@media (max-width: 768px) {
  .why-choose-section {
    padding: 60px 15px;
  }

  .section-heading {
    font-size: 1.8rem;
  }
}
/* Value Section */
.value-section {
  background: #fff;
  padding: 80px 20px;
  font-family: 'Inter', sans-serif;
}

.value-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.value-text {
  flex: 1 1 450px;
}

.value-text h2 {
  font-size: 2rem;
  color: #00c6ff;
  margin-bottom: 20px;
}

.value-text p {
  font-size: 1rem;
  color: #333;
  margin-bottom: 25px;
  line-height: 1.6;
}

.value-btn {
  background: #00c6ff;
  color: #fff;
  padding: 12px 25px;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 0.3s ease;
}

.value-btn:hover {
  background: #005fa3;
}

.value-image {
  flex: 1 1 400px;
  text-align: center;
}

.value-image img {
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

/* Responsive */
@media (max-width: 768px) {
  .value-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .value-text h2 {
    font-size: 1.7rem;
  }
}
/* Features Section */
.features-section {
  background: #fff;
  padding: 80px 20px;
  font-family: 'Lato', sans-serif;
}

.features-header {
  text-align: center;
  margin-bottom: 50px;
}

.features-header h2 {
  font-size: 2rem;
  color: #00c6ff;
  margin-bottom: 10px;
}

.features-header p {
  font-size: 1rem;
  color: #444;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.feature-card {
  background: #ffffff;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}

.feature-icon {
  font-size: 40px;
  color: #00c6ff;
  margin-bottom: 15px;
}

.feature-card h3 {
  font-size: 1.3rem;
  color: #00c6ff;
  margin-bottom: 12px;
}

.feature-card p {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 20px;
  line-height: 1.5;
}

.feature-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #00c6ff;
  color: #fff;
  padding: 10px 20px;
  border-radius: 10px;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.3s ease;
}

.feature-btn:hover {
  background: #0066b3;
}

/* Responsive */
@media (max-width: 768px) {
  .features-header h2 {
    font-size: 1.7rem;
  }
}

/* Testimonials Section */
.testimonials-section {
  background: #101935;
  padding: 80px 20px;
  font-family: 'Lato', sans-serif;
}

.testimonial-heading {
  text-align: center;
  font-size: 2rem;
  color: #00c6ff;
  margin-bottom: 50px;
}

.testimonial-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.testimonial-card {
  background: #ffffff;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}

.testimonial-text {
  font-size: 1rem;
  color: #333;
  margin-bottom: 20px;
  line-height: 1.5;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.testimonial-icon {
  font-size: 50px;
  color: #00c6ff;
}

.testimonial-author h4 {
  font-size: 1rem;
  margin: 0;
  color: #00c6ff;
}

.testimonial-author span {
  font-size: 0.85rem;
  color: #666;
}

.stars {
  color: #ffb400;
  margin-top: 5px;
}

/* Responsive */
@media (max-width: 768px) {
  .testimonial-heading {
    font-size: 1.7rem;
  }
}
/* Footer & Disclaimer Section */
.disclaimer-section {
  background: #f3f8ff;
  padding: 60px 20px;
  text-align: center;
}

.disclaimer-heading {
  font-size: 1.8rem;
  color: #00c6ff;
  margin-bottom: 20px;
  font-weight: 700;
}

.disclaimer-text {
  font-size: 1rem;
  color: #333;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
}

.site-footer {
  background: #101935;
  color: #ffffff;
  text-align: center;
  padding: 40px 20px 20px;
}

.site-footer a {
  color: #00c6ff;
  text-decoration: none;
  margin: 0 8px;
  font-weight: 500;
}

.site-footer a:hover {
  text-decoration: underline;
}

.footer-disclaimer {
  font-size: 0.85rem;
  color: #d1d1d1;
  margin-top: 15px;
  line-height: 1.5;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.small-text a {
  color: #00c6ff;
  text-decoration: underline;
}

/* Fixed Call Button */
.call-now-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #00c6ff;
  color: #fff;
  padding: 14px 20px;
  border-radius: 50px;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.2);
  z-index: 1000;
  transition: transform 0.3s ease, background 0.3s ease;
}

.call-now-btn:hover {
  background: #00c6ff;
  transform: scale(1.05);
}

/* Responsive */
@media (max-width: 768px) {
  .disclaimer-heading {
    font-size: 1.5rem;
  }

  .call-now-btn {
    padding: 12px 16px;
    font-size: 0.95rem;
  }
}
/* ================================
   CONTACT SECTION STYLES
================================ */
.contact-section {
  background: #f7faff;
  padding: 80px 20px;
  font-family: "Lato", sans-serif;
}

.contact-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
  padding: 50px;
}

/* Contact Info */
.contact-info {
  flex: 1 1 45%;
}

.contact-info h2 {
  font-size: 2rem;
  color: #002b5b;
  margin-bottom: 20px;
  font-weight: 800;
}

.contact-info p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 25px;
  line-height: 1.7;
}

.contact-info ul {
  list-style: none;
  padding: 0;
}

.contact-info ul li {
  font-size: 1rem;
  color: #222;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}

.contact-info ul li i {
  color: #00c6ff;
  margin-right: 12px;
  font-size: 1.2rem;
}

/* Contact Form */
.contact-form {
  flex: 1 1 45%;
}

.contact-form h2 {
  font-size: 2rem;
  color: #002b5b;
  margin-bottom: 20px;
  font-weight: 800;
}

.contact-form form {
  display: flex;
  flex-direction: column;
}

.form-group {
  margin-bottom: 18px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #d0d8e3;
  border-radius: 6px;
  font-size: 1rem;
  color: #333;
  background: #fdfdfd;
  transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #00c6ff;
  box-shadow: 0 0 5px rgba(255, 102, 0, 0.3);
  outline: none;
}

.contact-btn {
  background: #00c6ff;
  color: #fff;
  border: none;
  padding: 14px 18px;
  font-size: 1rem;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 600;
}

.contact-btn:hover {
  background: #e45a00;
  transform: translateY(-2px);
}

/* Map Section */
.contact-map iframe {
  width: 100%;
  height: 450px;
  margin-top: 50px;
  border: none;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* ================================
   RESPONSIVE DESIGN
================================ */
@media (max-width: 992px) {
  .contact-wrapper {
    flex-direction: column;
    padding: 40px 30px;
  }

  .contact-info,
  .contact-form {
    flex: 1 1 100%;
  }

  .contact-info h2,
  .contact-form h2 {
    font-size: 1.8rem;
  }
}

@media (max-width: 600px) {
  .contact-section {
    padding: 60px 15px;
  }

  .contact-wrapper {
    padding: 30px 20px;
  }

  .contact-info p {
    font-size: 0.95rem;
  }

  .contact-btn {
    width: 100%;
  }
}
/* ================================
   PRIVACY POLICY PAGE STYLES
================================ */
.pv {
  background: #f7faff;
  padding: 80px 20px;
  font-family: "Lato", sans-serif;
}

.pv h1 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #002b5b;
  margin-bottom: 25px;
  text-align: center;
}

.pv h4 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #002b5b;
  margin-top: 30px;
  margin-bottom: 15px;
}

.pv p.body-display {
  font-size: 1rem;
  color: #333333;
  line-height: 1.8;
  margin-bottom: 15px;
}

.pv ul {
  list-style: disc inside;
  margin-bottom: 20px;
  padding-left: 20px;
}

.pv ul li {
  margin-bottom: 10px;
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}

/* Links inside privacy */
.pv a {
  color: #00c6ff;
  text-decoration: none;
  transition: all 0.3s ease;
}

.pv a:hover {
  text-decoration: underline;
}

/* Container styling */
.w-layout-blockcontainer.w-container2 {
  max-width: 900px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 12px;
  padding: 50px 40px;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
}

/* Rich text wrapper */
.w-richtext {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* Paragraph spacing inside lists */
.w-richtext ul li p {
  margin: 0;
}

/* ================================
   RESPONSIVE DESIGN
================================ */
@media (max-width: 992px) {
  .pv {
    padding: 60px 15px;
  }
  .w-layout-blockcontainer.w-container2 {
    padding: 40px 25px;
  }
  .pv h1 {
    font-size: 2rem;
  }
  .pv h4 {
    font-size: 1.15rem;
  }
  .pv p.body-display,
  .pv ul li {
    font-size: 0.95rem;
  }
}

@media (max-width: 600px) {
  .pv {
    padding: 40px 10px;
  }
  .w-layout-blockcontainer.w-container2 {
    padding: 30px 15px;
  }
  .pv h1 {
    font-size: 1.8rem;
  }
  .pv h4 {
    font-size: 1.05rem;
  }
  .pv p.body-display,
  .pv ul li {
    font-size: 0.9rem;
  }
}
