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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: 'Open Sans', sans-serif;
}

.section-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.section-title .date {
  font-size: 1rem;
  color: #666;
  font-weight: normal;
  margin-left: 5px;
}

.btn-primary {
  display: inline-block;
  padding: 0.8rem 2rem;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  transition: background-color 0.3s ease;
  margin-top: 1rem;
  border: none;
}

.btn-primary:hover {
  color: white;
}

.main {
  min-height: 75vh;
  width: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
  position: relative;
}

.main::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

.main-content {
  position: relative;
  z-index: 1;
  color: white;
  padding: 2rem 0;
  width: 50%;
}

.main-content h1 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.main-content p {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.gradient-bg {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.about {
  padding: 2rem 0;
  background: white;
}

.about-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10rem;
}

.about-text {
  flex: 1;
}

.about-image {
  flex: 1;
  text-align: center;
}

.about-image img {
  max-width: 80%;
  height: auto;
  border-radius: 10px;
}

.contact {
  min-height: 5vh;
  background-color: #f8f9fa;
  display: flex;
  align-items: center;
}

.contact-text p {
  color: #666;
  line-height: 1.6;
}

.contact-info {
  margin-bottom: 1rem;
}

.contact-info p {
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  white-space: nowrap;
}

.contact-info i {
  margin-right: 0.75rem;
  font-size: 1.2rem;
}

.footer-social {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  margin-top: auto;
}

.footer-social .social-icon {
  font-size: 1.5rem;
  transition: color 0.3s ease;
}

@media (max-width: 768px) {
  .main-content {
    width: 100%;
  }

  .main-content h1 {
    font-size: 2rem;
  }

  .main-content p {
    font-size: 1rem;
  }

  .btn-primary {
    padding: 0.6rem 1.5rem;
  }

  .about-content {
    flex-direction: column;
  }

  .about-image {
    order: -1;
    max-width: 60vh;
  }

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

  .contact-content {
    flex-direction: column;
    gap: 3rem;
  }

  .contact-image {
    order: -1;
    max-width: 50%;
  }
}
