/* Prevent horizontal scrolling */
html, body {
  overflow-x: hidden;
}

/* -------- General Reset -------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background: #fdfdfd;
}

h1, h2, h3 {
  color: #111;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Navbar container */
    nav {
      background: linear-gradient(135deg, #004aad, #007bff);
      padding: 10px 20px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      box-shadow: 0 2px 5px rgba(0,0,0,0.2);
      position: fixed;
      width: 100%;
      top: 0;
      z-index: 1000;
    }

    /* Logo */
    .logo-container {
      display: flex;
      align-items: center;
    }

    .logo {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      overflow: hidden;
      border: 2px solid #fff;
      background: #fff;
    }

    .logo img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .brand {
      margin-left: 10px;
      font-size: 20px;
      font-weight: bold;
      color: #fff;
    }

    /* Menu */
    .nav-links {
      display: flex;
      list-style: none;
      transition: max-height 0.4s ease;
    }

    .nav-links li {
      margin-left: 20px;
    }

    .nav-links a {
      text-decoration: none;
      color: #fff;
      font-size: 16px;
      font-weight: 500;
      transition: color 0.3s;
    }

    .nav-links a:hover {
      color: #ffe066;
    }

    /* Hamburger menu (hidden by default on desktop) */
    .hamburger {
      display: none;
      flex-direction: column;
      cursor: pointer;
    }

    .hamburger span {
      height: 3px;
      width: 25px;
      background: #fff;
      margin: 4px 0;
      transition: 0.4s;
    }

    /* Mobile styles */
    @media (max-width: 768px) {
      .nav-links {
        position: absolute;
        top: 70px;
        right: 0;
        background: linear-gradient(135deg, #004aad, #007bff);
        flex-direction: column;
        width: 200px;
        max-height: 0; /* hidden by default */
        overflow: hidden;
        padding: 0;
        box-shadow: 0 2px 5px rgba(0,0,0,0.2);
      }

      .nav-links li {
        margin: 15px 0;
        text-align: center;
      }

      .hamburger {
        display: flex;
      }

      .nav-links.active {
        max-height: 300px; /* expands menu */
        padding: 10px 0;
      }
    }
/* -------- Hero -------- */
.hero {
  background: url("/assets/slider2.png") center/cover no-repeat;
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  position: relative;
}

.hero-overlay {
  background: rgba(0, 0, 0, 0.6);
  padding: 30px;
  border-radius: 10px;
}

.hero h1 {
  font-size: 1.8rem;
  margin-bottom: 12px;
}
.hero .highlight {
  color: #00e0ff;
}
.hero p {
  margin-bottom: 20px;
}
.btn {
  display: inline-block;
  padding: 10px 20px;
  background: #00b4d8;
  color: #fff;
  border-radius: 5px;
  font-weight: 600;
  transition: 0.3s;
}
.btn:hover {
  background: #0077b6;
}

/* -------- About -------- */
.about {
  padding: 50px 20px;
  background: #f7f9fc;
}
.about-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.about-text h2 {
  font-size: 1.6rem;
  margin-bottom: 10px;
}
.about-text p {
  margin-bottom: 15px;
}
.about-image img {
  width: 100%;
  border-radius: 10px;
}

/* -------- Services -------- */
#services {
  padding: 50px 20px;
  text-align: center;
}
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 20px;
}
.service-card {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
.service-card .icon {
  font-size: 2rem;
  margin-bottom: 10px;
}

/* -------- Why Choose Us -------- */
.why {
  padding: 50px 20px;
  background: #eef9ff;
  text-align: center;
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 20px;
}
.why-card img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 10px;
}

/* -------- Process -------- */
.process {
  padding: 50px 20px;
  text-align: center;
}
.process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 20px;
}
.process-card img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 10px;
}

/* -------- Reviews -------- */
.reviews {
  padding: 50px 20px;
  background: #f7f9fc;
  text-align: center;
}
.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 20px;
}
.review-card {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
.review-card img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  margin-bottom: 12px;
}

/* -------- Floating Buttons -------- */
.whatsapp-float, .call-float {
  position: fixed;
  bottom: 20px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  color: #fff;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  transition: transform 0.3s;
}
.whatsapp-float {
  right: 80px;
  background: #25d366;
}
.call-float {
  right: 20px;
  background: #0077b6;
}
.whatsapp-float:hover, .call-float:hover {
  transform: scale(1.1);
}

/* -------- Media Queries -------- */
@media (min-width: 768px) {
  .nav-links {
    display: flex;
    position: static;
    flex-direction: row;
    gap: 20px;
    background: none;
  }
  .menu-toggle { display: none; }

  .about-container {
    flex-direction: row;
    align-items: center;
  }
  .about-text, .about-image {
    flex: 1;
  }

  .services-grid,
  .why-grid,
  .process-grid,
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .hero h1 {
    font-size: 2.5rem;
  }
  .services-grid,
  .why-grid,
  .process-grid,
  .reviews-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* -------- Footer -------- */
.footer {
  background: linear-gradient(135deg, #0077b6, #00b4d8);
  color: #fff;
  padding: 40px 20px 10px;
  margin-top: 50px;
}

.footer-container {
  display: flex;
  flex-direction: column;
  gap: 30px;
  text-align: center;
}

.footer-logo {
  height: 50px;
  margin-bottom: 10px;
  border-radius: 6px;
}

.footer-about p {
  font-size: 0.9rem;
  line-height: 1.5;
}

.footer-links h3,
.footer-contact h3 {
  margin-bottom: 10px;
  font-size: 1.1rem;
  border-bottom: 2px solid rgba(255,255,255,0.4);
  display: inline-block;
  padding-bottom: 4px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}
.footer-links li {
  margin: 8px 0;
}
.footer-links a {
  color: #fff;
  transition: 0.3s;
}
.footer-links a:hover {
  color: #ffde59;
}

.footer-contact p {
  margin: 6px 0;
  font-size: 0.9rem;
}
.footer-contact i {
  margin-right: 8px;
  color: #ffde59;
}

.footer-social {
  margin-top: 10px;
}
.footer-social a {
  margin: 0 8px;
  color: #fff;
  font-size: 1.2rem;
  transition: 0.3s;
}
.footer-social a:hover {
  color: #ffde59;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.3);
  margin-top: 20px;
  padding-top: 10px;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.9);
}

/* -------- Responsive -------- */
@media (min-width: 768px) {
  .footer-container {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
  .footer-about, .footer-links, .footer-contact {
    flex: 1;
  }
}



/* Mission & Vision */
.mission {
  padding: 60px 20px;
  background: #eef9ff;
}
.mission-container {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 1000px;
  margin: auto;
}
.mission-box {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  text-align: center;
  transition: transform 0.3s;
}
.mission-box i {
  font-size: 2rem;
  color: #0077b6;
  margin-bottom: 12px;
}
.mission-box:hover { transform: translateY(-5px); }

/* Core Values */
.values {
  padding: 60px 20px;
  text-align: center;
}
.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
  margin-top: 25px;
}
.value-card {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: 0.3s;
}
.value-card i {
  font-size: 2rem;
  color: #00b4d8;
  margin-bottom: 12px;
}
.value-card:hover { transform: translateY(-5px); }


/* Call to Action Banner */
.cta-banner {
  padding: 60px 20px;
  text-align: center;
  background: linear-gradient(135deg, #0077b6, #00b4d8);
  color: #fff;
}
.cta-banner h2 {
  font-size: 2rem;
  margin-bottom: 15px;
}
.cta-banner p {
  margin-bottom: 20px;
}
.cta-banner .btn {
  background: #ffde59;
  color: #333;
}
.cta-banner .btn:hover {
  background: #ffc107;
}

/* Responsive */
@media (min-width: 768px) {
  .mission-container { flex-direction: row; }
  .values-grid { grid-template-columns: repeat(3, 1fr); }
  .team-grid { grid-template-columns: repeat(3, 1fr); }
}
     
/*SERVICES*/
.hero h1 {
  font-size: 50px;
  font-weight: bold;
  margin-bottom: 20px;
}
.hero p {
  font-size: 18px;
  margin-bottom: 30px;
}
.hero a {
  display: inline-block;
  padding: 14px 35px;
  background: #ff7b00;
  color: #fff;
  border-radius: 12px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}
.hero a:hover {
  background: #e46d00;
}

/* About Section */
.about {
  max-width: 1100px;
  margin: auto;
  padding: 70px 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  gap: 50px;
  align-items: center;
}
.about img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}
.about h2 {
  font-size: 30px;
  color: #004aad;
  margin-bottom: 20px;
}
.about p {
  font-size: 16px;
  color: #555;
}

/* Appliances Grid */
.services {
  background: #fff;
  padding: 80px 20px;
}
.services h2 {
  text-align: center;
  font-size: 34px;
  color: #004aad;
  margin-bottom: 50px;
}
.services-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}
.card {
  background: #fdfdfd;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 18px rgba(0,0,0,0.1);
  transition: 0.3s;
}
.card:hover {
  transform: translateY(-7px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}
.card img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}
.card h3 {
  font-size: 20px;
  margin: 15px;
  color: #004aad;
}
.card p {
  padding: 0 15px 20px;
  font-size: 15px;
  color: #555;
}

/* Why Choose Us */
.why {
  background: #f5f5f5;
  padding: 80px 20px;
  text-align: center;
}
.why h2 {
  font-size: 34px;
  color: #004aad;
  margin-bottom: 40px;
}
.why-grid {
  max-width: 1000px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}
.why-box {
  background: #fff;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 5px 18px rgba(0,0,0,0.1);
  transition: 0.3s;
}
.why-box:hover {
  background: #00b4d8;
  color: #fff;
}

/* Call to Action */
.cta {
  background: linear-gradient(135deg, #004aad, #002b6f);
  color: #fff;
  text-align: center;
  padding: 90px 20px;
}
.cta h2 {
  font-size: 36px;
  margin-bottom: 15px;
}
.cta p {
  font-size: 18px;
  margin-bottom: 30px;
}
.cta a {
  display: inline-block;
  padding: 15px 40px;
  background: #ff7b00;
  color: #fff;
  border-radius: 12px;
  font-weight: bold;
  text-decoration: none;
  transition: 0.3s;
}
.cta a:hover {
  background: #e46d00;
}

/*Blog page*/
/* ===== BLOG PAGE STYLES ===== */

/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  background: #f9f9f9;
  color: #333;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* Blog Header */
.blog-header {
  text-align: center;
  padding: 40px 10px;
  animation: fadeIn 1s ease-in;
}

.blog-header h1 {
  font-size: 2rem;
  margin-bottom: 10px;
  color: #222;
}

.blog-header p {
  color: #555;
  font-size: 1rem;
}

/* Featured Post */
.featured-post {
  display: flex;
  flex-direction: column;
  background: #fff;
  margin-bottom: 40px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  animation: slideUp 1s ease;
}

.featured-post img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.featured-content {
  padding: 20px;
}

.featured-content h2 {
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.featured-content p {
  margin-bottom: 15px;
  color: #555;
}

/* Blog Grid */
.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.blog-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  animation: fadeIn 1s ease-in;
}

.blog-card:hover {
  transform: translateY(-5px);
}

.blog-img img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-content {
  padding: 15px;
}

.blog-content h2 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.blog-content p {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 15px;
}

.read-more {
  display: inline-block;
  font-size: 0.9rem;
  text-decoration: none;
  color: #0077cc;
  transition: color 0.3s;
}

.read-more:hover {
  color: #005999;
}

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  margin: 30px 0;
  flex-wrap: wrap;
}

.page-btn {
  margin: 5px;
  padding: 10px 15px;
  border: 1px solid #0077cc;
  color: #0077cc;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.page-btn:hover {
  background: #0077cc;
  color: #fff;
}

.page-btn.active {
  background: #0077cc;
  color: #fff;
}

/* Categories */
.blog-categories {
  padding: 40px 0;
  background: #fff;
  text-align: center;
  margin-top: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  animation: fadeIn 1s ease-in;
}

.blog-categories h2 {
  margin-bottom: 20px;
  font-size: 1.5rem;
}

.category-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
}

.category-card {
  background: #0077cc;
  color: #fff;
  padding: 12px 20px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.3s;
}

.category-card:hover {
  background: #005999;
  transform: scale(1.05);
}

/* Newsletter */
.newsletter {
  padding: 40px 20px;
  background: linear-gradient(135deg, #0077cc, #005999);
  color: #fff;
  text-align: center;
  margin: 40px 0;
  border-radius: 12px;
  animation: slideUp 1s ease;
}

.newsletter h2 {
  margin-bottom: 10px;
  font-size: 1.6rem;
}

.newsletter p {
  margin-bottom: 20px;
}

.newsletter form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}

.newsletter input {
  padding: 10px;
  width: 100%;
  max-width: 300px;
  border-radius: 6px;
  border: none;
  outline: none;
}

.newsletter button {
  padding: 10px 20px;
  background: #fff;
  color: #0077cc;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  transition: transform 0.3s;
}

.newsletter button:hover {
  transform: scale(1.05);
}

/* FAQ */
.faq {
  background: #fff;
  padding: 40px 20px;
  margin-bottom: 50px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  animation: fadeIn 1s ease-in;
}

.faq h2 {
  text-align: center;
  margin-bottom: 20px;
  font-size: 1.5rem;
}

.faq-item {
  margin-bottom: 20px;
}

.faq-item h3 {
  font-size: 1rem;
  color: #0077cc;
  margin-bottom: 5px;
}

.faq-item p {
  font-size: 0.95rem;
  color: #555;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideUp {
  from { transform: translateY(30px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

/* ===== RESPONSIVE DESIGN ===== */

/* Tablets and up */
@media (min-width: 768px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .featured-post {
    flex-direction: row;
  }
  .featured-post img {
    width: 50%;
    height: auto;
  }
  .featured-content {
    width: 50%;
  }
}

/* Desktop and up */
@media (min-width: 1024px) {
  .blog-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .blog-header h1 {
    font-size: 2.5rem;
  }
  .featured-content h2 {
    font-size: 1.8rem;
  }
}
 
/*Daewoo maintain*/

/* daewoo-blog.css
   Mobile-first responsive CSS scoped to #daewoo-blog
   Save this file in your site's CSS folder and update the <link> href in the HTML.
*/

/* Variables (fallback-friendly) */
:root{
  --max-width: 940px;
  --padding: 16px;
  --text: #222;
  --muted: #6b7280;
  --brand: #0066cc;
  --bg: #fff;
}

/* Container */
#daewoo-blog {
  box-sizing: border-box;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: var(--padding);
  background: transparent;
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  font-size: 16px;
}

/* Headings */
#daewoo-blog h1 {
  font-size: 1.6rem;
  margin: 0 0 0.6rem;
  line-height: 1.12;
  font-weight: 700;
}

#daewoo-blog h2 {
  font-size: 1.25rem;
  margin: 1.25rem 0 0.5rem;
  font-weight: 700;
}

#daewoo-blog h3 {
  font-size: 1.05rem;
  margin: 0.85rem 0 0.35rem;
  font-weight: 600;
}

/* Text */
#daewoo-blog p {
  margin: 0 0 0.9rem;
  color: var(--text);
  font-size: 1rem;
}

#daewoo-blog #subtitle {
  color: var(--muted);
  font-style: italic;
  margin-bottom: 0.6rem;
}

#daewoo-blog #meta {
  color: var(--muted);
  font-size: 0.92rem;
  margin-bottom: 1rem;
}

/* Table of contents */
#daewoo-blog #toc {
  background: #f4f7fb;
  border: 1px solid #e0e7ef;
  padding: 12px;
  border-radius: 8px;
  margin-bottom: 1.25rem;
}

#daewoo-blog #toc strong {
  display: block;
  margin-bottom: 8px;
  color: var(--text);
}

#daewoo-blog #toc ul {
  padding-left: 18px;
  margin: 0;
}

#daewoo-blog a {
  color: var(--brand);
  text-decoration: none;
}

#daewoo-blog a:hover,
#daewoo-blog a:focus {
  text-decoration: underline;
  outline: none;
}

/* Lists */
#daewoo-blog ul,
#daewoo-blog ol {
  margin: 0 0 0.9rem 18px;
}

/* Note style */
#daewoo-blog .note {
  display: block;
  padding: 10px;
  margin: 0.75rem 0;
  background: #fff7f0;
  border-radius: 8px;
  color: var(--text);
  border: 1px solid rgba(255,153,51,0.12);
}

/* Print adjustments */
@media print {
  #daewoo-blog { color: #000; background: #fff; }
  #daewoo-blog #toc { display: none; }
}

/* Larger screens (simple scaling) */
@media (min-width: 768px) {
  #daewoo-blog { padding: 24px; font-size: 16px; }
  #daewoo-blog h1 { font-size: 2rem; }
  #daewoo-blog h2 { font-size: 1.5rem; }
  #daewoo-blog h3 { font-size: 1.15rem; }
}

/*Daewoo machine repair*/

/* ===== Mobile-First Responsive Blog Styling ===== */
#daewoo-wm-maintenance {
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  max-width: 100%;
  margin: 0 auto;
  padding: 15px;
  color: #222;
  background: #fff;
  box-sizing: border-box;
}

/* Headings */
#daewoo-wm-maintenance h1 {
  font-size: 1.6rem;
  margin-bottom: 15px;
  color: #004080;
  line-height: 1.3;
}

#daewoo-wm-maintenance h2 {
  font-size: 1.3rem;
  margin: 20px 0 10px;
  color: #0066cc;
  border-bottom: 2px solid #eee;
  padding-bottom: 5px;
}

#daewoo-wm-maintenance h3 {
  font-size: 1.1rem;
  margin: 15px 0 8px;
  color: #444;
}

/* Subtitle + Meta */
#daewoo-wm-maintenance #subtitle {
  font-size: 1rem;
  color: #555;
  margin-bottom: 10px;
  font-style: italic;
}

#daewoo-wm-maintenance #meta {
  font-size: 0.85rem;
  color: #777;
  margin-bottom: 15px;
}

/* Table of Contents */
#daewoo-wm-maintenance #toc {
  background: #f9f9f9;
  border: 1px solid #ddd;
  padding: 12px;
  margin: 15px 0;
  border-radius: 5px;
}

#daewoo-wm-maintenance #toc strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1rem;
}

#daewoo-wm-maintenance #toc ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

#daewoo-wm-maintenance #toc li {
  margin: 6px 0;
}

#daewoo-wm-maintenance #toc a {
  text-decoration: none;
  color: #0066cc;
  font-size: 0.95rem;
}

#daewoo-wm-maintenance #toc a:hover {
  text-decoration: underline;
}

/* Paragraphs & Lists */
#daewoo-wm-maintenance p {
  margin-bottom: 12px;
  font-size: 0.95rem;
}

#daewoo-wm-maintenance ul {
  margin: 10px 0 15px 20px;
  padding-left: 15px;
}

#daewoo-wm-maintenance ul li {
  margin-bottom: 6px;
  font-size: 0.95rem;
}

/* Responsive Images */
#daewoo-wm-maintenance img {
  max-width: 100%;
  height: auto;
  margin: 12px 0;
  border-radius: 5px;
}

/* ===== Larger Screens (Tablets & Desktops) ===== */
@media (min-width: 600px) {
  #daewoo-wm-maintenance {
    max-width: 700px;
    padding: 20px;
  }
  #daewoo-wm-maintenance h1 {
    font-size: 2rem;
  }
  #daewoo-wm-maintenance h2 {
    font-size: 1.5rem;
  }
  #daewoo-wm-maintenance h3 {
    font-size: 1.2rem;
  }
  #daewoo-wm-maintenance p,
  #daewoo-wm-maintenance ul li {
    font-size: 1rem;
  }
}

@media (min-width: 1024px) {
  #daewoo-wm-maintenance {
    max-width: 850px;
    padding: 30px;
  }
}

/*Daewoo fridge repair*/
/* ===== Mobile-First Responsive Blog Styling ===== */
.daewoo-article {
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  max-width: 100%;
  margin: 0 auto;
  padding: 15px;
  color: #222;
  background: #fff;
  box-sizing: border-box;
}

/* Headings */
.daewoo-article h1 {
  font-size: 1.6rem;
  margin-bottom: 15px;
  color: #004080;
  line-height: 1.3;
}

.daewoo-article h2 {
  font-size: 1.3rem;
  margin: 20px 0 10px;
  color: #0066cc;
  border-bottom: 2px solid #eee;
  padding-bottom: 5px;
}

.daewoo-article h3 {
  font-size: 1.1rem;
  margin: 15px 0 8px;
  color: #444;
}

/* Subtitle + Meta */
.daewoo-article #subtitle {
  font-size: 1rem;
  color: #555;
  margin-bottom: 10px;
  font-style: italic;
}

.daewoo-article #meta {
  font-size: 0.85rem;
  color: #777;
  margin-bottom: 15px;
}

/* Table of Contents */
.daewoo-article #toc {
  background: #f9f9f9;
  border: 1px solid #ddd;
  padding: 12px;
  margin: 15px 0;
  border-radius: 5px;
}

.daewoo-article #toc strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1rem;
}

.daewoo-article #toc ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.daewoo-article #toc li {
  margin: 6px 0;
}

.daewoo-article #toc a {
  text-decoration: none;
  color: #0066cc;
  font-size: 0.95rem;
}

.daewoo-article #toc a:hover {
  text-decoration: underline;
}

/* Paragraphs & Lists */
.daewoo-article p {
  margin-bottom: 12px;
  font-size: 0.95rem;
}

.daewoo-article ul {
  margin: 10px 0 15px 20px;
  padding-left: 15px;
}

.daewoo-article ul li {
  margin-bottom: 6px;
  font-size: 0.95rem;
}

/* Responsive Images */
.daewoo-article img {
  max-width: 100%;
  height: auto;
  margin: 12px 0;
  border-radius: 5px;
}

/* ===== Larger Screens (Tablets & Desktops) ===== */
@media (min-width: 600px) {
  .daewoo-article {
    max-width: 700px;
    padding: 20px;
  }
  .daewoo-article h1 {
    font-size: 2rem;
  }
  .daewoo-article h2 {
    font-size: 1.5rem;
  }
  .daewoo-article h3 {
    font-size: 1.2rem;
  }
  .daewoo-article p,
  .daewoo-article ul li {
    font-size: 1rem;
  }
}

@media (min-width: 1024px) {
  .daewoo-article {
    max-width: 850px;
    padding: 30px;
  }
}
