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

body {
  font-family: "Inter", sans-serif;
}

@font-face {
  font-family: "IvyPresto Headline";
  src: url("path-to-ivypresto-font.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
}

/* Header styles */
.header {
  display: flex;
  width: 100%;
  height: 123px;
  padding: 8px 32px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  background-color: #000;
  position: relative;
  box-sizing: border-box;
}

@media (max-width: 640px) {
  .header {
    height: auto;
    padding: 16px;
  }
}

.navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.logo {
  width: 240px;
  height: 62.784px;
}

@media (max-width: 640px) {
  .logo {
    width: 180px;
    height: 47px;
  }
}

.cta-button,
.cta-button-hero {
  color: #fff;
  font-family: Inter, sans-serif;
  font-size: 20px;
  font-weight: 500;
  padding: 12px 16px;
  border-radius: 60px;
  border: 1px solid #ff008c;
  background-color: transparent;
  cursor: pointer;
  transition:
    background-color 300ms cubic-bezier(0.4, 0, 0.2, 1),
    border-color 300ms cubic-bezier(0.4, 0, 0.2, 1),
    color 300ms cubic-bezier(0.4, 0, 0.2, 1),
    fill 300ms cubic-bezier(0.4, 0, 0.2, 1),
    stroke 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

.cta-button:hover,
.cta-button-hero:hover {
  background-color: rgba(255, 0, 140, 0.1);
}

/* Hero section */
.hero-section {
  display: flex;
  width: 100%;
  min-height: 578px;
  padding: 64px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  background-color: #000;
  position: relative;
  box-sizing: border-box;
}

@media (max-width: 991px) {
  .hero-section {
    padding: 32px;
  }
}

@media (max-width: 640px) {
  .hero-section {
    padding: 24px;
  }
}

.background-container {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
}

.background-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.content-container {
  display: flex;
  width: 100%;
  max-width: 1156px;
  flex-direction: column;
  align-items: center;
  gap: 42px;
  position: relative;
  z-index: 1;
}

@media (max-width: 991px) {
  .content-container {
    gap: 32px;
  }
}

@media (max-width: 640px) {
  .content-container {
    gap: 24px;
  }
}

.headline {
  color: #fff;
  text-align: center;
  font-family: "IvyPresto Headline", serif;
  font-size: 96px;
  line-height: 1.2;
  max-width: 100%;
}

@media (max-width: 991px) {
  .headline {
    font-size: 72px;
  }
}

@media (max-width: 640px) {
  .headline {
    font-size: 48px;
  }
}

.description {
  max-width: 866px;
  color: #fff;
  text-align: center;
  font-family: Inter, sans-serif;
  font-size: 24px;
  line-height: 1.5;
}

@media (max-width: 991px) {
  .description {
    font-size: 20px;
  }
}

@media (max-width: 640px) {
  .description {
    font-size: 16px;
  }
}

/* Features section */
.features-section {
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 64px 0;
  width: 100%;
  background-color: #ff008c;
}

.features-header {
  margin-bottom: 16px;
}

.features-title {
  color: #fff;
  text-align: center;
  font-family: "IvyPresto Headline", serif;
  font-size: 48px;
  font-weight: 400;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 64px;
  padding: 0 64px;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}

.feature-icon-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.feature-icon {
  width: 72px;
  height: 72px;
}

.feature-text {
  color: #000;
  font-family: Inter, sans-serif;
  font-size: 20px;
  font-weight: 500;
  max-width: 200px;
}

@media (max-width: 991px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    padding: 0 32px;
  }

  .features-title {
    font-size: 36px;
  }
}

@media (max-width: 640px) {
  .features-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 0 16px;
  }

  .feature-text {
    font-size: 16px;
  }
}

/* Location section */
.location-section {
  margin-left: auto;
  margin-right: auto;
  display: flex;
  padding: 64px 80px 64px 16px;
  align-items: center;
  gap: 8px;
  width: 100%;
}

.map-container {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
}

.map-image {
  width: 420px;
  height: 420px;
  object-fit: cover;
}

.text-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  width: 100%;
}

.section-title {
  color: #000;
  font-family: "IvyPresto Headline", serif;
  font-size: 48px;
  font-weight: 400;
  margin: 0;
}

.section-description {
  color: #000;
  font-family: Inter, sans-serif;
  font-size: 24px;
  font-weight: 400;
  margin: 0;
}

@media (max-width: 991px) {
  .location-section {
    flex-direction: column;
    padding: 32px 16px;
    gap: 32px;
  }

  .map-image {
    width: 100%;
    max-width: 420px;
    height: auto;
  }

  .section-title {
    font-size: 36px;
  }

  .section-description {
    font-size: 20px;
  }
}

@media (max-width: 640px) {
  .location-section {
    padding: 16px;
  }

  .section-title {
    font-size: 28px;
  }

  .section-description {
    font-size: 16px;
  }

  .cta-button {
    width: 100%;
  }
}

/* Differentials section */
.differentials-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 64px 0;
  width: 100%;
  background-color: #000;
}

.section-heading {
  color: #fff;
  text-align: center;
  font-family: "IvyPresto Headline", serif;
  font-size: 48px;
  font-weight: 400;
  margin-bottom: 16px;
}

@media (max-width: 640px) {
  .section-heading {
    font-size: 36px;
  }
}

.features-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 64px;
  width: 100%;
  max-width: 1200px;
  padding: 0 20px;
  flex-wrap: wrap;
}

.feature-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 271px;
}

@media (max-width: 991px) {
  .feature-card {
    width: calc(50% - 16px);
  }
}

@media (max-width: 640px) {
  .feature-card {
    width: 100%;
    max-width: 300px;
  }
}

.feature-title {
  color: #fff;
  text-align: center;
  font-family: Inter, sans-serif;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}

.feature-description {
  color: #fff;
  text-align: center;
  font-family: Inter, sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.4;
}

.icon {
  width: 64px;
  height: 64px;
}
