body {
    margin: 0;
    font-family: Arial, sans-serif;
    color: white;
  }
  
  .section {
    padding: 50px 20px;
  }
  
  /* Header Section */
  .header {
    background: black;
    text-align: center;
  }
  
  .header img {
    width: 70%;
    max-width: 210px;
    height: auto;
    }
  
  .header h1 {
    font-size: 2rem;
    margin: 0;
  }
  
  /* Socials Section */
  .socials-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 30px;
  }
  
  .socials {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
  }
  
  .follow-text {
    margin-top: 20px;
    font-size: 1.5rem;
    color: white;
    text-align: center;
  }
  
  .social-box {
    background: #333;
    padding: 5px;
    width: 100px;
    height: 100px;
    text-align: center;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .social-box a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
  }
  
  .social-icon {
    width: 75px;
    height: 75px;
    object-fit: contain;
  }
  
  /* Offices Section */
  .offices {
    background: white;
    color: black;
    text-align: center;
  }
  
  .offices h1 {
    font-size: 2rem;
  }
  
  .image-row {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
  }
  
  .image-box {
    background: black;
    border-radius: 15px;
    text-align: center;
    padding: 20px;
    width: 550px;
  }
  
  .image-box img {
    max-width: 100%;
    border-radius: 10px;
  }
  
  .image-box p {
    color: white;
  }
  
  /* Features Section */
  .features {
    background: black;
    text-align: center;
  }
  
  .features h1 {
    font-size: 2rem;
  }
  
  .features .columns {
    display: flex;
    justify-content: space-around;
    margin-top: 30px;
  }
  
  .features .column {
    text-align: left;
  }
  
  .features ul {
    list-style: none;
    padding: 0;
  }
  
  .features ul li {
    margin: 5px 0;
  }
  
  /* Contact Section */
  .contact {
    background: white;
    text-align: center;
    padding: 50px 20px;
    color: black;
  }
  
  .contact h1 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: black;
  }
  
  .contact p {
    color: black;
    max-width: 600px;
    margin: 0 auto 30px;
  }
  
  form {
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
  }
  
  .form-group {
    margin-bottom: 20px;
  }
  
  label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: black;
  }
  
  input, textarea {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 5px;
    background: #eee;
    color: black;
    font-family: Arial, sans-serif;
  }
  
  .checkbox-group {
    margin-top: 25px;
  }
  
  .checkbox-group p {
    margin-bottom: 10px;
    font-weight: bold;
  }
  
  .checkbox-options {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
  }
  
  .checkbox-option {
    display: flex;
    align-items: center;
  }
  
  .checkbox-option input {
    width: auto;
    margin-right: 8px;
  }
  
  .checkbox-option label {
    font-weight: normal;
    margin-bottom: 0;
  }
  
  .submit-btn {
    background: #4B0082;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
    margin-top: 10px;
  }
  
  .submit-btn:hover {
    background: #6A0DAD;
  }
  
  /* Announcement Card */
  .announcement {
    background: white;
    color: black;
    max-width: 600px;
    margin: 30px auto;
    padding: 20px;
    border-radius: 10px;
    font-size: 1rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    text-align: center;
  }
  
  /* Division Cards */
  .division-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
  }
  
  .division-card {
    background: #1f1f1f;
    border-radius: 12px;
    padding: 25px;
    max-width: 400px;
    text-align: left;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  }
  
  .division-card h2 {
    color: #f5f5f5;
  }
  
  .division-card p {
    color: #ccc;
  }
  
  .division-card a {
    display: inline-block;
    margin-top: 15px;
    background: #4B0082;
    color: white;
    padding: 8px 16px;
    border-radius: 5px;
    text-decoration: none;
  }
  
  .division-card a:hover {
    background: #6A0DAD;
  }
  
  /* Divider */
  .divider {
    width: 100%;
    max-width: 800px;
    margin: 40px auto;
    border-bottom: 2px solid #888;
    opacity: 0.4;
  }
  
  /* Footer */
  .site-footer {
    background: #111;
    color: #aaa;
    text-align: center;
    padding: 30px 15px;
    margin-top: 60px;
    font-size: 0.9rem;
  }
  
  .footer-content {
    max-width: 800px;
    margin: auto;
  }
  
  .footer-links a {
    color: #aaa;
    text-decoration: none;
    margin: 0 8px;
  }
  
  .footer-links a:hover {
    color: #fff;
  }
  
  /* --- Tech Section Styles --- */
  .hero-tech {
    background: lab(0% 0 0);
    color: white;
    text-align: center;
    padding: 80px 20px 60px;
  }
  .hero-tech img {
    width: 70%;
    max-width: 210px;
    height: auto;
    
  }
  .hero-tech h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
  }
  
  .hero-tech p {
    font-size: 1.1rem;
    color: #aaa;
    max-width: 700px;
    margin: auto;
  }
  
  .tech-services {
    background: #1c1c1c;
    text-align: center;
    padding: 60px 20px;
  }
  
  .tech-services h2 {
    color: white;
    margin-bottom: 40px;
    font-size: 2rem;
  }
  
  .service-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
  }
  
  .service-card {
    background: #222;
    border-radius: 12px;
    padding: 25px;
    max-width: 300px;
    text-align: left;
    color: #ccc;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  }
  
  .service-card h3 {
    color: #fff;
    margin-top: 0;
  }
  
  /* Responsive Adjustments */
  @media (max-width: 768px) {
    .header img {
      height: 200px;
    }
  
    .header h1 {
      font-size: 1.5rem;
      padding: 0 10px;
    }
  
    .socials {
      flex-direction: row;
      justify-content: center;
      flex-wrap: wrap;
      gap: 15px;
    }
  
    .follow-text {
      font-size: 1.3rem;
      margin-top: 15px;
    }
  
    .social-box {
      width: 70px;
      height: 70px;
      min-width: 70px;
      padding: 3px;
    }
  
    .social-icon {
      width: 50px;
      height: 50px;
    }
  
    .offices h1, .features h1, .contact h1 {
      font-size: 1.5rem;
    }
  
    .offices p, .features p, .contact p {
      padding: 0 15px;
    }
  
    .features .columns {
      flex-direction: column;
      align-items: center;
      padding: 0 20px;
      gap: 20px;
    }
  
    .features .column {
      width: 100%;
      max-width: 300px;
      text-align: left;
    }
  
    .features ul li {
      padding-left: 25px;
      text-indent: -25px;
    }
  
    .image-box {
      width: 85%;
      max-width: 300px;
    }
  
    .checkbox-options {
      flex-direction: column;
      gap: 10px;
    }
  
    .division-cards {
      flex-direction: column;
      align-items: center;
    }
  
    .hero-tech h1 {
      font-size: 2rem;
    }
  
    .hero-tech p {
      font-size: 1rem;
    }
  
    .service-grid {
      flex-direction: column;
      align-items: center;
    }
  }
  .portfolio {
    background: #f5f5f5;
    color: #111;
    padding: 60px 20px;
    text-align: center;
  }
  
  .portfolio h1 {
    font-size: 2rem;
    margin-bottom: 40px;
  }
  
  .portfolio-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
  }
  
  .portfolio-item {
    background: white;
    border-radius: 12px;
    padding: 25px;
    max-width: 600px;
    text-align: left;
    color: #333;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  }
  
  .portfolio-item h2 {
    color: #000;
    margin-top: 0;
  }
  
  .portfolio-link a {
    display: inline-block;
    margin-top: 15px;
    background: #4B0082;
    color: white;
    padding: 8px 16px;
    border-radius: 5px;
    text-decoration: none;
  }
  
  .portfolio-link a:hover {
    background: #6A0DAD;
  }
  
  .announcement {
    position: relative;
    z-index: 10;
  }
  