/* Inter Font Faces */
@font-face {
  font-family: 'Inter';
  font-weight: 400;
  font-style: normal;
  src: url('../fonts/Inter-Regular.ttf') format('truetype');
}

@font-face {
  font-family: 'Inter';
  font-weight: 500;
  font-style: normal;
  src: url('../fonts/Inter-Medium.ttf') format('truetype');
}

@font-face {
  font-family: 'Inter';
  font-weight: 600;
  font-style: normal;
  src: url('../fonts/Inter-SemiBold.ttf') format('truetype');
}

@font-face {
  font-family: 'Inter';
  font-weight: 700;
  font-style: normal;
  src: url('../fonts/Inter-Bold.ttf') format('truetype');
}

/* Global Styles */
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  margin: 0;
  padding: 0;
}

/* Custom component classes that extend Tailwind */
.section-wrapper {
  margin-left: 50px;
  margin-right: 50px;
  margin-top: 2.5rem;
  margin-bottom: 2.5rem;
}

@media (max-width: 1023px) {
  .section-wrapper {
    margin-left: 2.5rem;
    margin-right: 2.5rem;
    margin-top: 2rem;
    margin-bottom: 2rem;
  }
}

@media (max-width: 767px) {
  .section-wrapper {
    margin-left: 2rem;
    margin-right: 2rem;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
  }
}

@media (max-width: 639px) {
  .section-wrapper {
    margin-left: 1.25rem;
    margin-right: 1.25rem;
    margin-top: 1.25rem;
    margin-bottom: 1.25rem;
  }
}

/* Card styles */
.card-standard {
  width: 100%;
  height: 600px;
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
}

@media (max-width: 1023px) {
  .card-standard {
    height: 550px;
  }
}

@media (max-width: 767px) {
  .card-standard {
    height: 500px;
  }
}

@media (max-width: 639px) {
  .card-standard {
    height: 360px;
  }
}

/* Card icon container */
.card-icon {
  position: absolute;
  width: 90px;
  height: 90px;
  display: flex;
  justify-content: center;
  align-items: center;
  left: 50px;
  top: 50px;
}

@media (max-width: 767px) {
  .card-icon {
    width: 80px;
    height: 80px;
    left: 2.5rem;
    top: 2.5rem;
  }
}

@media (max-width: 639px) {
  .card-icon {
    width: 70px;
    height: 70px;
    left: 30px;
    top: 25px;
  }
}

/* Card content container */
.card-content {
  position: absolute;
  max-width: 544px;
  width: calc(100% - 100px);
  left: 50px;
}

@media (max-width: 767px) {
  .card-content {
    left: 2.5rem;
  }
}

@media (max-width: 639px) {
  .card-content {
    width: calc(100% - 60px);
    left: 30px;
  }
}

/* Card title */
.card-title {
  font-size: 32px;
  font-weight: 700;
  line-height: 2.5rem;
  margin-bottom: 15px;
}

@media (max-width: 1023px) {
  .card-title {
    font-size: 28px;
    line-height: 2.25rem;
  }
}

@media (max-width: 767px) {
  .card-title {
    font-size: 26px;
    line-height: 2rem;
  }
}

@media (max-width: 639px) {
  .card-title {
    font-size: 1.25rem;
    line-height: 1.75rem;
  }
}

/* Card description */
.card-description {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5rem;
  margin-bottom: 25px;
}

@media (max-width: 639px) {
  .card-description {
    font-size: 0.875rem;
    line-height: 1.25rem;
    margin-bottom: 1.25rem;
  }
}

/* Card button */
.card-button {
  display: flex;
  width: 255px;
  justify-content: center;
  align-items: center;
  height: 44px;
  cursor: pointer;
  background-color: black;
  padding: 10px;
  border-radius: 100px;
  transition: background-color 0.2s;
}

.card-button:hover {
  background-color: #1f2937;
}

@media (max-width: 767px) {
  .card-button {
    width: 220px;
  }
}

@media (max-width: 639px) {
  .card-button {
    width: 180px;
    height: 40px;
  }
}

/* Decorative elements */
@media (max-width: 639px) {
  .decorative-hidden-mobile {
    display: none;
  }
}

/* Custom brand colors for non-Tailwind elements */
.bg-primary {
  background-color: hsl(195 87% 54%);
}

.bg-brand-gray-light {
  background-color: hsl(218 11% 96%);
}

.bg-brand-yellow {
  background-color: hsl(48 100% 63%);
}

.bg-brand-green {
  background-color: hsl(92 54% 63%);
}