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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
}

/* Hero Section */
.hero {
  height: auto;
  width: 100%;
  position: relative;
  padding: 0;
  margin: 0;
}

.hero picture {
  width: 100%;
  display: block;
  margin: 0;
}

.hero img {
  width: 100%;
  height: auto;
  display: block;
  margin: 0;
}

.cta-button {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: #d5ff26;
  color: #000;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.2rem;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(196, 255, 0, 0.3);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(196, 255, 0, 0.4);
  background: #ffffff;
}

/* Contact Section */
.contact-section {
  background: #d5ff26;
  padding: 4rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-container {
  max-width: 600px;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
}

.contact-title {
  font-size: 2.5rem;
  font-weight: 900;
  color: #000;
  text-align: center;
  margin-bottom: 1rem;
  text-transform: uppercase;
  white-space: nowrap;
}

.contact-subtitle {
  font-size: 1.1rem;
  color: #666;
  text-align: center;
  margin-bottom: 2.5rem;
}

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

.form-label {
  display: block;
  font-weight: 600;
  color: #333;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-input {
  width: 100%;
  padding: 1rem 1.5rem;
  border: 3px solid #e0e0e0;
  border-radius: 12px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: #ffffff;
  font-family: inherit;
}

.form-input:focus {
  outline: none;
  border-color: #d5ff26;
  box-shadow: 0 0 0 4px rgba(196, 255, 0, 0.1);
  transform: translateY(-2px);
}

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

.submit-btn {
  width: 100%;
  padding: 1.2rem;
  background: linear-gradient(135deg, #000000 0%, #333333 100%);
  color: #d5ff26;
  border: none;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 1rem;
}

.submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
  background: linear-gradient(135deg, #333333 0%, #000000 100%);
}

.submit-btn:active {
  transform: translateY(0);
}

.status-message {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: 8px;
  text-align: center;
  font-weight: 600;
  display: none;
}

.status-success {
  background: rgba(76, 175, 80, 0.1);
  color: #4CAF50;
  border: 2px solid #4CAF50;
}

.status-error {
  background: rgba(244, 67, 54, 0.1);
  color: #F44336;
  border: 2px solid #F44336;
}

/* hpot field - hidden from users but visible to bots */
.hpot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero {
    padding: 0;
  }
  
  .hero img {
    border: none;
  }
  
  .logo {
    width: 120px;
    height: 120px;
    margin-bottom: 2rem;
  }
  
  .logo-text {
    font-size: 2rem;
  }
  
  .contact-container {
    padding: 2rem 1.5rem;
    margin: 1rem;
  }
  
  .contact-title {
    font-size: 1.5rem;
  }
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}
