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

body {
  font-family: "Open Sans", sans-serif;
  line-height: 1.6;
  color: #1a1a1a;
  background-color: #ffffff;
}

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

/* Header Styles */
.header {
  background-color: #ffffff;
  border-bottom: 2px solid #e5e5e5;
  padding: 24px 0;
}

.header-content {
  text-align: center;
}

.company-name {
  font-family: "Work Sans", sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #dc2626;
  margin-bottom: 4px;
  letter-spacing: 1px;
}

.domain {
  font-size: 0.9rem;
  color: #666666;
  font-weight: 500;
}

/* Hero Section */
.hero {
  padding: 80px 0;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.hero-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.hero-title {
  font-family: "Work Sans", sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 24px;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: #666666;
  margin-bottom: 32px;
  font-weight: 400;
}

.cta-button {
  background-color: #16a34a;
  color: white;
  border: none;
  padding: 16px 32px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: "Open Sans", sans-serif;
}

.cta-button:hover {
  background-color: #15803d;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(22, 163, 74, 0.3);
}

/* Contact Section */
.contact-section {
  padding: 80px 0;
  background-color: #f8f9fa;
}

.section-title {
  font-family: "Work Sans", sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  color: #1a1a1a;
  margin-bottom: 48px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}

.contact-card {
  background: white;
  padding: 32px 24px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: 1px solid #e5e5e5;
}

.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
}

.contact-icon {
  font-size: 2rem;
  margin-bottom: 16px;
  display: block;
}

.contact-title {
  font-family: "Work Sans", sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 12px;
}

.contact-info {
  color: #666666;
  font-size: 0.95rem;
}

.contact-info a {
  color: #666666;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-info a:hover {
  color: #dc2626;
}

.contact-info p {
  margin-bottom: 4px;
}

/* Footer */
.footer {
  background-color: #1a1a1a;
  color: white;
  padding: 40px 0;
  border-top: 3px solid #dc2626;
}

.footer-content {
  text-align: center;
}

.footer-title {
  font-family: "Work Sans", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #dc2626;
  margin-bottom: 8px;
}

.footer-subtitle {
  color: #cccccc;
  font-size: 0.95rem;
  margin-bottom: 16px;
}

.footer-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.9rem;
}

.footer-links a {
  color: #cccccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #16a34a;
}

.footer-links span {
  color: #666666;
}

/* Responsive Design */
@media (max-width: 768px) {
  .company-name {
    font-size: 2rem;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .footer-links {
    flex-direction: column;
    gap: 8px;
  }

  .footer-links span {
    display: none;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .hero {
    padding: 60px 0;
  }

  .contact-section {
    padding: 60px 0;
  }

  .company-name {
    font-size: 1.8rem;
  }

  .hero-title {
    font-size: 2rem;
  }

  .cta-button {
    padding: 14px 28px;
    font-size: 1rem;
  }
}
