/* Site Builder Generated Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  color: #333;
}

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

/* Header */
header {
  background: white;
  border-bottom: 1px solid #e0e0e0;
  padding: 20px 0;
}

header nav {
  display: flex;
  align-items: center;
  gap: 20px;
}

.logo {
  height: 50px;
  width: auto;
}

header h1 {
  font-size: 24px;
  color: #0044cc;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0044cc 0%, #001199 100%);
  color: white;
  text-align: center;
}

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0.3;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero h2 {
  font-size: 48px;
  margin-bottom: 20px;
}

.tagline {
  font-size: 24px;
  opacity: 0.9;
}

/* Sections */
section {
  padding: 60px 20px;
}

section h2 {
  font-size: 36px;
  margin-bottom: 30px;
  color: #0044cc;
}

.content {
  font-size: 18px;
  line-height: 1.8;
}

/* Contact Form */
.contact-form {
  max-width: 600px;
  margin: 0 auto 40px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 16px;
  font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #0044cc;
}

.btn-submit {
  background: #0044cc;
  color: white;
  border: none;
  padding: 14px 40px;
  font-size: 18px;
  border-radius: 4px;
  cursor: pointer;
  transition: opacity 0.2s;
}

.btn-submit:hover {
  opacity: 0.9;
}

.contact-info {
  text-align: center;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid #e0e0e0;
}

.contact-info p {
  margin-bottom: 10px;
  font-size: 18px;
}

/* Footer */
footer {
  background: #f5f5f5;
  padding: 40px 20px;
  text-align: center;
}

footer p {
  margin-bottom: 10px;
}

.powered-by {
  font-size: 14px;
  color: #666;
}

.powered-by a {
  color: #0044cc;
  text-decoration: none;
}

/* Responsive */
@media (max-width: 768px) {
  .hero h2 {
    font-size: 32px;
  }
  
  .tagline {
    font-size: 18px;
  }
  
  section h2 {
    font-size: 28px;
  }
}
