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

body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #f8f9fc;
  color: #333;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background: #fff;
  color: #000;
}

.logo {
  display: flex;
  flex-direction: column;
  font-size: 0.85rem;
}

.logo img {
  height: 50px;
}

nav a {
  margin: 0 1rem;
  text-decoration: none;
  color: #000;
  cursor: pointer;
  font-weight: 500;
}

/* .nav a {
  background-color:#FDC805;
  color: white;
} */

/* nav a:first-child {
  color: red;
} */

.actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.btn {
  padding: 0.6rem 1rem;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
}

.btn.yellow {
  background-color:#FDC805;
  color: white;
}

.lang {
  padding: 0.4rem;
  border-radius: 5px;
}

.about-section {
  background-color: #f4f6fc;
  padding: 60px 20px;
}

.about-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.about-text {
    color: #000;
  flex: 1;
  min-width: 300px;
  padding: 20px;
}

.about-text h1 {
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 10px;
}

.about-text p {
  font-size: 1rem;
  color: #555;
}

.about-image {
  flex: 1;
  min-width: 300px;
  padding: 20px;
  display: flex;
  justify-content: center;
}

.about-image img {
  width: 100%;
  max-width: 500px;
  height: auto;
  object-fit: contain;
}

/* Responsive */
@media (max-width: 768px) {
  .about-container {
    flex-direction: column;
    text-align: center;
  }

  .about-text h1 {
    font-size: 2rem;
  }

  .about-text, .about-image {
    padding: 10px;
  }
}


.about-oneseco {
  padding: 60px 20px;
  text-align: center;
  max-width: 1200px;
  margin: auto;
}

.about-title h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  font-weight: 600;
}

.about-title h2 span {
  color: #FDC805;
}

.about-title p {
  font-size: 1.1rem;
  color: #444;
  max-width: 950px;
  margin: 0 auto 40px auto;
}

.features {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

.feature {
  flex: 1 1 250px;
  max-width: 300px;
  text-align: center;
}

.icon-circle {
  background-color: #fdeeee;
  border-radius: 50%;
  width: 70px;
  height: 70px;
  margin: 0 auto 15px auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-circle img {
  width: 35px;
  height: 35px;
}

.feature h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.feature p {
  color: #888;
  font-size: 0.95rem;
  padding: 0 10px;
}

/* Responsive */
@media (max-width: 768px) {
  .about-title h2 {
    font-size: 2rem;
  }

  .about-title p {
    font-size: 1rem;
  }

  .features {
    flex-direction: column;
    align-items: center;
  }

  .feature {
    max-width: 90%;
  }
}




.benefits-section {
  padding: 60px 20px;
  text-align: center;
}

.benefits-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: auto;
  margin-bottom: 60px;
}

.benefit-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 10px;
}

.benefit-item .icon {
  background: #fdecec;
  border-radius: 50%;
  padding: 20px;
  margin-bottom: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 70px;
  height: 70px;
}

.benefit-item .icon img {
  width: 40px;
  height: 40px;
}

.benefit-item h3 {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 10px;
  color: #1e1e1e;
}

.benefit-item p {
  font-size: 15px;
  color: #8b8b8b;
  line-height: 1.6;
}

.presence-text {
  max-width: 800px;
  margin: auto;
  padding-top: 30px;
}

.presence-text h2 {
  font-size: 28px;
  font-weight: 500;
  color: #2e2e2e;
  margin-bottom: 15px;
}

.presence-text h2 span {
  color: #FDC805;
  font-weight: 700;
}

.presence-text p {
  font-size: 16px;
  color: #5f5f5f;
  line-height: 1.6;
}

/* Responsive tweaks */
@media (max-width: 600px) {
  .benefit-item p {
    font-size: 14px;
  }

  .presence-text h2 {
    font-size: 24px;
  }

  .presence-text p {
    font-size: 14px;
  }
}


.office-info {
  text-align: center;
  padding: 40px 20px;
}

.office-info p {
    color: #000;
  font-size: 16px;
  line-height: 1.6;
}

.office-info h2 {
  font-size: 20px;
  font-weight: 500;
  margin: 10px 0;
  color: #000;
}

/* Responsive */
@media (max-width: 600px) {
  .office-info p {
    font-size: 14px;
  }

  .office-info h2 {
    font-size: 18px;
  }
}

.footer {
    position: relative;
    background-color: #ffcc00;
    color: black;
    padding: 60px 20px 20px;
    overflow: hidden;
  }

  .top-shape {
    position: absolute;
    top: -60px;
    left: 0;
    width: 100%;
    height: 140px;
    background-color: #ffcc00;
    clip-path: polygon(0 100%, 25% 0, 100% 40%, 100% 100%, 0% 100%);
  }

  .footer-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
  }

  .footer-logo img {
    width: 150px;
    margin-bottom: 10px;
  }

  .footer-logo p {
    margin-bottom: 20px;
    font-size: 14px;
  }

  .footer hr {
    border: none;
    height: 1px;
    background-color:white;
    margin: 20px 0;
  }

  .footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
  }

  .footer-column {
    flex: 1 1 200px;
  }

  .footer-column h4 {
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: bold;
  }

  .footer-column ul {
    list-style: none;
  }

  .footer-column ul li {
    margin-bottom: 10px;
  }

  .footer-column ul li a {
    text-decoration: none;
    color: black;
    font-size: 15px;
    transition: color 0.3s;
  }

  .footer-column ul li a:hover {
    color: #ddd;
  }

  .footer-bottom {
    text-align: center;
    margin-top: 30px;
    font-size: 14px;
    color: #fff;
  }

  /* Responsive Design */
  @media (max-width: 768px) {
    .footer-links {
      flex-direction: column;
    }

    .footer-column {
      text-align: center;
    }

    .footer-logo {
      text-align: center;
    }
}
