/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    sans-serif;
  line-height: 1.6;
  color: #1f2937;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  min-height: 100vh;
}

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

/* Header Styles */
.header {
  text-align: center;
  margin-bottom: 3rem;
  padding: 2rem 0;
}

.title {
  font-size: 4rem;
  font-weight: 900;
  color: white;
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.title-highlight {
  color: #fbbf24;
  display: inline-block;
  text-shadow: 0 4px 8px rgba(251, 191, 36, 0.3);
}

.title-emphasis {
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
  font-weight: 900;
  text-shadow: none;
}

.subtitle {
  font-size: 1.375rem;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 500;
  max-width: 700px;
  margin: 0 auto 2rem auto;
  line-height: 1.6;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.value-proposition {
  text-align: center;
  margin-bottom: 2.5rem;
}

.benefit-points {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.benefit {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  color: white;
  padding: 0.75rem 1.25rem;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.9rem;
  border: 2px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* Trust Signals */
.trust-signals {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  backdrop-filter: blur(10px);
}

.trust-item {
  text-align: center;
  color: white;
}

.trust-number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: #fbbf24;
  margin-bottom: 0.5rem;
}

.trust-label {
  display: block;
  font-size: 0.875rem;
  opacity: 0.9;
  font-weight: 500;
}

/* Main Content */
.main-content {
  background: white;
  border-radius: 16px;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 10px 10px -5px rgba(0, 0, 0, 0.04);
  overflow: hidden;
}

.form-container {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 2rem;
  padding: 3rem;
}

/* Form Styles */
.salary-form {
  max-width: 500px;
}

.form-group {
  margin-bottom: 2rem;
  position: relative;
}

.form-group:last-of-type {
  margin-bottom: 2.5rem;
}

.form-label {
  display: block;
  font-weight: 700;
  font-size: 1rem;
  color: #1f2937;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-input {
  width: 100%;
  padding: 1.25rem 1.5rem;
  border: 3px solid #e5e7eb;
  border-radius: 12px;
  font-size: 1.125rem;
  font-weight: 500;
  transition: all 0.3s ease;
  background: white;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.form-input:focus {
  outline: none;
  border-color: #667eea;
  background: white;
  box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.15), 0 4px 6px rgba(0, 0, 0, 0.1);
  transform: translateY(-1px);
}

.input-wrapper {
  position: relative;
}

.input-prefix {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: #6b7280;
  font-weight: 500;
  z-index: 1;
}

.salary-input {
  padding-left: 2.5rem;
}

.experience-select {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 0.5rem center;
  background-repeat: no-repeat;
  background-size: 1.5em 1.5em;
  padding-right: 2.5rem;
  appearance: none;
}

.experience-select:focus {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%23667eea' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
}

.experience-info {
  background: linear-gradient(135deg, #f0f4ff 0%, #e0e7ff 100%);
  border-left: 4px solid #667eea;
  font-weight: 600;
}

.experience-info .comparison-label {
  color: #4338ca;
}

.experience-info .comparison-value {
  color: #3730a3;
}

.form-help {
  font-size: 0.875rem;
  color: #6b7280;
  margin-top: 0.5rem;
}

.submit-btn {
  width: 100%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border: none;
  padding: 1.5rem 2.5rem;
  border-radius: 16px;
  font-size: 1.375rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 16px rgba(102, 126, 234, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: 3px solid transparent;
}

.submit-btn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 24px rgba(102, 126, 234, 0.4);
  background: linear-gradient(135deg, #5a67d8 0%, #6b46c1 100%);
}

.submit-btn:active {
  transform: translateY(-1px) scale(1.01);
  box-shadow: 0 6px 12px rgba(102, 126, 234, 0.3);
}

.submit-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
  box-shadow: 0 4px 8px rgba(102, 126, 234, 0.2);
}

.loading-spinner {
  display: none;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: white;
  animation: spin 1s ease-in-out infinite;
  margin-left: 10px;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.btn-text {
  display: inline-block;
}

/* Enhanced Navigation Button */
.nav-back-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  color: white;
  text-decoration: none;
  padding: 0.875rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  margin-top: 1.5rem;
}

.nav-back-btn:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
  color: white;
  text-decoration: none;
}

.nav-back-btn:active {
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.nav-back-btn .back-icon {
  font-size: 1.1rem;
  transition: transform 0.3s ease;
}

.nav-back-btn:hover .back-icon {
  transform: translateX(-2px);
}

/* Salary Guide Section */
.salary-guide-section {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  padding: 4rem 0;
  margin: 3rem 0;
}

.guide-content {
  max-width: 800px;
  margin: 0 auto;
}

.guide-intro {
  text-align: center;
  margin-bottom: 3rem;
}

.guide-intro p {
  font-size: 1.125rem;
  color: #374151;
  line-height: 1.7;
}

.guide-sections {
  display: grid;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.guide-section {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  border: 1px solid #e5e7eb;
}

.guide-section h3 {
  color: #1f2937;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.guide-section p {
  color: #4b5563;
  line-height: 1.6;
  margin-bottom: 0;
}

.guide-section ul {
  margin: 1rem 0 0 0;
  padding-left: 1.5rem;
}

.guide-section li {
  color: #4b5563;
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

.guide-section li strong {
  color: #1f2937;
  font-weight: 600;
}

.guide-cta {
  text-align: center;
  background: white;
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  border: 2px solid #667eea;
}

.guide-cta h3 {
  color: #667eea;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.guide-cta p {
  color: #4b5563;
  font-size: 1.125rem;
  line-height: 1.6;
  margin: 0;
}

/* Ad Spaces */
.ad-space {
  background: #f3f4f6;
  border: 2px dashed #d1d5db;
  border-radius: 8px;
  padding: 1rem;
  text-align: center;
  margin: 1rem 0;
}

.header-ad {
  margin-bottom: 2rem;
  min-height: 90px;
}

.sidebar-ad {
  min-height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bottom-ad {
  margin-top: 2rem;
  min-height: 90px;
}

/* Results Section */
.results-section {
  padding: 3rem;
  border-top: 1px solid #e5e7eb;
  background: #f9fafb;
}

.results-container {
  max-width: 800px;
  margin: 0 auto;
}

.result-content {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.hidden {
  display: none;
}

/* Result Status Styles */
.result-underpaid {
  border-left: 4px solid #ef4444;
}

.result-fair {
  border-left: 4px solid #10b981;
}

.result-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.result-underpaid .result-title {
  color: #dc2626;
}

.result-fair .result-title {
  color: #059669;
}

.result-details {
  font-size: 1rem;
  line-height: 1.8;
  color: #4b5563;
}

.salary-comparison {
  background: #f3f4f6;
  padding: 1.5rem;
  border-radius: 8px;
  margin: 1.5rem 0;
}

.comparison-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}

.comparison-label {
  font-weight: 500;
}

.comparison-value {
  font-weight: 600;
  color: #1f2937;
}

/* FAQ Section Styles */
.faq-section {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  padding: 4rem 0;
  margin-top: 3rem;
}

.faq-section h2 {
  text-align: center;
  color: #1e293b;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 3rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.faq-item {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.faq-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.15);
  border-color: #667eea;
}

.faq-item h3 {
  color: #1e293b;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  line-height: 1.4;
}

.faq-item p {
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

/* About Page Styles */
.about-hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  text-align: center;
  padding: 4rem 0;
}

.about-hero h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.hero-subtitle {
  font-size: 1.25rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.about-content {
  padding: 4rem 0;
}

.about-grid {
  display: grid;
  gap: 3rem;
  max-width: 800px;
  margin: 0 auto;
}

.about-section h2 {
  color: #1e293b;
  font-size: 1.75rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  border-bottom: 2px solid #667eea;
  padding-bottom: 0.5rem;
}

.about-section p {
  color: #64748b;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.about-section ul {
  color: #64748b;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

.about-section li {
  margin-bottom: 0.5rem;
}

.about-section a {
  color: #667eea;
  text-decoration: none;
  font-weight: 500;
}

.about-section a:hover {
  text-decoration: underline;
}

/* Location Insights Section */
.location-insights {
  background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
  padding: 4rem 0;
  margin-top: 3rem;
}

.location-insights h2 {
  text-align: center;
  color: #1e293b;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  text-align: center;
  color: #64748b;
  font-size: 1.125rem;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.location-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto 3rem;
}

.location-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.location-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(102, 126, 234, 0.15);
  border-color: #667eea;
}

.location-card h3 {
  color: #1e293b;
  font-size: 1.375rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.location-highlight {
  color: #667eea;
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
}

.location-card p {
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.location-stats {
  list-style: none;
  padding: 0;
  margin: 0;
}

.location-stats li {
  color: #475569;
  padding: 0.5rem 0;
  border-bottom: 1px solid #f1f5f9;
  font-size: 0.9rem;
}

.location-stats li:last-child {
  border-bottom: none;
}

.location-stats strong {
  color: #1e293b;
}

.location-cta {
  text-align: center;
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  border: 2px solid #667eea;
  max-width: 600px;
  margin: 0 auto;
}

.location-cta p {
  color: #1e293b;
  font-size: 1.125rem;
  margin: 0;
}

/* Industry Insights Section */
.industry-insights {
  background: linear-gradient(135deg, #fefefe 0%, #f8fafc 100%);
  padding: 4rem 0;
  margin-top: 3rem;
}

.industry-insights h2 {
  text-align: center;
  color: #1e293b;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto 3rem;
}

.industry-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.industry-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(102, 126, 234, 0.15);
  border-color: #667eea;
}

.industry-card h3 {
  color: #1e293b;
  font-size: 1.375rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.industry-highlight {
  color: #667eea;
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
}

.industry-card p {
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.salary-ranges {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.salary-range {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem;
  background: #f8fafc;
  border-radius: 8px;
  border-left: 4px solid #667eea;
}

.salary-range .level {
  font-weight: 600;
  color: #1e293b;
  font-size: 0.875rem;
}

.salary-range .range {
  font-weight: 700;
  color: #059669;
  font-size: 0.875rem;
}

.industry-cta {
  text-align: center;
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  border: 2px solid #667eea;
  max-width: 600px;
  margin: 0 auto;
}

.industry-cta p {
  color: #1e293b;
  font-size: 1.125rem;
  margin: 0;
}

/* Footer */
.footer {
  margin-top: 3rem;
  padding: 2rem 0;
  text-align: center;
  color: rgba(255, 255, 255, 0.8);
}

.footer-text {
  font-size: 0.875rem;
  margin-bottom: 1rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
}

.footer-link {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.2s ease;
}

.footer-link:hover {
  color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
  .container {
    padding: 10px;
  }

  .title {
    font-size: 2.5rem;
  }

  .subtitle {
    font-size: 1.125rem;
  }

  .benefit-points {
    gap: 1rem;
  }

  .benefit {
    font-size: 0.8rem;
    padding: 0.6rem 1rem;
  }

  .form-container {
    grid-template-columns: 1fr;
    padding: 2rem 1.5rem;
  }

  .sidebar-ad {
    min-height: 150px;
  }

  .footer-links {
    flex-direction: column;
    gap: 1rem;
  }

  /* FAQ Mobile Styles */
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .faq-section h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
  }

  .faq-item {
    padding: 1.5rem;
  }

  /* Trust Signals Mobile */
  .trust-signals {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    padding: 1.5rem;
  }

  .trust-number {
    font-size: 1.5rem;
  }

  .trust-label {
    font-size: 0.75rem;
  }

  /* Location Insights Mobile */
  .location-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .location-insights h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
  }

  .location-card {
    padding: 1.5rem;
  }

  /* Industry Insights Mobile */
  .industry-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .industry-insights h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
  }

  .industry-card {
    padding: 1.5rem;
  }

  .salary-range {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
  }

  /* Navigation Button Mobile */
  .nav-back-btn {
    padding: 0.75rem 1.25rem;
    font-size: 0.875rem;
    margin-top: 1rem;
  }
}

@media (max-width: 480px) {
  .title {
    font-size: 2rem;
  }

  .subtitle {
    font-size: 1rem;
  }

  .benefit-points {
    flex-direction: column;
    gap: 0.75rem;
    align-items: center;
  }

  .benefit {
    font-size: 0.75rem;
    padding: 0.5rem 0.875rem;
  }

  .form-container {
    padding: 1.5rem 1rem;
  }

  .form-input {
    padding: 1rem 1.25rem;
    font-size: 1rem;
  }

  .submit-btn {
    padding: 1.25rem 2rem;
    font-size: 1.25rem;
  }

  .results-section {
    padding: 2rem 1rem;
  }
}

/* Contact Page Styles */
.contact-container {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
  padding: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-info {
  background: #f8fafc;
  padding: 2rem;
  border-radius: 12px;
  height: fit-content;
}

.contact-info h2 {
  color: #1f2937;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.contact-info p {
  color: #4b5563;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-method {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  background: white;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
}

.contact-icon {
  font-size: 1.5rem;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 50%;
  flex-shrink: 0;
}

.contact-details h3 {
  color: #1f2937;
  margin-bottom: 0.25rem;
  font-size: 1rem;
}

.contact-details p {
  color: #4b5563;
  margin-bottom: 0.25rem;
  font-weight: 500;
}

.contact-details small {
  color: #6b7280;
  font-size: 0.875rem;
}

.contact-form-section {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.contact-form-section h2 {
  color: #1f2937;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}

.contact-form {
  max-width: 100%;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.message-textarea {
  min-height: 120px;
  resize: vertical;
  font-family: inherit;
}

.character-count {
  text-align: right;
  font-size: 0.875rem;
  color: #6b7280;
  margin-top: 0.25rem;
}

.error-message {
  display: none;
  color: #ef4444;
  font-size: 0.875rem;
  margin-top: 0.25rem;
}

.form-input.error {
  border-color: #ef4444;
  background-color: #fef2f2;
}

.form-messages {
  margin-top: 2rem;
  padding: 1.5rem;
  border-radius: 8px;
}

.success-message {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  color: #166534;
  text-align: center;
}

.error-message-box {
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #dc2626;
  text-align: center;
}

.message-icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.form-footer {
  margin-top: 1.5rem;
  text-align: center;
}

.privacy-note {
  color: #6b7280;
  font-size: 0.875rem;
  line-height: 1.5;
}

.privacy-note a {
  color: #667eea;
  text-decoration: none;
}

.privacy-note a:hover {
  text-decoration: underline;
}

.hidden {
  display: none;
}

/* Contact Page Responsive Design */
@media (max-width: 768px) {
  .contact-container {
    grid-template-columns: 1fr;
    padding: 2rem 1rem;
    gap: 2rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-form-section {
    padding: 1.5rem;
  }

  .contact-info {
    padding: 1.5rem;
  }

  .contact-method {
    padding: 0.75rem;
  }
}

@media (max-width: 480px) {
  .contact-container {
    padding: 1rem;
  }

  .contact-form-section {
    padding: 1rem;
  }

  .contact-info {
    padding: 1rem;
  }
}
