.btn {
  display: inline-block;
  padding: 16px 42px;
  background: var(--primary);
  color: white;
  border-radius: 0;
  font-weight: 400;
  letter-spacing: 1.5px;
  transition: var(--transition);
  border: 1px solid var(--primary);
  cursor: pointer;
  font-size: 0.8rem;
  font-family: "Inter", sans-serif;
  text-transform: uppercase;
}

.btn:hover {
  background: transparent;
  color: var(--primary);
  transform: none;
}

.btn-secondary {
  background: transparent;
  color: var(--primary);
  border: 1px solid var(--primary);
}

.btn-secondary:hover {
  background: var(--primary);
  color: white;
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--primary);
  color: var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: white;
}

.btn-large {
  padding: 18px 50px;
  font-size: 0.85rem;
}

.btn-full {
  width: 100%;
}

.btn-small {
  padding: 12px 28px;
  border-radius: 8px;
  font-size: 0.75rem;
  text-decoration: none !important;
  color: white !important;
}

.btn-small:hover {
  background: transparent !important;
  color: white !important;
}

.nav a.btn {
  text-decoration: none !important;
}

.btn-primary {
  background: var(--primary);
  color: white;
  padding: 16px 42px;
  border-radius: 0;
  font-weight: 400;
  font-family: "Inter", sans-serif;
  border: 1px solid var(--primary);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.btn-primary:hover {
  background: transparent;
  color: var(--dark);
}

.btn-small:hover {
  color: var(--dark) !important;
}

.card {
  background: white;
  border-radius: 0;
  overflow: hidden;
  box-shadow: none;
  transition: var(--transition);
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.card:hover {
  transform: none;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.section-title {
  text-align: center;
  margin-bottom: 1.5rem;
  position: relative;
  font-weight: 400;
  letter-spacing: -0.01em;
}

.section-title:after {
  display: none;
}

.section-subtitle {
  text-align: center;
  /* max-width: 650px; */
  margin: 0 auto 5rem;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text);
  opacity: 0.7;
  font-weight: 300;
}

.image-placeholder {
  height: 400px;
  background: rgba(139, 107, 126, 0.08);
  border: 1px solid rgba(139, 107, 126, 0.15);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.1rem;
  gap: 1rem;
  font-family: "Inter", sans-serif;
  border-radius: 0;
  font-weight: 400;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  font-family: "Inter", sans-serif;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: var(--radius);
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  transition: var(--transition);
  background: var(--light);
  color: var(--text);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 2px rgba(139, 107, 126, 0.2);
}

/* Video Section */
.video-section {
  width: 100%;
  max-width: 1000px;
  margin: 4rem auto 2rem;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  position: relative;
  background: #1a1a1a;
  border: 4px solid rgba(255, 255, 255, 0.6);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-section:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.video-container {
  padding: 56.25% 0 0 0;
  position: relative;
  background-color: #000;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Cookie Consent Banner */
.cookie-consent-banner {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--dark, #1a1a1a);
  color: white;
  padding: 16px 24px;
  border-radius: var(--radius, 12px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  z-index: 9999;
  width: 90%;
  max-width: 800px;
  font-family: "Inter", sans-serif;
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: opacity 0.5s ease;
}

.cookie-consent-banner .cookie-content p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.5;
  color: #ddd;
}

.cookie-consent-banner .cookie-content a {
  color: white;
  text-decoration: underline;
  font-weight: 500;
}

.cookie-consent-banner .cookie-content a:hover {
  color: var(--primary, #c3a1b4);
}

.cookie-actions {
  flex-shrink: 0;
}

.cookie-actions .btn {
  background: white !important;
  color: black !important;
  border-color: white !important;
  margin: 0;
  font-weight: 500;
}

.cookie-actions .btn:hover {
  background: rgba(255, 255, 255, 0.8) !important;
  color: black !important;
}

@media (max-width: 600px) {
  .cookie-consent-banner {
    flex-direction: column;
    text-align: center;
    padding: 20px;
    bottom: 15px;
  }

  .cookie-actions {
    width: 100%;
  }

  .cookie-actions .btn {
    width: 100%;
  }
}