body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #f9f9f9;
  padding: 40px;
  color: #333;
}

.container {
  background-color: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 30px 40px;
  max-width: 1000px;
  margin: auto;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 80px;
}

.header h2 {
  font-size: 36px;
  font-weight: 600;
  margin: 0;
  display: flex;
  align-items: center;
  color: #000;
}
.header h2 img{
  width: 100px;
}

.btn {
  background: linear-gradient(to right, green 50%, #e0e0e0 50%);
  background-size: 200% 100%;
  background-position: right bottom;
  border: none;
  padding: 25px;
  border-radius: 4px;
  font-size: 18px;
  cursor: pointer;
  color: #000; /* text color before hover */
  transition: background-position 0.4s ease, color 0.4s ease;
}

.btn:hover, .one-time-checkout button.btn:hover {
  background-position: left bottom;
  color: #fff; /* text color after hover */
}

.section-title {
  font-size: 30px;
  font-weight: 600;
  margin-top: 20px;
  margin-bottom: 15px;
}

.text-link {
  color: #000;
  text-decoration: underline;
  font-size: 22px;
  font-weight: 500;
}

.info-text {
  font-size: 20px;
  color: #666;
  margin-top: 10px;
}
.info-text strong, .info-text a{
  font-size: 20px;
  color: #000;
  margin-top: 10px;
}

.summary {
  margin-top: 25px;
  font-size: 20px;
  display: flex;
  align-items: center;
  gap: 25px;
}

.one-time-checkout {
  padding-top: 30px;
}
.one-time-checkout button.btn {
    color: #fff;
    padding: 30px;
    font-size: 20px;
    background: linear-gradient(to right, green 50%, #000 50%);
    background-size: 200% 100%;
    background-position: right bottom;
    transition: background-position 0.4s ease, color 0.4s ease;
}
.text-center {
    text-align: center;
}
.one-time-checkout p, .one-time-checkout a{
  font-size: 18px;
  color: #ed1a1a;
}