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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Inter', 'Segoe UI', sans-serif;
  line-height: 1.7;
  background-color: #ffffff;
  color: #1a1a1a;
  -webkit-font-smoothing: antialiased;
}

/* Header & Navigation */
header {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #f0f0f0;
  z-index: 1000;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 20px 40px;
}

.NavbarLogo img {
  height: 45px;
  width: auto;
}

nav ul {
  list-style-type: none;
  display: flex;
  gap: 40px;
  margin: 0;
  padding: 0;
}

nav a {
  color: #1a1a1a;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.01em;
  transition: color 0.2s ease;
  position: relative;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #0066ff;
  transition: width 0.3s ease;
}

nav a:hover {
  color: #0066ff;
}

nav a:hover::after {
  width: 100%;
}

/* Container */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

/* Page Hero */
.page-hero {
  padding: 160px 40px 80px;
  text-align: center;
  background-color: #ffffff;
}

.page-hero h1 {
  font-size: 64px;
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
  color: #1a1a1a;
}

.page-hero p {
  font-size: 20px;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

/* Contact Section */
.contact-section {
  padding: 60px 40px 120px;
  background-color: #ffffff;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Contact Info */
.contact-info {
  background: #fafafa;
  padding: 48px;
  border-radius: 16px;
  border: 1px solid #f0f0f0;
}

.contact-info h2 {
  color: #1a1a1a;
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.contact-info .intro {
  color: #666;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 40px;
}

.contact-details {
  margin-bottom: 40px;
}

.detail-item {
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid #e0e0e0;
}

.detail-item:last-child {
  border-bottom: none;
}

.detail-item h3 {
  color: #1a1a1a;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}

.detail-item p {
  color: #666;
  font-size: 15px;
}

/* Services Offered */
.services-offered {
  background: white;
  padding: 28px;
  border-radius: 12px;
  border: 1px solid #e0e0e0;
}

.services-offered h3 {
  color: #1a1a1a;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.services-offered ul {
  list-style: none;
  padding: 0;
}

.services-offered ul li {
  padding: 10px 0;
  padding-left: 24px;
  position: relative;
  color: #666;
  font-size: 15px;
}

.services-offered ul li:before {
  content: "•";
  position: absolute;
  left: 0;
  color: #0066ff;
  font-weight: bold;
  font-size: 20px;
}

/* Contact Form Container */
.contact-form-container {
  background: #fafafa;
  padding: 48px;
  border-radius: 16px;
  border: 1px solid #f0f0f0;
}

.contact-form-container h3 {
  color: #1a1a1a;
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 32px;
  letter-spacing: -0.02em;
}

/* Contact Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  color: #1a1a1a;
  font-weight: 500;
  margin-bottom: 8px;
  font-size: 14px;
  letter-spacing: -0.01em;
}

.form-group input,
.form-group textarea {
  padding: 14px 16px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  font-family: -apple-system, BlinkMacSystemFont, 'Inter', 'Segoe UI', sans-serif;
  font-size: 15px;
  transition: border-color 0.2s ease;
  background-color: white;
  color: #1a1a1a;
}

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

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

/* Submit Button */
.btn-submit {
  background-color: #0066ff;
  color: white;
  padding: 16px 32px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  margin-top: 8px;
}

.btn-submit:hover {
  background-color: #0052cc;
  transform: translateY(-1px);
}

/* Footer */
footer {
  text-align: center;
  padding: 60px 40px;
  background-color: #fafafa;
  color: #666;
  border-top: 1px solid #f0f0f0;
  font-size: 15px;
}

/* Responsive */
@media (max-width: 768px) {
  nav {
    padding: 16px 24px;
  }

  nav ul {
    gap: 20px;
  }

  .page-hero {
    padding: 120px 24px 60px;
  }

  .page-hero h1 {
    font-size: 42px;
  }

  .contact-section {
    padding: 40px 24px 80px;
  }

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

  .contact-info,
  .contact-form-container {
    padding: 32px;
  }

  .contact-form-container h3 {
    font-size: 24px;
  }
}
