* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
  text-decoration: none;
}

.csra-header {
  width: 100%;
  padding: 16px 180px;
}
.csra-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #ffffff;
}

.csra-nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #ffffff;
}

.csra-logo img{
  height: 80px;
  width: 130px;
}

.csra-right-group {
  display: flex;
  align-items: center;
  gap: 28px;
}

.csra-nav-links {
  display: flex;
  gap: 28px;
}

.csra-nav-links a {
  text-decoration: none;
  color: #595959;
  font-weight: 500;
}

.csra-nav-links a:hover {
  color: #222;
}

.csra-call-btn {
  background: #c4161c;
  color: #fff;
  padding: 12px 25px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
}

.csra-call-btn:hover {
  background: #cc4246;
}
.csra-call-btn img {
  padding-right: 5px;
}

.csra-menu-toggle {
  display: none;
  font-size: 26px;
  cursor: pointer;
}

/* ---------- Mobile Menu ---------- */
.csra-btn,
.csra-btn:hover,
.csra-btn:focus,
.csra-btn:active {
  text-decoration: none !important;
  color: #fff;
}


.csra-mobile-menu {
  position: fixed;
  top: 0;
  left: -100%;
  width: 100%;
  background: #fff;
  padding: 24px;
  transition: 0.3s ease;
  z-index: 999;
}

.csra-mobile-menu.active {
  left: 0;
}

.csra-mobile-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.csra-mobile-header h3 {
  font-size: 20px;
  font-weight: 700;
}

.csra-mobile-header small {
  color: #777;
}

.csra-mobile-header button {
  font-size: 24px;
  background: none;
  border: none;
  cursor: pointer;
}

.csra-mobile-menu ul {
  list-style: none;
  margin-bottom: 30px;
}

.csra-mobile-menu ul li {
  margin-bottom: 20px;
}

.csra-mobile-menu ul a {
  text-decoration: none;
  font-size: 18px;
  color: #222;
  font-weight: 500;
}

.csra-mobile-call {
  display: block;
  background: #c4161c;
  color: #fff;
  padding: 16px;
  text-align: center;
  border-radius: 12px;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
}

.csra-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  width: 100%;
  padding: 16px;

  background: linear-gradient(135deg, #c4161c, #ff2a2a);
  color: #fff;

  border-radius: 12px;
  text-decoration: none;

  font-size: 17px;
  font-weight: 600;

  box-shadow: 0 10px 25px rgba(255,0,0,0.4);
  border: 2px solid rgba(255,255,255,0.15);

  transition: 0.3s ease;
}

/* ICON */
.csra-btn i {
  font-size: 18px;
}

/* HOVER */
.csra-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 35px rgba(255,0,0,0.6);
}

/* CLICK EFFECT */
.csra-btn:active {
  transform: scale(0.98);
}

/* ---------- Responsive ---------- */

@media (max-width: 768px) {
  .csra-nav-links,
  .csra-call-btn {
    display: none;
  }
  .csra-logo img{
    height: 50px;
    width: 90px;
  }
  .csra-header {
    padding: 16px 30px;
  }

  .csra-menu-toggle {
    display: block;
    font-size: 26px;
    cursor: pointer;
  }
}







.csra-call-box:hover,
.csra-call-box:focus,
.csra-call-box:active,
.csra-book-box:hover,
.csra-book-box:focus,
.csra-book-box:active {
  text-decoration: none !important;
}




.csra-hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background: url("background.webp") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  color: #fff;
}

.csra-hero-content {
  position: relative;
  max-width: 900px;
  text-align: center;
  z-index: 2;
}

/* Badge */
.csra-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 0, 0, 0.15);
  padding: 10px 18px;
  border-radius: 30px;
  font-size: 14px;
  margin-bottom: 28px;
}

.csra-dot {
  width: 8px;
  height: 8px;
  background: #e50914;
  border-radius: 50%;
}

/* Title */
.csra-title {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
}

.csra-title span {
  color: #e50914;
}

/* Description */
.csra-desc {
  font-size: 18px;
  color: #ddd;
  max-width: 700px;
  margin: 0 auto 35px;
  line-height: 1.2;
}

/* Buttons */
.csra-hero-buttons {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 35px;
  text-decoration: none;
}



/* Features */
.csra-features {
  display: flex;
  gap: 25px;
  justify-content: center;
  flex-wrap: wrap;
  font-size: 15px;
  color: #cfcfcf;
}

.csra-call-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;

  background: linear-gradient(180deg, #ff2a2a, #c40000);
  color: #fff;

  padding: 22px 25px;
  border-radius: 18px;

  text-decoration: none;
  margin: 30px 0;

  border: 3px solid #ff4d4d;
  box-shadow: 
    0 0 0 3px rgba(255,255,255,0.15),
    0 15px 40px rgba(255,0,0,0.6);

  position: relative;
  overflow: hidden;

  animation: zoomPulse 1.8s infinite ease-in-out;
}

/* LEFT ICON */
.call-left {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 2px solid #fff;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 22px;
}

/* CENTER TEXT */
.call-center {
  flex: 1;
  text-align: center;
}

.call-center strong {
  font-size: 22px;
  display: block;
}

.call-center span {
  font-size: 13px;
  opacity: 0.9;
}

/* RIGHT ARROW */
.call-right {
  font-size: 18px;
}


.csra-book-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;

  background: #f5f5f5;
  color: #111;

  padding: 22px 25px;
  border-radius: 18px;

  text-decoration: none;
  border: 2px solid #ff2a2a;

  box-shadow: 0 8px 25px rgba(0,0,0,0.25);

  margin-bottom: 30px;
}

/* LEFT ICON */
.book-left {
  font-size: 26px;
  color: #ff2a2a;
}

/* CENTER TEXT */
.book-center {
  flex: 1;
  text-align: center;
}

.book-center strong {
  display: block;
  font-size: 22px;
  font-weight: 700;
}

.book-center span {
  display: block;
  font-size: 13px;
  color: #555;
  margin-top: 5px;
  text-align: center;
}

/* RIGHT ARROW */
.book-right {
  font-size: 18px;
  color: #ff2a2a;
}


.csra-features {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;

  gap: 40px;
  color: #fff;
}

.feature-item {
  position: relative;
  padding: 0 20px;
}

.feature-item i {
  font-size: 28px;
  color: #ff2a2a;
  margin-bottom: 8px;
}

.feature-item p {
  font-size: 14px;
  line-height: 1.4;
}

/* vertical divider */
.feature-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -20px;
  top: 10%;
  height: 80%;
  width: 1px;
  background: rgba(255,255,255,0.2);
}





/* Arrow */
.arrow {
  font-size: 18px;
  opacity: 0.8;
}



@media (max-width:768px){

  .csra-book-box {
    padding: 18px;
  }

  .book-center strong {
    font-size: 16px;
  }

  .csra-features {
    gap: 20px;
  }

  .feature-item i {
    font-size: 22px;
  }

  .feature-item p {
    font-size: 12px;
    text-align: center;
  }

}

/* MOBILE PERFECT */
@media (max-width:768px){
  .csra-call-box,
  .csra-book-box {
    padding: 15px;
    text-align: center;

  }

  .call-left {
    width: 50px;
    height: 50px;
  }

  .call-center strong {
    font-size: 16px;
    text-align: center;
  }

  .csra-book-box strong {
    font-size: 16px;
  }
}





.csra-call-box,
.csra-book-box {
  animation: syncZoom 1.0s ease-in-out infinite;
  animation-delay: 0s;
  transform-origin: center;
}

@keyframes syncZoom {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.035);
  }
  100% {
    transform: scale(1);
  }
}






.appliance-section {
  background: #f7f4ed;
  padding: 90px 20px;
}

.appliance-container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
  text-decoration: none;
}
.appliance-container .appliance-btn{
  text-decoration: none;
}

/* Heading */
.appliance-title {
  font-size: 35px;
  font-weight: 800;
  margin-bottom: 10px;
  color: #000;
}

.appliance-subtitle {
  font-size: 18px;
  color: #4b5563;
  margin-bottom: 60px;
}

/* Grid */
.appliance-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 60px;
}

.appliance-grid a{
  text-decoration: none;
}

/* Card */
.appliance-card {
  background: #fff;
  border-radius: 14px;
  padding: 30px;
  text-align: left;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  border: 1px solid #e5e7eb;
  text-decoration: none;
}

.appliance-card.active {
  border-color: #f2caca;
  box-shadow: 0 10px 28px rgba(196, 22, 28, 0.15);
  text-decoration: none;
}
.appliance-card.active a{
  text-decoration: none;
}

/* Icon */
.appliance-icon {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c4161c;
  font-size: 26px;
  margin-bottom: 18px;
  text-decoration: none;
}
.appliance-icon img{
  width: 40px;
  height: 40px;
}

/* Text */
.appliance-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #000;
  text-decoration: none;
}

.appliance-card p {
  font-size: 16px;
  line-height: 1.6;
  color: #4b5563;
}


/* Button */
.appliance-btn {
  display: inline-block;
  background: #c4161c;
  color: #fff;
  padding: 16px 30px;
  border-radius: 12px;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
}
.appliance-btn img {
  padding-right: 10px;
}

.appliance-btn:hover {
  background: #d92c30;
  text-decoration: none;
}

/* ---------- Responsive ---------- */
@media (max-width: 992px) {
  .appliance-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .appliance-section {
    padding: 50px 20px;
  }
  .appliance-title {
    font-size: 29px;
  }

  .appliance-subtitle {
    font-size: 16px;
  }

  .appliance-grid {
    grid-template-columns: 1fr;
  }

  .appliance-card {
    padding: 24px;
  }
}



.appliance-grid a {
  text-decoration: none !important;

}

/* Section background */
.why-csra {
  background: radial-gradient(circle at top, #1a1a1a, #0b0b0b);
  padding: 100px 20px;
  color: #fff;
}

.why-container {
  max-width: 1200px;
  margin: auto;
}

/* Heading */
.why-title {
  text-align: center;
  font-size: 35px;
  font-weight: 700;
  margin-bottom: 12px;
}

.why-subtitle {
  text-align: center;
  font-size: 15px;
  color: #cfcfcf;
  max-width: 750px;
  margin: 0 auto 70px;
}

/* Grid */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px 80px;
}

/* Item */
.why-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

/* Icon box */
.why-icon-box {
  min-width: 52px;
  height: 52px;
  background: #1a0c0e; /* dark red background */
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c42533; /* exact icon red */
  font-size: 24px;
}

/* Text */
.why-text h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}

.why-text p {
  font-size: 16px;
  color: #d1d5db;
  line-height: 1.6;
}

/* -------- Responsive -------- */
@media (max-width: 900px) {
  .why-csra {
    padding: 50px 20px;
  }
  .why-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .why-title {
    font-size: 34px;
  }

  .why-subtitle {
    font-size: 16px;
  }
}

.service-area {
  background: #f3eee6;
  padding: 100px 20px;
}

.service-area-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 50px;
  align-items: center;
}

/* Left */
.service-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #c4161c;
  font-weight: 600;
  margin-bottom: 16px;
}

.service-left h2 {
  font-size: 35px;
  font-weight: 700;
  color: #000;
  margin-bottom: 18px;
}

.service-left p {
  font-size: 18px;
  color: #6d6e73;
  line-height: 1.7;
  margin-bottom: 30px;
}

/* Cities */
.city-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 18px;
}

.city {
  background: #fff;
  padding: 10px 18px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 14px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  color: #221417;
}

/* Hidden cities */
.city.extra {
  display: none;
}

/* Button */
.more-btn {
  background: #f0dada;
  color: #c4161c;
  border: none;
  padding: 12px 20px;
  border-radius: 30px;
  font-weight: 700;
  cursor: pointer;
}

/* Map */
.service-right {
  background: #fff;
  padding: 16px;
  border-radius: 20px;
}

.service-right iframe {
  width: 100%;
  height: 360px;
  border: none;
  border-radius: 14px;
}

/* -------- Responsive -------- */
@media (max-width: 900px) {
  .service-area {
    padding: 50px 20px;
  }
  .service-area-container {
    grid-template-columns: 1fr;
  }

  .service-left h2 {
    font-size: 32px;
  }

  .service-left p {
    font-size: 16px;
  }

  .service-right iframe {
    height: 300px;
  }
}

.cta-section {
  position: relative;
  width: 100%;
  padding: 120px 20px;
  text-align: center;
  overflow: hidden;
  color: #fff;
  background: url(background-1.webp);
}

/* Content */
.cta-content {
  position: relative;
  max-width: 900px;
  margin: auto;
  z-index: 3;
}

/* Heading */
.cta-content h2 {
  font-size: 43px;
  font-weight: 800;
  margin-bottom: 18px;
  color: #ffffff;
}

/* Description */
.cta-desc {
  font-size: 20px;
  line-height: 1.6;
  margin-bottom: 40px;
  color: #f3f4f6;
}

/* Button */
.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: #ffffff;
  color: #000;
  padding: 18px 30px;
  border-radius: 14px;
  font-size: 20px;
  font-weight: 700;
  text-decoration: none;
  margin-bottom: 18px;
}

.cta-icon {
  font-size: 22px;
}

.cta-arrow {
  font-size: 22px;
}

/* Note */
.cta-note {
  display: block;
  font-size: 14px;
  color: #f1f1f1;
}

.cta-section .cta-btn {
  text-decoration: none;
}

/* -------- Responsive -------- */
@media (max-width: 768px) {
  .cta-section {
    padding: 90px 20px;
  }

  .cta-content h2 {
    font-size: 32px;
  }

  .cta-desc {
    font-size: 16px;
  }

  .cta-btn {
    width: 100%;
    justify-content: center;
    font-size: 18px;
  }
}

.csra-footer {
  background: linear-gradient(180deg, #0f0f0f, #050505);
  color: #e5e7eb;
  padding: 80px 20px 30px;
  font-family: inherit;
}

.csra-footer-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
}

/* Columns */
.footer-col h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #ffffff;
}

.footer-col p {
  font-size: 16px;
  line-height: 1.6;
  color: #cbd5e1;
  margin-bottom: 12px;
}
.footer-col img {
  margin-right: 5px;
}
.footer-col a{
  color: #cbd5e1;
  text-decoration: none;
  line-height: 1.5;
}

/* Phone */
.footer-phone {
  display: inline-block;
  margin-top: 12px;
  font-size: 18px;
  font-weight: 700;
  color: #c4161c;
  text-decoration: none;
}

/* Muted text */
.footer-muted {
  color: #9ca3af;
  font-size: 15px;
}

/* Divider */
.footer-divider {
  max-width: 1200px;
  margin: 50px auto 20px;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
}

/* Bottom */
.footer-bottom {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 14px;
  color: #9ca3af;
}

.footer-col .social-media a img {
  margin-top: 10px;
}

/* -------- Responsive -------- */
@media (max-width: 900px) {
  .csra-footer-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

.about-csra {
  background: #ffffff;
  padding: 100px 20px;
}

.about-container {
  max-width: 900px;
  margin: auto;
  text-align: center;
}

/* Badge */
.about-badge {
  display: inline-block;
  background: rgba(186, 18, 31, 0.1);
  color: #ba121f;
  padding: 8px 18px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 18px;
}

/* Title */
.about-title {
  font-size: 42px;
  font-weight: 800;
  color: #111111;
  margin-bottom: 22px;
  line-height: 1.2;
}

/* Description */
.about-desc {
  font-size: 18px;
  color: #111010;
  line-height: 1.7;
  margin-bottom: 30px;
}

/* Services list */
.about-services {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 28px;
  margin-bottom: 30px;
}

.about-services span {
  font-weight: 600;
  color: #080606;
  font-size: 15px;
}

/* Note */
.about-note {
  font-size: 16px;
  color: #171414;
  max-width: 750px;
  margin: auto;
}

/* -------- Responsive -------- */
@media (max-width: 768px) {
  .about-title {
    font-size: 32px;
  }
  .about-csra {
    padding-top: 40px;
    padding-bottom: 10px;
  }

  .about-desc {
    font-size: 16px;
  }

  .about-services span {
    font-size: 14px;
  }
}

.policy-wrapper {
  max-width: 920px;
  margin: 50px auto;
  background: #ffffff;
  padding: 45px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.policy-title {
  color: #b30000;
  margin-bottom: 8px;
}

.policy-date {
  font-size: 14px;
  color: #666;
  margin-bottom: 25px;
}

.company-box {
  background: #f2f2f2;
  padding: 18px;
  border-left: 5px solid #b30000;
  margin-bottom: 30px;
}

.policy-section {
  margin-top: 35px;
}

.policy-section h2 {
  color: #222;
  margin-bottom: 10px;
}

.policy-text {
  margin: 10px 0;
}

.policy-list {
  margin: 10px 0 10px 22px;
}

.policy-list li {
  margin-bottom: 6px;
}

.contact-block {
  margin-top: 15px;
}

.policy-footer {
  margin-top: 45px;
  font-size: 14px;
  color: #666;
  text-align: center;
}

a {
  color: #b30000;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}








.apx-service-wrap {
  padding: 60px 16px;
  background-color: #ffffff;
  font-family: "Segoe UI", Arial, sans-serif;
}

.apx-inner-box {
  max-width: 1100px;
  margin: auto;
  text-align: center;
}

.apx-main-title {
  font-size: 34px;
  color: #222;
  margin-bottom: 8px;
}

.apx-sub-text {
  font-size: 16px;
  color: #666;
  margin-bottom: 36px;
}

.apx-card-grid {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.apx-card-item {
  width: 300px;
  padding: 22px;
  border-radius: 8px;
  background: #f8f8f8;
  border: 1px solid #e0e0e0;
  transition: all 0.25s ease;
}

.apx-card-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.12);
}

.apx-card-item h3 {
  font-size: 20px;
  color: #111;
  margin-bottom: 10px;
}

.apx-card-item p {
  font-size: 14px;
  color: #555;
}

.apx-call-btn {
  display: inline-block;
  padding: 14px 34px;
  background-color: #bf0d0d;
  color: #ffffff;
  font-size: 18px;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.2s ease;
}

.apx-call-btn:hover {
  background-color: #bf0d0d;
}








.tcx-policy-wrap {
  padding: 70px 18px;
  background-color: #ffffff;
  font-family: "Segoe UI", Arial, sans-serif;
}

.tcx-policy-box {
  max-width: 900px;
  margin: auto;
}

.tcx-title {
  font-size: 36px;
  color: #222;
  text-align: center;
  margin-bottom: 6px;
}

.tcx-updated {
  text-align: center;
  font-size: 14px;
  color: #888;
  margin-bottom: 40px;
}

.tcx-content h2 {
  font-size: 22px;
  color: #1a1a1a;
  margin-top: 30px;
  margin-bottom: 10px;
}

.tcx-content p {
  font-size: 15px;
  color: #555;
  line-height: 1.8;
}

/* Mobile Responsive */
@media (max-width: 600px) {
  .tcx-title {
    font-size: 28px;
  }

  .tcx-content h2 {
    font-size: 20px;
  }

  .tcx-content p {
    font-size: 14px;
  }
}







.slider-section {
  padding: 10px 0;
  background: #fff7f7;
}

.slider-container {
  width: 100%;
  max-width: 1200px;
  margin: auto;
  overflow: hidden;
  position: relative;
}

.slider {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.slide {
  min-width: 100%;
  flex-shrink: 0;
}

.slide img {
  width: 100%;
  height: 50vh;
  display: block;
  object-fit: cover;
}

/* Arrows */
.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.6);
  color: #fff;
  border: none;
  font-size: 24px;
  padding: 10px 14px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 5;
}

.prev { left: 10px; }
.next { right: 10px; }

@media (max-width: 768px) {
  .arrow {
    font-size: 20px;
    padding: 8px 12px;
  }
}














.sms-terms {
  padding: 60px 20px;
  background: #f7f7f7;
  font-family: Arial, sans-serif;
}

.sms-terms .container {
  max-width: 900px;
  margin: auto;
  background: #ffffff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.08);
}

.sms-terms h2 {
  text-align: center;
  margin-bottom: 20px;
  color: #222;
}

.sms-terms h3 {
  margin-top: 25px;
  color: #333;
}

.sms-terms p {
  line-height: 1.7;
  color: #555;
}

.sms-terms ul {
  margin-left: 20px;
  line-height: 1.8;
}

.sms-terms a {
  color: #007bff;
  text-decoration: none;
}

.sms-terms a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
  .sms-terms {
    padding: 40px 15px;
  }

  .sms-terms .container {
    padding: 20px;
  }
}





















.privacy-policy {
  padding: 60px 20px;
  background: #f4f6f8;
  font-family: Arial, sans-serif;
}

.privacy-policy .container {
  max-width: 900px;
  margin: auto;
  background: #fff;
  padding: 35px;
  border-radius: 8px;
  box-shadow: 0 0 12px rgba(0,0,0,0.08);
}

.privacy-policy h1 {
  text-align: center;
  margin-bottom: 25px;
  color: #222;
}

.privacy-policy h2 {
  margin-top: 25px;
  color: #333;
}

.privacy-policy p {
  line-height: 1.7;
  color: #555;
}

.privacy-policy ul {
  margin-left: 20px;
  line-height: 1.8;
}

.privacy-policy a {
  color: #007bff;
  text-decoration: none;
}

.privacy-policy a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
  .privacy-policy {
    padding: 40px 15px;
  }

  .privacy-policy .container {
    padding: 20px;
  }
}




















/* ===== RED BRAND THEME ===== */



.container{
width:90%;
max-width:1100px;
margin:auto;
}

/* HERO */
.red-hero{
background:#221417;
color:#ffffff;
text-align:center;
padding:80px 20px;
}

.red-hero h1{
font-size:38px;
margin-bottom:10px;
}

.tagline{
font-size:20px;
color:#ffffff;
margin-bottom:20px;
}

/* BUTTON */
.btn-call{
display:inline-block;
background:#b30000;
color:#ffffff;
padding:14px 18px;
border-radius:6px;
text-decoration:none;
font-weight:bold;
margin-top:20px;
transition:0.3s;
}

.btn-call:hover{
background:#8f0000;
text-decoration: none;
}

.btn-call.big{
font-size:18px;
padding:16px 32px;
}

/* CARDS */
.card{
background:#ffffff;
padding:30px;
margin-top:40px;
border-radius:10px;
box-shadow:0 3px 12px rgba(0,0,0,0.08);
}

.dark-card{
background:#221417;
color:#ffffff;
}

h2{
color:#b30000;
}

.dark-card h2{
color:#ffffff;
}

/* GRID */
.grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:15px;
margin-top:15px;
}

/* AREAS */
.areas{
display:flex;
flex-wrap:wrap;
gap:10px;
margin-top:11px;
}

.areas span{
background:#b30000;
color:#ffffff;
padding:8px 14px;
border-radius:20px;
font-size:14px;
}

/* CTA */
.cta{
background:#221417;
color:#ffffff;
text-align:center;
padding:60px 20px;
border-radius:10px;
margin: 10px 0;
}
.card ul li {
  margin-top: 10px;
}

.cta h2{
color:#ffffff;
}

.small{
font-size:14px;
margin-top:10px;
}

/* HERO GRID WITH IMAGE */
.hero-grid{
display:grid;
grid-template-columns:1fr 1fr;
align-items:center;
gap:40px;
}

.hero-image img{
width:100%;
border-radius:10px;
box-shadow:0 6px 18px rgba(0,0,0,0.25);
}

/* SERVICE IMAGE */
.service-image{
margin-top:20px;
text-align:center;
}
.hero-image img{
  width:100%;
max-width:500px;
margin-top: 10px;
}

.service-image img{
width:100%;
max-width:500px;
border-radius:10px;
box-shadow:0 4px 14px rgba(0,0,0,0.15);
}

/* MOBILE RESPONSIVE */
@media(max-width:768px){

.hero-grid{
grid-template-columns:1fr;
text-align:center;
}

.hero-image{
margin-top:20px;
}

}

/* MOBILE */
@media(max-width:768px){

.red-hero h1{
font-size:22px;

}
.tagline{
  font-size: 13px;
  color: #f1f1f1;
}
.red-hero p{
  color: #f1f1f1;
  font-size: 12px;
  line-height: 1.3;
}

.btn-call{
width:100%;
display:block;

}

.card{
padding:20px;
}

}



















/* ============================= */
/* REFRIGERATOR SECTION STYLES */
/* ============================= */

.fridge-hero{
background:#221417;
color:#fff;
padding:80px 20px;
}

.fridge-hero-grid{
display:grid;
grid-template-columns:1fr 1fr;
align-items:center;
gap:40px;
}

.fridge-text h1{
font-size:34px;
margin-bottom:10px;
}

.fridge-tagline{
font-size:20px;
margin-bottom:20px;
}

.fridge-image img{
width:100%;
border-radius:10px;
box-shadow:0 6px 18px rgba(0,0,0,0.25);
}

/* BUTTON */
.fridge-btn{
display:inline-block;
background:#b30000;
color:#fff;
padding:14px 28px;
border-radius:6px;
text-decoration:none;
font-weight:600;
margin-top:20px;
transition:0.3s;
}

.fridge-btn:hover{
background:#8f0000;
}

.fridge-big{
font-size:18px;
padding:16px 32px;
}

/* CARDS */
.fridge-card{
background:#fff;
padding:30px;
margin-top:40px;
border-radius:10px;
box-shadow:0 3px 12px rgba(0,0,0,0.08);
}

.fridge-dark{
background:#221417;
color:#fff;
}

.fridge-dark h2{
color:#fff;
}

.fridge-card h2{
color:#b30000;
}
.fridge-card ul li {
  margin-top: 5px;
}
.fridge-card p{
  margin-top: 5px;
}

/* GRID */
.fridge-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:15px;
margin-top:15px;
}

/* AREAS */
.fridge-areas{
display:flex;
flex-wrap:wrap;
gap:10px;
margin-top:15px;
}

.fridge-areas span{
background:#b30000;
color:#fff;
padding:8px 14px;
border-radius:20px;
font-size:14px;
}

/* IMAGE */
.fridge-service-image{
margin-top:20px;
text-align:center;
}

.fridge-service-image img{
width:100%;
max-width:500px;
border-radius:10px;
box-shadow:0 4px 14px rgba(0,0,0,0.15);
}

/* CTA */
.fridge-cta{
background:#221417;
color:#fff;
text-align:center;
padding:60px 20px;
border-radius:10px;
margin:50px 0;
}

.fridge-cta h2{
color:#fff;
margin-bottom: 5px;
}

/* MOBILE */
@media(max-width:768px){

.fridge-hero-grid{
grid-template-columns:1fr;
text-align:center;
}

.fridge-text h1{
font-size:22px;
}

.fridge-tagline{
  font-size: 15px;
  line-height: 1.5;
  margin-top: 10px;
}
.fridger{
  font-size: 13px;
  line-height: 1.5;
}

.fridge-btn{
width:100%;
display:block;
}
.fridge-big{
  padding: 20px 15px;
  font-size: 16px;
}
.fridge-cta h2{
  font-size: 22px;
  margin-bottom: 10px;
}


}