.cta-section {
  padding: 10rem 2rem; /* Increased from 6rem to 10rem */
  margin-top: 150px; /* Pushes it further down */
  margin-bottom: 150px; /* Adds space after */
  text-align: center;
  background: #000;
  color: #fff;
}

.cta-container h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
}

.cta-container p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: #ccc;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(66, 150, 210, 0.2);
}

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

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(66, 150, 210, 0.3);
  border-radius: 4px;
  color: #fff;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-group textarea {
  min-height: 150px;
  resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #4296d2;
  box-shadow: 0 0 10px rgba(66, 150, 210, 0.2);
}

.cta-button {
  display: inline-block;
  padding: 1rem 2rem;
  font-size: 1.2rem;
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
  border-radius: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.cta-button:hover {
  background: #fff;
  color: #000;
  transform: translateY(-2px);
}

/* Responsive styles */
@media (max-width: 768px) {
  .contact-form {
    padding: 1.5rem;
  }
  
  .cta-container h2 {
    font-size: 2rem;
  }
  
  .cta-container p {
    font-size: 1rem;
  }
}
