/* Container centers content with horizontal padding and margin */
.warranty-container {
  max-width: 640px;
  margin: 2rem auto;
  padding: 0 1rem;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: #333;
}

/* Card styling with subtle shadow and round corners */
.warranty-card {
  background-color: #fff;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  box-sizing: border-box;
}

/* Centered content container */
.text-center {
  text-align: center;
  margin-bottom: 1.5rem;
}

/* Icon color and spacing */
.icon-check {
  display: inline-block;
  color: #007bff; /* primary blue */
}

/* Title styling */
.title {
  font-size: 1.8rem;
  font-weight: 700;
  margin: 1rem 0 0.3rem;
  color: #222;
}

/* Badge style */
.badge {
  display: inline-block;
  background: #007bff;
  color: white;
  padding: 0.4rem 1.2rem;
  font-size: 1rem;
  border-radius: 20px;
  margin-bottom: 1.5rem;
  font-weight: 600;
  user-select: none;
}

/* Warranty list styles */
.warranty-list {
  list-style-type: none;
  padding-left: 0;
  margin: 0 0 2rem 0;
  line-height: 1.45;
  font-size: 1.05rem;
  color: #444;
}

.warranty-list li {
  margin-bottom: 1rem;
}

/* Bold label inside list */
.warranty-list strong {
  font-weight: 700;
  color: #222;
}

/* Button styles */
.support-btn {
  display: block;
  width: 100%;
  background-color: #007bff;
  color: white;
  font-weight: 600;
  font-size: 1.1rem;
  padding: 0.75rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  user-select: none;
}

.support-btn:hover,
.support-btn:focus {
  background-color: #0056b3;
  outline: none;
}

/* Footer text style */
.footer-text {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid #ddd;
  color: #666;
  font-size: 0.9rem;
  text-align: center;
  line-height: 1.4;
  user-select: none;
}

/* Email link style */
.email-link {
  color: #007bff;
  text-decoration: none;
  font-weight: 600;
}

.email-link:hover,
.email-link:focus {
  text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 480px) {
  .title {
    font-size: 1.5rem;
  }
  .badge {
    font-size: 0.9rem;
    padding: 0.3rem 1rem;
  }
  .support-btn {
    font-size: 1rem;
    padding: 0.6rem;
    border-radius: 6px;
  }
  .warranty-card {
    padding: 1.5rem 1rem;
  }
}
