@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap');

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

body {
  font-family: 'Roboto', sans-serif;
  background-color: #f0f2f5;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  color: #333;
  padding: 20px;
}

.payment-container, .warning-container {
  background-color: #ffffff;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
  max-width: 600px;
  width: 100%;
  padding: 40px 30px;
  text-align: center;
}

.logo {
  background-color: #2c3e50;
  padding: 10px;
  border-radius: 8px;
  display: inline-block;
  margin-bottom: 20px;
}

.logo img {
  max-width: 120px;
  height: auto;
  border: 2px solid #ffffff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.title {
  font-size: 22px;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 10px;
}

.price {
  font-size: 20px;
  color: #27ae60;
  font-weight: 700;
  margin-bottom: 20px;
}

.description {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 25px;
}

.security {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
  flex-wrap: wrap;
}

.security img {
  width: 35px;
  height: auto;
}

.stripe-button {
  margin: 0 auto 20px auto;
  max-width: 300px;
  width: 100%;
}

.contacts {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 25px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.contacts a {
  text-decoration: none;
  color: #2c3e50;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  transition: color 0.3s;
}

.contacts a:hover {
  color: #27ae60;
}

.contacts img {
  width: 20px;
  height: 20px;
}

.confidential, .warning-message p {
  font-size: 13px;
  color: #95a5a6;
  margin-top: 20px;
  text-align: center;
}

.footer-note {
  font-size: 13px;
  color: #95a5a6;
  margin-top: 10px;
  text-align: center;
}

.footer-links {
  margin-top: 10px;
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 13px;
  color: #95a5a6;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #27ae60;
}

.warning-message {
  margin-bottom: 20px;
}

.warning-message h1 {
  font-size: 24px;
  color: #e74c3c;
  margin-bottom: 10px;
}

.button {
  display: inline-block;
  padding: 10px 20px;
  background-color: #27ae60;
  color: #ffffff;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 500;
  transition: background-color 0.3s;
}

.button:hover {
  background-color: #219150;
}

@media (max-width: 600px) {
  .payment-container, .warning-container {
    padding: 25px 20px;
  }

  .logo img {
    max-width: 100px;
  }

  .title {
    font-size: 20px;
  }

  .price {
    font-size: 18px;
  }

  .description {
    font-size: 13px;
  }

  .security img {
    width: 30px;
  }

  .contacts {
    gap: 20px;
  }

  .footer-links {
    gap: 12px;
  }

  .warning-message h1 {
    font-size: 20px;
  }

  .button {
    padding: 8px 16px;
    font-size: 14px;
  }
}
