/* Global Reset */
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: 'Inter', Arial, sans-serif; /* Modern, legible font */
}

/* Main Container */
#main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

/* Header */
header {
  background: #f7f9fc; /* Softer, modern color */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Slight elevation effect */
}

header .header {
  padding: 30px 0 20px;
  text-align: center; /* Centered header for a clean look */
}

/* Section Styling */
section {
  background: #fafafa; /* Light background for better readability */
  padding: 40px 20px; /* Better spacing */
  border-radius: 8px; /* Smooth corners for sections */
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

/* Step Component */
.step {
  background: #96154a; /* Richer, deeper purple */
  color: #fff;
  border-radius: 8px;
  padding: 20px;
}

.step span, .titre span {
  font-size: 14px;
  font-weight: 500;
  list-style: none;
  color: #ffffff;
}

.step ul li span {
  background: #ffffff;
  color: #96154a;
  padding: 4px 8px;
  text-align: center;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 700;
}

.step ul li .none {
  color: #cccccc;
  background: #96154a;
  border: 1px solid #cccccc;
}

/* Left Content */
.left .content {
  font-size: 14px;
  line-height: 1.6; /* Better readability */
  color: #333;
}

.left .contentt {
  padding: 0 20px;
}

/* Title Section */
.titre {
  background: #96154a;
  padding: 15px;
  border-radius: 8px;
  color: #333;
  text-align: center;
}

/* Billing Form */
.billing label {
  font-weight: 700;
  display: block;
  margin-bottom: 5px;
  color: #96154a;
}

.form-control {
  border: 1px solid #96154a;
  border-radius: 4px;
  padding: 8px 12px;
}

.billing form span {
  font-size: 12px;
  color: #666;
}

.billing .btn button {
  font-size: 16px;
  background: #ff6200;
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  color: #ffffff;
  cursor: pointer;
  transition: background 0.3s ease;
}

.billing .btn button:hover {
  background: #e45528; /* Darker shade for hover effect */
}

/* Free Section */
.free span {
  font-size: 14px;
  color: #aaaaaa;
}

/* Left Heading */
.left h3 {
  color: #333;
  font-size: 20px;
  margin-bottom: 10px;
}

/* Footer */
footer {
  background: #E6E6E6;
  padding: 20px 0;
  border-top: 1px solid #96154a;
}

footer .navv ul li, .footer-right span, footer p {
  font-size: 13px;
  color: #96154a;
  line-height: 1.5;
}

footer .footer-left {
  border-right: 1px solid #cccccc;
  padding-right: 20px;
}

footer .bottom ul li {
  display: inline-block;
  border-left: 1px solid #666;
  font-size: 13px;
  color: #ffffff;
  padding: 0 10px;
}

/* Error Messages */
.error {
  color: #ff4d4f;
  font-size: 13px;
}

/* Media Queries */
@media (max-width: 750px) {
  header, section, footer, section form {
    padding: 0 10px;
  }

  footer .footer-left {
    border-right: none;
    padding-right: 0;
  }

  .step span {
    font-size: 12px;
  }

  .left .contentt {
    padding: 0;
  }
}
