/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body Styling */
body {
  font-family: 'Arial', sans-serif;
  background-color: #f9f9f9;
  line-height: 1.6;
  text-align: center;
}

/* Header Section */
.header-container {
  margin: 30px auto;
}

.animated-header {
  font-size: 3rem;
  font-weight: bold;
  text-transform: uppercase;
  color: #0c3572;
  border-bottom: 3px solid #0c3572;
  animation: slideIn 1.5s ease-out, bounce 1s ease-in-out 1.5s;
}

h1.title {
  text-align: center;
  font-size: 2.5rem;
  color: #000000;
  margin-top: 20px;
  margin-bottom: 30px;
}

/* Whitelabel Card */
.whitelabel-card {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

/* Card Container */
.cards {
  display: flex;
  justify-content: space-between;
  background-color: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  gap: 20px;
  flex-wrap: wrap;
}

/* Individual Card Section */
.card-sections {
  flex: 1;
  background-color: #ffffff;
  border-radius: 10px;
  padding: 20px;
  text-align: left;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-sections:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.card-sections h2 {
  font-size: 1.5rem;
  color: #000000;
  margin-bottom: 15px;
  border-bottom: 2px solid #0c3572;
  padding-bottom: 10px;
}

/* List Styling with Tick Marks */
.card-section ul {
  list-style: none;
  padding: 0;
}

.card-sections ul li {
  font-size: 1rem;
  margin: 10px 0;
  padding-left: 30px;
  position: relative;
  color: #555;
}

/* Tick Mark Icon */
.card-sections ul li::before {
  content: '✔';
  position: absolute;
  left: 0;
  top: 0;
  color: #0c3572;
  font-weight: bold;
}

/* Features Section */
.features-sections {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

/* Features Card */
.features-card {
  display: flex;
  justify-content: space-between;
  background-color: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  gap: 20px;
  flex-wrap: wrap;
}

/* Feature Columns */
.feature-column {
  flex: 1;
  background-color: #ffffff;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-column:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* List Styling */
.feature-column ul {
  list-style: none;
  padding: 0;
}

.feature-column ul li {
  font-size: 1rem;
  margin: 15px 0;
  color: #555;
  padding-left: 30px;
  position: relative;
}

/* Tick Mark Styling */
.feature-column ul li::before {
  content: '✔';
  position: absolute;
  left: 0;
  top: 0;
  color: #0c3572;
  font-weight: bold;
  font-size: 1.2rem;
}

/* Enterprise Section */
.enterprise-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

/* Enterprise Card */
.enterprise-card {
  display: flex;
  justify-content: space-between;
  background-color: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  gap: 20px;
  flex-wrap: wrap;
}

/* Features List */
.features-list {
  flex: 1;
  background-color: #ffffff;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.features-list:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* List Styling with Tick Marks */
.features-list ul {
  list-style: none;
  padding: 0;
}

.features-list ul li {
  font-size: 1rem;
  margin: 15px 0;
  padding-left: 30px;
  position: relative;
  color: #555;
}

/* Tick Mark Icon */
.features-list ul li::before {
  content: '✔';
  position: absolute;
  left: 0;
  top: 0;
  color: #0c3572;
  font-weight: bold;
  font-size: 1.2rem;
}

/* General Container for All Content */
.containeeer {
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  width: 100%;  /* Make the container take full width */
  max-width: 1500px; /* Set a max width for large screens */
  margin: 90px auto; /* Center container with margin auto */
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Header Section */
.header {
  text-align: center;
}

.header h1 {
  color: #2c3e50;
  font-size: 2rem; /* Add font size for better responsiveness */
}

/* Content Section */
.content {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 20px;
  margin-top: 20px;
  flex-wrap: wrap; /* Allow content to wrap on smaller screens */
}

/* Text Section */
.text {
  flex: 1;
  padding: 20px;
}

.text p {
  margin: 10px 0;
  color: #555;
}

/* Image Section */
.image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.image img {
  max-width: 100%;
  border-radius: 10px;
  height: auto;
}

/* Benefits Section */
.benefits {
  background-color: #0c3572;
  color: white;
  padding: 20px;
  border-radius: 10px;
  width: 60%;
  margin-top: 20px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.benefits ul {
  list-style: none;
  padding: 0;
}

.benefits ul li {
  margin: 10px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.benefits ul li i {
  margin-right: 10px;
}

/* Button Section */
.buttons {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.buttons button {
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
}

.choose-plan {
  background-color: #2c3e50;
  color: white;
}

.view-commission {
  background-color: #0c3572;
  color: white;
}

.document {
  display: none;
  margin-top: 20px;
  width: 100%;
}

/* Mobile and Tablet Responsive Design */
@media (max-width: 1024px) {
  .content {
    flex-direction: column;
    align-items: center;
  }
  .text, .image {
    padding: 10px;
    width: 100%;
  }
  .benefits {
    width: 80%;
  }
}

@media (max-width: 768px) {
  .header h1 {
    font-size: 1.8rem;
  }

  .buttons {
    flex-direction: column;
  }

  .buttons button {
    width: 100%;
    margin-bottom: 10px;
  }
}

@media (max-width: 480px) {
  .text p {
    font-size: 14px;
  }

  .benefits {
    width: 90%;
  }

  .content {
    flex-direction: column;
    gap: 15px;
  }

  .buttons {
    margin-top: 20px;
    flex-direction: column;
  }
}
