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

body, html {
  font-family: 'Segoe UI', sans-serif;
  height: 100vh;
  background-color: #f5f5f5;
}

.container {
  display: flex;
  flex-direction: row;
  height: 100vh;
}

.left-section {
  width: 45%;
  background-color:#e9ded3; 
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px;
  text-align: center;
}

.logo {
  width: 500px;
  margin-bottom: 50px;
}

.tagline {
  font-size: 16px;
  color: #444;
  margin-top: 10px;
}

.right-section {
  width: 55%;
  background-color: #2d3f50;
  color: white;
  padding: 40px;
  display: flex;
  overflow-y: auto;
  flex-direction: column;
  justify-content: space-between;
}

.navbar {
  display: flex;
  justify-content: flex-end;
  gap: 30px;
  font-size: 16px;
  margin-bottom: 40px;
}

.navbar a {
  text-decoration: none;
  color: white;
}

.navbar a:hover {
  text-decoration: underline;
}

.welcome h2 {
  font-size: 28px;
  margin-bottom: 15px;
color: #B8AA6E;
}

.welcome h3 {
  font-size: 18px;
  margin-bottom: 10px;
color: #B8AA6E;
}

.cta-row {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  padding: 16px 40px;
  background:#2d3f50;
  
}

.btn {
  padding: 10px 20px;
  border: none;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}

.btn:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.btn:active {
  transform: translateY(0);
}

.btn {
  background-color: #B8AA6E;
  color: #B8AA6E:
 }

.btn.secondary {
  background-color: #B8AA6E;
  color: #333;
}

  .cta-row {
    justify-content: center;
  }

ul {
  list-style: none; /* removes the default bullets/dots */
  padding: 0;
  margin: 0;
}

.features-list li {
  font-size: 16px;
  line-height: 1.6;
  position: relative;
  padding-left: 24px;
 
}

li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #B8AA6E;
  font-weight: bold;
}

.highlight {
      font-weight: bold;
      color: #B8AA6E;
    }

.welcome p {
  line-height: 1.3;
  font-size: 14px;
   overflow-y: auto;
  padding-right: 15px;
  margin-bottom: 10px; 
  max-height: calc(100vh - 100px);
}

.contact {
  margin-top: 30px;
}

.social-icons a {
  color: #B8AA6E;
  margin-right: 15px;
  font-size: 20px;
}

.social-icons a:hover {
  color: #ffa726;
}
.flag-marquee {
  overflow: hidden;
  background-color: #e9ded3;
  padding: 10px 0;
  margin-top: 30px;
  border-top: 2px solid #ccc;
  border-bottom: 2px solid #ccc;
}

.flag-track {
  display: flex;
  gap: 4px;
  animation: scrollFlags 30s linear infinite;
}

.flag-track img {
  height: 18px;
  width: auto;
  border-radius: 2px;
}

@keyframes scrollFlags {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}
/* Mobile Responsive */
    @media (max-width: 768px) {
      .container {
        flex-direction: column;
      }

      .left-section,
      .right-section {
        width: 100%;
      }

      .navbar {
        justify-content: center;
      }

      .logo {
        max-width: 200px;
      }

      .flag-track img {
        width: 40px;
      }
    }
  </style>
