body {
    font-family: 'Segoe UI', sans-serif;
    margin: 0;
    background-color: #fff9f4;
    color: #333;
  }
  
  .navbar {
    display: flex;
    justify-content: space-between;
    padding: 20px 40px;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  }
  .logo img {
    width: 120px;  /* Adjust as needed */
    height: auto;  /* Maintains aspect ratio */
  }
  .navbar .logo {
    font-weight: bold;
    font-size: 1.2rem;
  }
  
  .navbar nav a {
    margin-left: 20px;
    text-decoration: none;
    color: #000;
    font-weight: 500;
  }
  
  .revenue-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 60px 40px;
    gap: 40px;
  }
  
  .text-content {
    flex: 1;
    max-width: 600px;
  }
  
  .text-content h1 {
    font-size: 2.2rem;
    margin-bottom: 20px;
  }
  
  .text-content p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 16px;
  }
  
  .text-content button {
    padding: 10px 20px;
    background-color: #ffc107;
    color: #000;
    font-weight: bold;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .text-content button:hover {
    background-color: #e0a800;
  }
  
  .image-content img {
    width: 100%;
    max-width: 400px;
    border-radius: 10px;
  }
  /* 2nd section */

  body {
    font-family: 'Segoe UI', sans-serif;
    margin: 0;
    padding: 0;
    background: linear-gradient(to bottom, #ffffff, #f7f3ff);
    color: #000;
  }
  
  .pillars-section {
    padding: 60px 20px;
  }
  
  .container {
    max-width: 1100px;
    margin: 0 auto;
  }
  
  .section-title {
    text-align: center;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 40px;
  }
  
  .section-title .highlight {
    color: #f59e0b;
    font-weight: 600;
  }
  
  .pillar-cards {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }
  
  .pillar-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
    flex-wrap: wrap;
  }
  
  .pillar-card:nth-child(even) {
    flex-direction: row-reverse;
  }
  
  .card-content {
    flex: 1;
    min-width: 280px;
  }
  
  .card-content h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
  }
  
  .card-content p {
    font-size: 15px;
    line-height: 1.6;
  }
  
  .card-visual {
    flex: 1;
    min-width: 280px;
    height: 160px;
    background-size: cover;
    background-position: center;
    border-radius: 10px;
  }
  

  /* third section */
  .card-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding-top: 40px;
  }
  
  .card {
    background: white;
    padding: 20px;
    border-radius: 10px;
    width: calc(33.333% - 13.33px);
    min-width: 260px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
  }
  
  .card img {
    width: 30px;
    height: 30px;
    background: #e8f7ef;
    border-radius: 8px;
    padding: 5px;
    margin-bottom: 15px;
  }
  
  .card h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
  }
  
  .card p {
    font-size: 14px;
    color: #555;
    line-height: 1.5;
  }
  

/* forth section */
.faq-section {
    padding-top: 60px;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
  }
  
  .faq-section h4 {
    color: green;
    font-size: 14px;
    margin-bottom: 5px;
    font-weight: 600;
  }
  
  .faq-section h2 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 30px;
  }
  
  .faq-item {
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    margin-bottom: 15px;
    overflow: hidden;
    text-align: left;
  }
  
  .faq-question {
    width: 100%;
    padding: 20px;
    font-weight: 600;
    font-size: 15px;
    background: none;
    border: none;
    outline: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .faq-answer {
    padding: 0 20px 20px;
    font-size: 14px;
    color: #555;
    display: none;
    line-height: 1.6;
  }
  
  .faq-item.active .faq-answer {
    display: block;
  }
  /* footer */
  .footer {
    background-color: #2d2d2d;
    color: white;
    padding: 40px 20px;
    font-family: 'Inter', sans-serif;
  }
  
  .footer-top {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
    max-width: 1000px;
    margin: 0 auto;
  }
  
  .footer-logo {
    width: 150px;
    height: auto;
  }
  
  .footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
  }
  
  .footer-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
  }
  
  .footer-email {
    color: white;
    font-size: 14px;
  }
  
  .footer-divider {
    margin: 24px 0;
    border-color: #444;
  }
  
  .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
    flex-wrap: wrap;
  }
  
  .footer-copy {
    font-size: 13px;
    color: #ccc;
  }
  
  .footer-socials a {
    margin-left: 16px;
  }
  
  .footer-socials img {
    width: 18px;
    height: 18px;
  }
  