body {
  background: linear-gradient(135deg, #b68600, #2e2e2e);
  font-family: 'Poppins', sans-serif;
  color: #333;
}

.form-wrapper {
  background: #fff;
  width: 100%;
  max-width: 500px;
  border-radius: 12px;
}

.form-step {
  display: none;
}

.form-step.active {
  display: block;
  animation: fadeIn 0.5s ease-in-out;
}

.hidden {
  display: none;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.progress-bar {
  background-color: #f4b000 !important;
}

.hidden {
  display: none !important;
}

.form-step.active {
  display: block;
}

.form-check {
  margin-bottom: 10px;
}

.form-check-input {
  margin-right: 8px;
}

.form-check-label {
  cursor: pointer;
}

.progress {
  height: 10px;
}

.progress-bar {
  transition: width 0.3s ease-in-out;
}

.footer {
    background: linear-gradient(135deg, #4a4a4a 0%, #2d2d2d 100%);
    color: white;
    padding: 25px 0;
    margin-top: auto;
}

.footer-logo {
    max-width: 250px;
    height: auto;
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.contact-info {
    flex: 1;
    min-width: 280px;
}

.contact-info p {
    margin: 8px 0;
    font-size: 14px;
    line-height: 1.6;
}

.contact-info a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #ffa500;
}

.social-links {
    display: flex;
    gap: 15px;
    align-items: center;
}

.social-links a {
    color: white;
    font-size: 24px;
    transition: all 0.3s ease;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
}

.social-links a:hover {
    background: #ffa500;
    transform: translateY(-3px);
    color: white;
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .contact-info {
        order: 1;
    }

    .social-links {
        order: 2;
        justify-content: center;
    }

    .footer-logo {
        max-width: 200px;
    }

    .contact-info p {
        font-size: 13px;
    }
}

@media (max-width: 576px) {
    .social-links a {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }

    .footer {
        padding: 20px 0;
    }
}
