/* =========================
   About Page Responsive = */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Lato', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f9;
  }
  
  /* ===== Container ===== */
  .container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
  }
  
  /* ===== Navbar Centered ===== */
  #main-nav {
    background: #fff;
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    z-index: 1000;
    text-align: center;
  }
  
  #main-nav .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1rem 0;
  }
  
  #main-nav .logo {
    width: 40px;
    height: auto;
    margin-bottom: 1rem;
  }
  
  #main-nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
    justify-content: center;
  }
  
  #main-nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: 700;
    transition: 0.3s;
  }
  
  /* ===== About Section ===== */
  .about-content {
    padding: 4rem 0;
    background: #fff;
  }
  
  .about-content .grid-2 {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    align-items: start;
  }
  
  .about-content article h2 {
    font-family: 'Staatliches', cursive;
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #222;
  }
  
  .about-content article p {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: #555;
  }
  
  /* ===== Cards & Buttons ===== */
  .card {
    background: #fff;
    border-radius: 12px;
    padding: 1.8rem;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
  }
  
  .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.12);
  }
  
  .bg-primary {
    background: #ff6b6b;
  }
  
  .text-light {
    color: #fff;
  }
  
  .btn {
    display: inline-block;
    padding: 0.7rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    text-align: center;
    transition: all 0.3s ease;
  }
  
  .btn-dark {
    background: #222;
    color: #fff;
  }
  
  .btn-dark:hover {
    background: #444;
  }
  
  .btn-secondary {
    background: #6c757d;
    color: #fff;
  }
  
  .btn-secondary:hover {
    background: #5a6268;
  }
  
  .btn-block {
    width: 100%;
  }
  
  /* ===== Focus Areas Section ===== */
  #focus-areas {
    padding: 4rem 0;
    background: #f9f9f9;
    text-align: center;
  }
  
  #focus-areas .headings {
    font-family: 'Staatliches', cursive;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: #222;
  }
  
  #focus-areas p {
    color: #555;
    margin-bottom: 3rem;
  }
  
  .grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
  
  .service-card img {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 1rem;
    transition: transform 0.3s;
  }
  
  .service-card:hover img {
    transform: scale(1.05);
  }
  
  .service-card h3 {
    color: #222;
    margin-bottom: 0.5rem;
  }
  
  .service-card p {
    color: #555;
    font-size: 0.95rem;
  }
  
  /* ===== Footer ===== */
  #main-footer {
    background: #222;
    color: #fff;
    padding: 4rem 1rem 2rem 1rem;
    text-align: center;
  }
  
  #main-footer h3 {
    margin-bottom: 1rem;
    color: #fff;
  }
  
  #main-footer p {
    font-size: 0.9rem;
    line-height: 1.5;
  }
  
  #main-footer .social a {
    margin-right: 1rem;
    color: #fff;
    transition: color 0.3s;
  }
  
  #main-footer .social a:hover {
    color: #ff6b6b;
  }
  
  #main-footer form input,
  #main-footer form textarea {
    width: 100%;
    padding: 0.6rem;
    margin-bottom: 0.5rem;
    border-radius: 6px;
    border: none;
  }
  
  #main-footer form input[type="submit"] {
    background: #ff6b6b;
    color: #fff;
    font-weight: 700;
    cursor: pointer;
  }
  
  #main-footer form input[type="submit"]:hover {
    background: #e05555;
  }
  
  #main-footer ul {
    list-style: none;
    padding: 0;
  }
  
  #main-footer ul li {
    margin-bottom: 0.5rem;
  }
  
  #main-footer ul li a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
  }
  
  #main-footer ul li a:hover {
    color: #ff6b6b;
  }
  
  /* Footer Grid */
  #main-footer .grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }
  
  #main-footer .text-center {
    margin-top: 2rem;
    font-size: 0.9rem;
    color: #aaa;
  }
  
  /* ===== Responsive ===== */
  @media screen and (max-width: 1024px) {
    .about-content .grid-2 {
      grid-template-columns: 1fr;
    }
    .grid-3 {
      grid-template-columns: 1fr 1fr;
    }
    #main-footer .grid-4 {
      grid-template-columns: 1fr 1fr;
    }
    
  }
  
  @media screen and (max-width: 768px) {
    #main-nav .logo {
        width: 40px;
        height: auto;
        margin-bottom: .1rem;
      }
    #main-nav ul {
      flex-direction: row;
      gap: 0.8rem;
    }
  
    .grid-3 {
      grid-template-columns: 1fr;
    }
  
    #main-footer .grid-4 {
      grid-template-columns: 1fr;
    }
  
    .service-card h3 {
      font-size: 1.2rem;
    }
  
    .about-content article h2 {
      font-size: 2rem;
    }
  
    #showcase .showcase-content h1 {
      font-size: 2rem;
    }
  
    #showcase .showcase-content .colored2 {
      font-size: 1rem;
    }
  
    #showcase {
      padding: 4rem 1rem;
    }
  }