*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    
}
  
  h1, h2, h3 {
    font-family: 'poppins', sans-serif; 
  }
  
  p {
    font-family: 'roboto', sans-serif; 
  }
  
  button {
    font-family: 'Roboto', sans-serif; 
    font-weight: 500; 
  }

  .header {
    position: relative;
    min-height: 100vh;
    width: 100%;
    overflow: hidden;
  }
  
  .bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
  }
  
  /* ======================
     Navbar
  ====================== */
  
  header {
    background-color: #f9f9ff;
    padding: 0 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
  }
  
  nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    height: 70px;
  }
   
  /* Logo Styles */
  .logo {
    display: flex;
    align-items: center;
    z-index: 1001;
  }
   
  .logo img {
    width: 124px;
    height: auto;
  }
   
  .logo-text {
    background: linear-gradient(45deg, #4285f4, #ea4335);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 24px;
    font-weight: bold;
  }
   
  .logo-subtitle {
    color: #666;
    font-size: 14px;
    font-weight: normal;
    margin-left: 5px;
  }
   
  /* Navigation Menu */
  .nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
  }
   
  .nav-item {
    position: relative;
  }
   
  .nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 16px;
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color 0.3s ease;
  }
  
  .nav-link:hover {
    color: #4285f4;
  }
   
  .nav-link.active {
    color: #333;
    font-weight: 500;
  }
   
  /* Dropdown Arrow */
  .dropdown-arrow {
    font-size: 12px;
    transition: transform 0.3s ease;
  }
   
  .nav-item:hover .dropdown-arrow {
    transform: rotate(180deg);
  }
   
  /* Dropdown Menu */
  .dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 200px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    padding: 10px 0;
  }
   
  .nav-item:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
   
  .dropdown-item {
    list-style: none;
  }
   
  .dropdown-link {
    display: block;
    padding: 12px 20px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
  }
   
  .dropdown-link:hover {
    background-color: #f8f9ff;
    color: #4285f4;
    padding-left: 25px;
  }
   
  /* Contact Button */
  .contact-btn {
    background: transparent;
    border: 2px solid #4285f4;
    color: #333;
    padding: 10px 25px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
    white-space: nowrap;
  }
   
  .contact-btn:hover {
    background-color: #4285f4;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(66, 133, 244, 0.3);
  }
   
  /* Mobile Menu Toggle */
  .mobile-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
  }
   
  .hamburger {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
  }
   
  .mobile-toggle.active .hamburger:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
  }
   
  .mobile-toggle.active .hamburger:nth-child(2) {
    opacity: 0;
  }
   
  .mobile-toggle.active .hamburger:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
  }
   
  /* Tablet Responsive - 768px to 1024px */
  @media screen and (max-width: 1024px) and (min-width: 769px) {
    .nav-menu {
        gap: 20px;
    }
    
    .nav-link {
        font-size: 15px;
    }
    
    .logo img {
        width: 110px;
    }
    
    .contact-btn {
        padding: 8px 20px;
        font-size: 13px;
    }
  }
   
  /* Mobile and Small Tablet Responsive - up to 768px */
  @media screen and (max-width: 768px) {
    body {
        padding-top: 70px;
    }
    
    header {
        padding: 0 15px;
    }
    
    .mobile-toggle {
        display: flex;
    }
   
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 20px 0;
        gap: 0;
        z-index: 999;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
    }
   
    .nav-menu.active {
        left: 0;
    }
   
    .nav-item {
        width: 100%;
        margin: 10px 0;
    }
   
    .nav-link {
        padding: 15px 20px;
        justify-content: center;
        border-bottom: 1px solid #f0f0f0;
    }
   
    .dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: #f8f9ff;
        margin-top: 10px;
        border-radius: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
   
    .nav-item.dropdown-open .dropdown {
        max-height: 300px;
    }
   
    .nav-item:hover .dropdown {
        max-height: 0;
    }
   
    .nav-item.dropdown-open:hover .dropdown {
        max-height: 300px;
    }
   
    .dropdown-link {
        padding: 10px 40px;
        font-size: 14px;
    }
   
    .dropdown-link:hover {
        padding-left: 40px;
        background-color: #f0f0ff;
    }
   
    .contact-btn {
        margin: 20px auto 10px auto;
        padding: 14px 40px;
        font-size: 16px;
        display: block;
        text-align: center;
        width: fit-content;
        min-width: 140px;
    }
    
    .logo img {
        width: 100px;
    }
    
    .logo-text {
        font-size: 20px;
    }
    
    .logo-subtitle {
        font-size: 12px;
    }
  }
   
  /* Small Mobile - up to 480px */
  @media screen and (max-width: 480px) {
    body {
        padding-top: 60px;
    }
    
    header {
        padding: 0 15px;
    }
   
    nav {
        height: 60px;
    }
   
    .nav-menu {
        top: 60px;
        max-height: calc(100vh - 60px);
    }
    
    .logo img {
        width: 80px;
    }
    
    .logo-text {
        font-size: 18px;
    }
    
    .logo-subtitle {
        display: none;
    }
    
    .nav-link {
        font-size: 16px;
        padding: 12px 15px;
    }
    
    .contact-btn {
        padding: 12px 35px;
        font-size: 15px;
        margin: 15px auto 5px auto;
        display: block;
        width: fit-content;
        min-width: 120px;
    }
  }
   
  /* Very Small Screens - up to 360px */
  @media screen and (max-width: 360px) {
    header {
        padding: 0 10px;
    }
    
    .logo img {
        width: 70px;
    }
    
    .logo-text {
        font-size: 16px;
    }
    
    .hamburger {
        width: 20px;
        height: 2px;
    }
  }
   
  /* Landscape Mobile Optimization */
  @media screen and (max-height: 500px) and (orientation: landscape) {
    .nav-menu {
        padding: 10px 0;
        max-height: calc(100vh - 50px);
    }
    
    .nav-link {
        padding: 10px 20px;
    }
    
    .nav-item {
        margin: 5px 0;
    }
  }
   
  /* High DPI Screens */
  @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .logo img {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
  }
   
  /* Focus States for Accessibility */
  .nav-link:focus,
  .dropdown-link:focus,
  .contact-btn:focus,
  .mobile-toggle:focus {
    outline: 2px solid #4285f4;
    outline-offset: 2px;
  }
   
  /* Print Styles */
  @media print {
    header {
        position: static;
        box-shadow: none;
    }
    
    .mobile-toggle {
        display: none;
    }
    
    .nav-menu {
        position: static;
        flex-direction: row;
        gap: 20px;
        padding: 0;
    }
  }
  
  /* ======================
     Hero
  ====================== */
  .hero {
    text-align: center;
    padding: 0 2rem;
    margin-top: 10rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: calc(100vh - 6rem);
    position: relative;
    z-index: 10;
  }
  
  .hero h1 {
    color: #fff;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    max-width: 800px;
  }
  
  .hero p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    max-width: 800px;
    color: #ffffff;
  }
  
  .get-started {
    background-color: #906675;
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
  }
  
  .get-started:hover {
    background-color: #a78792;
  }
  
  .get-started::after {
    content: ">";
    font-family: monospace;
    font-weight: bold;
  }
  
  /* ======================
     Mobile Responsive
  ====================== */
  .menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #fff;
  }
  
  /* Tablet (768px and below) */
  @media (max-width: 1024px) {
    .navbar {
      padding: 15px 20px;
    }
  
    .nav-links {
      gap: 25px;
    }
  
    .hero h1 {
      font-size: 2.8rem;
    }
  
    .hero p {
      font-size: 1rem;
    }
  }
  
  /* Mobile (768px and below) */
  @media (max-width: 768px) {
    .nav-links {
      position: absolute;
      top: 70px;
      right: 0;
      background: rgba(0, 0, 0, 0.95);
      flex-direction: column;
      gap: 20px;
      padding: 20px;
      width: 250px;
      transform: translateX(100%);
      transition: transform 0.3s ease;
    }
  
    .nav-links.active {
      transform: translateX(0);
    }
  
    .submenu {
      display: none;
      flex-direction: column;
      background: none;
      padding: 10px 0 0 15px;
      position: static;
    }
  
    .dropdown.active .submenu {
      display: flex;
    }
  
    .menu-toggle {
      display: block;
    }
  
    .contact-btn {
      display: none; /* Optional: hide button in mobile to save space */
    }
  
    .hero {
      margin-top: 8rem;
      padding: 0 1.5rem;
    }
  
    .hero h1 {
      font-size: 2.2rem;
    }
  
    .hero p {
      font-size: 0.95rem;
    }
  }
  
  /* Small Mobile (480px and below) */
  @media (max-width: 480px) {
    .logo img {
      width: 100px;
    }
  
    .hero h1 {
      font-size: 1.8rem;
    }
  
    .hero p {
      font-size: 0.85rem;
    }
  
    .get-started {
      padding: 0.8rem 1.5rem;
      font-size: 0.9rem;
    }
  }
  

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    margin-top: 50px;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
}

.services-wrapper {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.service-item {
    display: flex;
    gap: 30px;
    align-items: center;
}

.service-item:nth-child(even) {
    flex-direction: row-reverse;
}

.service-image {
    width: 45%;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.service-image:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.service-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    transition: all 0.5s ease;
}

.service-image:hover img {
    transform: scale(1.05);
}

.service-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-image:hover::after {
    opacity: 1;
}

.service-content {
    width: 55%;
    
}

.service-tag {
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1px;
    font-weight: 600;
    color: #979797;
    margin-bottom: 10px;
}

.service-content h3 {
    font-size: 47px;
    margin-bottom: 15px;
    font-weight: 700;
    line-height: 1.2;
}

.service-content p {
    margin-bottom: 20px;
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

.read-more-btn {
    display: inline-block;
    background-color: #e6bbc5;
    color: #333;
    padding: 8px 15px;
    border-radius: 10px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.read-more-btn:hover {
    background-color: #d9a6b3;
}

.hidden-content {
    display: none;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #eee;
    color: #666;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .service-item, .service-item:nth-child(even) {
        flex-direction: column;
    }

    .service-image, .service-content {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .section-title h2 {
        font-size: 28px;
    }

    .service-content h3 {
        font-size: 24px;
    }

    .services-wrapper {
        gap: 60px;
    }
}

@media (max-width: 576px) {
    .section-title h2 {
        font-size: 24px;
    }

    .service-content h3 {
        font-size: 20px;
    }

    .services-wrapper {
        gap: 40px;
    }
}

.sectors-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

.sectors-heading {
    text-align: center;
    margin-bottom: 50px;
}

.sectors-heading h2 {
    font-size: 36px;
    font-weight: 700;
    color: #222;
}

.sectors-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 35px;
    margin-bottom: 25px;
}

.sector-card {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    background-color: #fff;
    border: 1px solid #e0e0e0;
    height: 198px;
}

.sector-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.15);
}

.sector-header {
    background-color: #e6c7c7;
    height: 25px;
}

.sector-content {
    padding: 30px 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 150px;
}

.sector-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
    color: #a36868;
}

.sector-icon svg {
    width: 100%;
    height: 100%;
}

.sector-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

/* Responsive styles */
@media (max-width: 992px) {
    .sectors-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .sectors-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .sectors-heading h2 {
        font-size: 30px;
    }
}

@media (max-width: 576px) {
    .sectors-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .sectors-heading h2 {
        font-size: 26px;
    }
    .sector-content {
        min-height: 120px;
    }
}

.features-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.feature-card {
    background-color: #ffebee;
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

@media (min-width: 768px) {
    .feature-card {
        flex-direction: row;
        align-items: flex-start;
    }
}

.feature-icon {
    background-color: #D6BDC6;
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

@media (min-width: 768px) {
    .feature-icon {
        margin-right: 30px;
        margin-bottom: 0;
    }
}

.feature-content {
    flex: 1;
}

.feature-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #333;
}

@media (min-width: 768px) {
    .feature-title {
        font-size: 28px;
    }
}

.feature-description {
    display: flex;
    flex-direction: column;
}

@media (min-width: 992px) {
    .feature-description {
        flex-direction: row;
    }

    .feature-text {
        flex: 1;
        padding-right: 20px;
    }
}

.feature-text {
    margin-bottom: 15px;
}

.feature-text p {
    margin-bottom: 15px;
    line-height: 1.6;
    color: #444;
}

.hidden-content {
    display: none;
    margin-top: 15px;
    margin-bottom: 15px;
    padding-top: 10px;
}

.hidden-content p {
    line-height: 1.6;
    color: #444;
}

.read-more-btn {
    display: inline-flex;
    align-items: center;
    color: #555;
    cursor: pointer;
    font-weight: 500;
    text-decoration: none;
    margin-top: 10px;
}

.read-more-btn svg {
    margin-left: 6px;
    transition: transform 0.2s ease;
}

.read-more-btn:hover svg {
    transform: translateX(3px);
}

strong {
    font-weight: 600;
}

.faq-section {
    max-width: 900px;
    margin: 50px auto;
    padding: 0 20px;
}

.faq-title {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #222;
}

.faq-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background-color: #f5f0f0;
    border-radius: 12px;
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    position: relative;
}

.faq-question-text {
    font-size: 18px;
    padding-right: 40px;
}

.faq-toggle {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-toggle::before,
.faq-toggle::after {
    content: '';
    position: absolute;
    background-color: #333;
    transition: transform 0.3s ease;
}

.faq-toggle::before {
    width: 2px;
    height: 16px;
    transform: rotate(90deg);
}

.faq-toggle::after {
    width: 16px;
    height: 2px;
}

.faq-item.active .faq-toggle::before {
    transform: rotate(0);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 20px 20px;
    max-height: 1000px;
}

.faq-answer-text {
    color: #666;
    font-size: 16px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .faq-title {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .faq-question-text {
        font-size: 16px;
    }

    .faq-answer-text {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .faq-section {
        margin: 30px auto;
    }
    
    .faq-title {
        font-size: 24px;
        margin-bottom: 25px;
    }

    .faq-question {
        padding: 15px;
    }

    .faq-question-text {
        font-size: 15px;
        padding-right: 30px;
    }

    .faq-toggle {
        right: 15px;
        width: 16px;
        height: 16px;
    }

    .faq-item.active .faq-answer {
        padding: 0 15px 15px;
    }
}

/* footer section*/
/* Footer Styles */
.footer {
  background-color: #f8f9ff;
  padding: 60px 0 30px 0;
  color: #333;
}
 
.footer-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 20px;
}
 
.footer-content {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 50px;
}
 
/* Company Info Section */
.footer-company {
  grid-column: span 1;
}
 
.footer-logo {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
}
 
.footer-logo img {
  width: 120px;
  height: auto;
  margin-right: 10px;
}
 
.company-description {
  color: #666;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 30px;
}
 
/* Social Media Icons */
.social-media {
  display: flex;
  gap: 15px;
  align-items: center;
}
 
.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 20px;
  transition: all 0.3s ease;
  color: white;
}
 
.social-icon.linkedin {
  background-color: #0077b5;
}
 
.social-icon.twitter {
  background-color: #000;
}
 
.social-icon.facebook {
  background-color: #1877f2;
}
 
.social-icon.instagram {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}
 
.social-icon.threads {
  background-color: #000;
}
 
.social-icon:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
 
/* Footer Sections */
.footer-section h3 {
  font-size: 18px;
  font-weight: 600;
  color: #333;
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
 
.footer-links {
  list-style: none;
}
 
.footer-links li {
  margin-bottom: 12px;
}
 
.footer-links a {
  color: #666;
  text-decoration: none;
  font-size: 15px;
  transition: all 0.3s ease;
  display: block;
  padding: 5px 0;
}
 
.footer-links a:hover {
  color: #4285f4;
  padding-left: 5px;
}
 
/* Contact Section */
.contact-infos {
  list-style: none;
}
 
.contact-infos li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
  color: #666;
  font-size: 15px;
}
 
.contact-icon {
  width: 20px;
  height: 20px;
  margin-right: 15px;
  margin-top: 2px;
  flex-shrink: 0;
  color: #4285f4;
}
 
.contact-text {
  line-height: 1.5;
}
 
/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid #e0e0e0;
  padding-top: 30px;
  text-align: center;
}
 
.copyright {
  color: #666;
  font-size: 14px;
  font-weight: 500;
}
 
/* Tablet Styles */
@media screen and (max-width: 1024px) {
  .footer-content {
      grid-template-columns: 1fr 1fr 1fr;
      gap: 40px;
  }
 
  .footer-company {
      grid-column: span 1;
  }
 
  .footer-container {
      padding: 0 30px;
  }
}
 
/* Mobile Styles */
@media screen and (max-width: 768px) {
  .footer {
      padding: 40px 0 20px 0;
  }
 
  .footer-container {
      padding: 0 20px;
  }
 
  .footer-content {
      grid-template-columns: 1fr 1fr;
      gap: 30px;
      margin-bottom: 30px;
  }
 
  .footer-company {
      grid-column: span 2;
      text-align: center;
      margin-bottom: 20px;
  }
 
  .company-description {
      font-size: 15px;
      margin-bottom: 25px;
  }
 
  .social-media {
      justify-content: center;
  }
 
  .footer-section h3 {
      font-size: 16px;
      margin-bottom: 20px;
  }
 
  .footer-links a {
      font-size: 14px;
  }
 
  .contact-infos li {
      font-size: 14px;
      margin-bottom: 15px;
  }
 
  .contact-icon {
      width: 18px;
      height: 18px;
  }
}
 
/* Small Mobile Styles */
@media screen and (max-width: 480px) {
  .footer {
      padding: 30px 0 15px 0;
  }
 
  .footer-container {
      padding: 0 15px;
  }
 
  .footer-content {
      grid-template-columns: 1fr;
      gap: 25px;
      margin-bottom: 25px;
  }
 
  .footer-company {
      grid-column: span 1;
      margin-bottom: 15px;
  }
 
  .footer-logo img {
      width: 100px;
  }
 
  .company-description {
      font-size: 14px;
      margin-bottom: 20px;
  }
 
  .social-icon {
      width: 35px;
      height: 35px;
      font-size: 18px;
  }
 
  .footer-section {
      text-align: center;
  }
 
  .footer-links a {
      padding: 8px 0;
  }
 
  .contact-infos li {
      justify-content: flex-start;
      text-align: left;
  }
 
  .copyright {
      font-size: 13px;
      padding: 0 10px;
  }
}
 
/* Very Small Screens */
@media screen and (max-width: 360px) {
  .footer-container {
      padding: 0 10px;
  }
 
  .social-media {
      gap: 10px;
  }
 
  .social-icon {
      width: 32px;
      height: 32px;
      font-size: 16px;
  }
 
  .contact-infos li {
      margin-bottom: 12px;
  }
}
 
/* Landscape Mobile */
@media screen and (max-height: 500px) and (orientation: landscape) {
  .footer {
      padding: 20px 0 10px 0;
  }
 
  .footer-content {
      margin-bottom: 15px;
  }
 
  .footer-section h3 {
      margin-bottom: 15px;
  }
}
 