:root {
  --primary-color: #1a73e8;
  --secondary-color: #ff6f00;
  --text-color: #333;
  --background-color: #f9f9f9;
}

/* General Styles */
body,
html {
  font-family: "Helvetica Neue", Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: var(--background-color);
  color: var(--text-color);
  height: 100%;
}

.wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Header */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  background: rgba(0, 0, 0, 0.9); /* Darker background for better contrast */
}

.logo {
  margin-left: 20px; /* Align logo to the far left */
}

.logo img {
  height: 100px; /* Increase logo size */
  object-fit: contain; /* Ensure proper scaling */
  background: none; /* Remove any visible background */
}

/* Navigation Styling */
.header .nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
}

.header .nav ul li a {
  text-decoration: none;
  color: white; /* White for better visibility */
  font-size: 1em;
}

.header .nav ul li a:hover {
  color: var(--secondary-color); /* Add hover effect */
}

/* Hero Section */
.hero {
  text-align: center;
  padding: 50px 20px;
  background: var(--primary-color);
  color: #fff;
}

.hero h1 {
  font-size: 2.5em;
}

.hero p {
  font-size: 1.2em;
  margin: 20px 0;
}

.hero .btn {
  display: inline-block;
  padding: 10px 20px;
  background: var(--secondary-color);
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
}

/* Features */
.features {
  padding: 50px 20px;
  background: #fff;
}

.features h2 {
  text-align: center;
  margin-bottom: 30px;
}

.feature-cards {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.feature-card {
  flex: 1;
  padding: 20px;
  background: var(--background-color);
  border: 1px solid #ddd;
  border-radius: 5px;
  text-align: center;
}
.feature-icon {
  width: 75px;
  height: 75px;
  margin-bottom: 10px;
}
/* Main Content */
.main-content {
  flex: 1;
  padding: 20px 0;
}

.main-content .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.main-content h1 {
  text-align: center;
  margin-bottom: 40px;
}

.main-content h2 {
  margin-top: 20px;
}

.main-content p,
.main-content ul {
  margin-bottom: 20px;
}

.feature {
  background-color: white;
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.solution {
  background-color: white;
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.solution-icon {
  width: 50px;
  height: 50px;
  margin-bottom: 10px;
}

.solution h2 {
  margin: 10px 0;
}

.solution p {
  margin: 0;
}

.pricing-plans {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.pricing-plan {
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  text-align: center;
  flex: 1 1 calc(33.333% - 40px);
  box-sizing: border-box;
}

.basic-plan {
  background-color: #ffebcd; /* Pastel color for Basic Plan */
}

.pro-plan {
  background-color: #e6e6fa; /* Pastel color for Pro Plan */
}

.enterprise-plan {
  background-color: #f0fff0; /* Pastel color for Enterprise Plan */
}

.pricing-plan h2 {
  margin-top: 0;
}

.pricing-plan ul {
  list-style: none;
  padding: 0;
}

.pricing-plan ul li {
  margin: 10px 0;
}

.contact-form {
  background-color: white;
  padding: 20px;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 5px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.btn {
  display: inline-block;
  padding: 10px 20px;
  background: var(--secondary-color);
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  border: none;
  cursor: pointer;
}

.success-message {
  margin-top: 20px;
  padding: 10px;
  background-color: #dff0d8;
  color: #3c763d;
  border: 1px solid #d6e9c6;
  border-radius: 5px;
  text-align: center;
}

/* Footer */
.footer {
  background-color: #333;
  color: white;
  text-align: center;
  padding: 10px 0;
}

.footer .container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer a {
  color: white;
  text-decoration: none;
  margin: 0 5px;
}

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

/* About Us Section */
.about-us {
  padding: 50px 20px;
  background-color: var(--background-color);
  color: var(--text-color);
}

.about-us h1,
.about-us h2 {
  text-align: center;
  margin-bottom: 20px;
}

.about-us p {
  font-size: 1.1em;
  line-height: 1.8;
  margin-bottom: 30px;
  text-align: center;
}

/* Team Section */
.team {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.team-member {
  text-align: center;
  max-width: 200px;
}

.team-member img {
  width: 100%;
  height: auto;
  border-radius: 50%;
  margin-bottom: 15px;
}

.team-member h3 {
  font-size: 1.2em;
  margin-bottom: 5px;
}

.team-member p {
  font-size: 1em;
  color: var(--text-color);
}

/* Call to Action Button */
.btn {
  display: inline-block;
  padding: 15px 30px;
  font-size: 1.1em;
  font-weight: bold;
  text-align: center;
  color: #fff;
  background: linear-gradient(90deg, #1a73e8, #4285f4);
  border: none;
  border-radius: 5px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}

.btn:hover {
  background: linear-gradient(90deg, #4285f4, #1a73e8);
  transform: translateY(-2px);
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.2);
}

.btn:focus {
  outline: 2px solid #fff;
  outline-offset: 3px;
  transform: scale(1.02);
}

/* Responsive Design */
@media (max-width: 768px) {
  .pricing-plan {
    flex: 1 1 100%;
  }
}
