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

body {
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  min-height: 100vh;
}

header {
  margin-bottom: 30px;
  padding-bottom: 20px;
}

h1 {
  margin-bottom: 10px;
  font-size: 2.5rem;
}

h2 {
  margin: 25px 0 15px 0;
  font-size: 1.8rem;
  padding-left: 15px;
}

h3 {
  margin: 20px 0 10px 0;
  font-size: 1.3rem;
}

h4 {
  margin: 15px 0 8px 0;
  font-size: 1.1rem;
}

p {
  margin-bottom: 15px;
  text-align: justify;
}

ul {
  margin: 15px 0;
  padding-left: 30px;
}

li {
  margin-bottom: 8px;
}

strong {
  color: #2c3e50;
  font-weight: 600;
}

a {
  color: #3498db;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #2980b9;
  text-decoration: underline;
}

section {
  margin-bottom: 30px;
  padding: 20px;
  border-radius: 8px;
}

footer {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 2px solid #e9ecef;
  text-align: center;
}

.domain-name {
  text-decoration: none;
  color: inherit;
  font-weight: 600;
  color: #3498db;
}

.domain-link {
  color: #3498db;
  font-weight: 600;
}

.mail-link {
  color: #3498db;
  font-weight: 600;
}

@media (max-width: 768px) {
  .container {
    padding: 15px;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  section {
    padding: 15px;
  }
}


footer p {
  text-align: center;
}

.thank-you-button {
  display: block;
  margin-top: 20px;
  text-align: center;
}

.thank-you-container {
  display: grid;
  place-items: center;
  gap: 20px;
}

.thank-you-title {
  font-size: 2rem;
  font-weight: 600;
  text-align: center;
}

.thank-you-message {
  font-size: 1.5rem;
  text-align: center;
}

/* Progress Bar Styles */
.progress-bar {
  width: 100%;
  height: 20px;
  background-color: #e9ecef;
  border-radius: 10px;
  overflow: hidden;
  margin-top: 10px;
}

.progress-fill {
  height: 100%;
  background-color: #2ecc71;
  transition: width 0.3s ease;
  width: 0%;
}

.progress-fill {
  width: var(--progress-width, 0%);
}

/* Thank You Page Styles */
.thank-you-container {
  text-align: center;
  padding: 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.thank-you-title {
  color: #2E7D32;
  margin-bottom: 1rem;
  font-size: 2.5rem;
}

.thank-you-message {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: #666;
  line-height: 1.6;
}

.contact-summary {
  background-color: #f8f8f8;
  border-radius: 12px;
  padding: 2rem;
  margin: 2rem 0;
  text-align: left;
}

.contact-summary h3 {
  color: #2E7D32;
  margin-bottom: 1rem;
  text-align: center;
}

.summary-item {
  margin-bottom: 0.8rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid #e0e0e0;
}

.summary-item:last-child {
  border-bottom: none;
}

.next-steps {
  background-color: rgba(46, 125, 50, 0.1);
  border-radius: 12px;
  padding: 2rem;
  margin: 2rem 0;
  text-align: left;
}

.next-steps h3 {
  color: #2E7D32;
  margin-bottom: 1rem;
  text-align: center;
}

.next-steps ul {
  list-style: none;
  padding: 0;
}

.next-steps li {
  margin-bottom: 0.8rem;
  padding-left: 1.5rem;
  position: relative;
}

.next-steps li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #2E7D32;
  font-weight: bold;
}

.thank-you-icon {
  font-size: 4rem;
  color: #2E7D32;
  margin: 2rem 0;
}

.thank-you-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.btn {
  display: inline-block;
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary {
  background-color: #2E7D32;
  color: white;
}

.btn-primary:hover {
  background-color: #1B5E20;
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: transparent;
  color: #2E7D32;
  border: 2px solid #2E7D32;
}

.btn-secondary:hover {
  background-color: #2E7D32;
  color: white;
}