* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


body {
    font-family: 'Poppins', Arial, Helvetica, sans-serif;
    line-height: 1.6;
    background-color: #ffffff;
    color: #222222;
} 


.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}


header {
    background-color: #007ACC;
    color: white;
    padding: 1rem 0;
}


header .logo {
    font-size: 2.2rem;
}


.hero-section {
    background: linear-gradient(135deg, #007ACC, #00AEEF);
    color: white;
    padding: 4rem 1rem;
    text-align: center;
    border-radius: 0;
}


.hero-section h2 {
    font-size: 2.2rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 1.5rem;
}


@media (min-width: 768px) {
    .hero-section h2 {
    font-size: 2rem;
}
}


section {
    padding: 2rem 0;
}


section h3 {
    text-align: center;
    font-size: 1.6rem;
    font-weight: 600;
    color: #F05423;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}


.btn-primary {
    display: inline-block;
    background-color:#F05423;
    color: white;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}


.btn-primary:hover {
    background-color:#E67E22;
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}


footer {
    background-color: #222222;
    color: white;
    text-align: center;
    padding: 2rem 0;
}


@media (min-width: 768px) {
    .hero-section h2 {
        font-size: 2rem;
    }

    section h3 {
        font-size: 1.8rem;
    }

    section p,
    section ul {
        font-size: 1.2rem;
    }

    section {
        padding: 4rem 0;
    }
}


section {
    border-radius: 12px;
    background-color: #f9f9f9;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    margin-bottom: 2rem;
}


section:not(:last-of-type) {
    border-bottom: 1px solid #e0e0e0;
}


section p,
section ul {
    margin-top: 1rem;
    line-height: 1.8;
    color: #444;
}


section ul li {
    margin-bottom: 0.5rem;
}


section:nth-child(even) {
    background-color: #f9f9f9;
}


section {
    border-radius: 8px;
}


section h3 i {
    margin-right: 0.5rem;
    color: #F05423;
}


.header-content {
    display: flex;
    align-items: center;
    background-color: #007ACC;
    justify-content: flex-start;
}


.logo-img {
    height: 120px;
    margin-right: 1.5rem;
}


@media (max-width: 768px) {
    .header .logo {
        font-size: 1.5rem;
    }

    .hero-section h2 {
        font-size: 1.2rem;
        padding: 0 1rem;
    }

    section {
        padding: 1.5rem 0;
    }

    .btn-primary {
        width: 100%;
        text-align: center;
    }
}


@media (max-width: 480px) {
    .container {
        padding: 0 0.5rem;
    }

    .logo-img {
        height: 40px;
    }

    header .logo {
        font-size: 1.3rem;
    }
}


ul li i {
    color: #007ACC;
    margin-right: 0.5rem;
}


.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease forwards;
}


@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


.footer-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1rem;
  padding: 0;
}


.footer-logo {
  height: 60px;
  display: block;
  margin: 0;
}


.about-section p {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}