/* 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: #2c3e50;
  background-color: #fafafa;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Header */
.header {
  background-color: #ffffff;
  border-bottom: 1px solid #e1e8ed;
  padding: 2rem 0;
  text-align: center;
}

.company-name {
  font-size: 3rem;
  font-weight: 300;
  color: #34495e;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.tagline {
  font-size: 1.25rem;
  font-weight: 400;
  color: #7f8c8d;
  font-weight: 300;
  margin-top: 0.5rem;
}
.company-logo {
  max-height: 80px;
  width: auto;
  display: block;
  margin: 0 auto;
}

/* Main content */
.main {
  flex: 1;
  padding: 2rem 0;
}

/* Hero Section */
.hero-section {
  padding: 4rem 4rem;
  border-radius: 2rem;
  width: 100%;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  margin-bottom: 4rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-text h2 {
  font-size: 2.5rem;
  font-weight: 300;
  color: #34495e;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-description {
  font-size: 1.25rem;
  color: #34495e;
  line-height: 1.7;
}

.hero-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* About Section */
.about-section {
  padding: 4rem 0;
  margin-bottom: 4rem;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-text-content h3 {
  font-size: 2rem;
  font-weight: 400;
  color: #34495e;
  margin-bottom: 1.5rem;
}

.about-text-content p {
  font-size: 1.125rem;
  color: #34495e;
  line-height: 1.7;
}

.about-image img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

/* Projects Section */
.projects-section {
  padding: 4rem 4rem;
  border-radius: 2rem;
  margin-bottom: 4rem;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.projects-section h3 {
  font-size: 2rem;
  font-weight: 400;
  color: #34495e;
  margin-bottom: 2rem;
  text-align: center;
}

.project-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  background: #ffffff;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid #e1e8ed;
}

.project-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 8px;
}

.project-content h4 {
  font-size: 1.5rem;
  font-weight: 500;
  color: #34495e;
  margin-bottom: 1rem;
}

.project-content p {
  font-size: 1.125rem;
  color: #34495e;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.project-link {
  display: inline-block;
  color: #3498db;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  padding: 0.75rem 1.5rem;
  border: 2px solid #3498db;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.project-link:hover {
  background-color: #3498db;
  color: #ffffff;
  transform: translateY(-2px);
}

/* Location Section */
.location-section {
  padding: 4rem 0;
  margin-bottom: 4rem;
}

.location-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.location-text h3 {
  font-size: 2rem;
  font-weight: 400;
  color: #34495e;
  margin-bottom: 1.5rem;
}

.location-text p {
  font-size: 1.125rem;
  color: #34495e;
  line-height: 1.7;
}

.location-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.location-images img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

/* Contact Section */
.contact-section {
  padding: 4rem 4rem;
  border-radius: 2rem;
  margin-bottom: 4rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  text-align: center;
}

.contact-content h3 {
  font-size: 2rem;
  font-weight: 400;
  color: #34495e;
  margin-bottom: 1.5rem;
}

.contact-content p {
  font-size: 1.125rem;
  color: #34495e;
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.contact-email {
  display: inline-block;
  color: #3498db;
  text-decoration: none;
  font-weight: 500;
  font-size: 1.125rem;
  padding: 1rem 2rem;
  border: 2px solid #3498db;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.contact-email:hover {
  background-color: #3498db;
  color: #ffffff;
  transform: translateY(-2px);
}

/* Footer */
.footer {
  background-color: #ffffff;
  border-top: 1px solid #e1e8ed;
  padding: 2rem 0;
  text-align: center;
  margin-top: auto;
}

.footer p {
  color: #95a5a6;
  font-size: 0.875rem;
  font-weight: 400;
}

/* Responsive design */
@media (max-width: 1024px) {
  .container {
    max-width: 900px;
  }

  .hero-grid,
  .about-content,
  .project-card,
  .location-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero-image img,
  .about-image img,
  .project-image img {
    height: 300px;
  }

  .location-images {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 1.5rem;
  }

  .header {
    padding: 2rem 0 1.5rem;
  }

  .company-logo {
    max-height: 60px;
  }

  .main {
    padding: 1rem 0;
  }

  .hero-section,
  .about-section,
  .projects-section,
  .location-section {
    padding: 2rem 0;
    margin-bottom: 2rem;
  }

  .hero-text h2 {
    font-size: 2rem;
  }

  .hero-description,
  .about-text-content p,
  .project-content p,
  .location-text p {
    font-size: 1rem;
  }

  .project-card {
    padding: 1.5rem;
  }
}

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

  .header {
    padding: 1.5rem 0 1rem;
  }

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

  .tagline {
    font-size: 1rem;
  }
  .company-logo {
    max-height: 50px;
  }
  .hero-text h2 {
    font-size: 1.75rem;
  }

  .hero-image img,
  .about-image img,
  .project-image img {
    height: 250px;
  }

  .location-images img {
    height: 150px;
  }
}
