:root {
  --primary-dark: #3F2D80;
  --primary-light: #724CF9;
  --secondary-dark: #353A45;
  --secondary-dark-100: #667085;
  --secondary-dark-10: #E2E4E9;
  --primary-white: #FFFFFF;
  --bg-gradient: linear-gradient(180deg, #D0C4FD 0%, #F7F5FF 50%);
  --font-title: 'Gilroy', Arial, sans-serif;
  --font-body: 'Mulish', Arial, sans-serif;
}

html, body {
  margin: 0;
  padding: 0;
  font-family: var(--font-body);
  background: var(--bg-gradient);
  color: var(--secondary-dark);
}

.first-section {
  background: var(--bg-gradient);
  min-height: 50vh;
  position: relative;
  padding-top: 12px;
  padding-bottom: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 0;
}

.content-box {
  display: grid;
  grid-template-columns: 40% 60%;
  gap: 16px;
  width: calc(100% - 48px);
  max-width: none;
  background: transparent;
  padding: 4px;
  margin: 0 24px;
  position: relative;
  overflow: visible;
}
.content-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 12px;
  text-align: left;
}
.title {
  font-family: var(--font-title);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--secondary-dark);
  margin: 0 0 8px 0;
}
.subtitle {
  font-family: var(--font-title);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--secondary-dark-100);
  margin: 0 0 24px 0;
}
.cta {
  background: var(--primary-light);
  color: var(--primary-white);
  border: none;
  border-radius: 12px;
  padding: 12px 28px;
  font-size: 1rem;
  font-family: var(--font-body);
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(63, 45, 128, 0.10);
  transition: background 0.2s;
  text-decoration: none;
  display: inline-block;
}
.cta:hover {
  background: var(--primary-dark);
}
.content-right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 12px;
  text-align: left;
}
.logo-in-content {
  width: 150px;
  height: 35px;
  object-fit: contain;
  margin-bottom: 8px;
}

.logo-illustration {
  width: 100%;
  height: auto;
  max-width: 50vw;
  max-height: 40vh;
  object-fit: contain;
  border-radius: 32px;
}

.logo-illustration-large {
  display: none;
  width: 100%;
  height: auto;
  max-width: 45vw;
  max-height: 35vh;
  object-fit: contain;
  border-radius: 32px;
  opacity: 0.8;
}



.info {
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 24px 0;
  position: relative;
  z-index: 1;
  min-height: auto;
}
.info-inner {
  display: grid;
  grid-template-columns: 40% 60%;
  gap: 16px;
  width: calc(100% - 48px);
  max-width: none;
  background: transparent;
  padding: 4px;
  margin: 0 24px;
}
.info-image {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  min-width: 15vw;
  max-width: 20vw;
}
.info-image img {
  width: 100%;
  height: auto;
  max-height: 20vh;
  object-fit: contain;
}

.info-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 12px;
  text-align: left;
}
.info-title {
  font-family: var(--font-title);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--secondary-dark);
  margin: 0 0 8px 0;
}
.info-subtitle {
  font-family: var(--font-title);
  font-size: 1rem;
  font-weight: 500;
  color: var(--secondary-dark-100);
  margin: 0;
}

.contact {
  background: #f7f5ff;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 12px 0;
  min-height: auto;
  vertical-align: top;
  position: relative;
  top: 0;
}
.contact-inner {
  display: grid;
  grid-template-columns: 40% 60%;
  gap: 16px;
  width: calc(100% - 48px);
  max-width: none;
  background: transparent;
  padding: 4px;
  margin: 0 24px;
  position: relative;
  overflow: visible;
}
.contact-details {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}
.contact-details h3 {
  font-family: var(--font-title);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--secondary-dark);
  margin: 0 0 8px 0;
}
.contact-details ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.contact-details li {
  display: flex;
  align-items: center;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--secondary-dark);
  gap: 12px;
}
.icon-mail, .icon-pin, .icon-linkedin {
  display: inline-block;
  width: 20px;
  height: 20px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.icon-mail {
  background-image: url('data:image/svg+xml;utf8,<svg width="20" height="20" fill="none" xmlns="http://www.w3.org/2000/svg"><rect width="20" height="20" rx="4" fill="%23E2E4E9"/><path d="M4 6h12v8H4V6zm0 0l8 5 8-5" stroke="%23353A45" stroke-width="1.2"/></svg>');
  cursor: pointer;
  transition: all 0.2s ease;
}

.icon-mail:hover {
  background-image: url('data:image/svg+xml;utf8,<svg width="20" height="20" fill="none" xmlns="http://www.w3.org/2000/svg"><rect width="20" height="20" rx="4" fill="%23724CF9"/><path d="M4 6h12v8H4V6zm0 0l8 5 8-5" stroke="%23FFFFFF" stroke-width="1.5"/></svg>');
  transform: scale(1.1);
}
.icon-pin {
  background-image: url('data:image/svg+xml;utf8,<svg width="20" height="20" fill="none" xmlns="http://www.w3.org/2000/svg"><rect width="20" height="20" rx="4" fill="%23E2E4E9"/><path d="M10 15c2.5-3 5-6 5-8.5A5 5 0 0 0 5 6.5C5 9 7.5 12 10 15z" stroke="%23353A45" stroke-width="1.2"/><circle cx="10" cy="8.5" r="1.5" fill="%23353A45"/></svg>');
}
.icon-linkedin {
  background-image: url('data:image/svg+xml;utf8,<svg width="20" height="20" fill="none" xmlns="http://www.w3.org/2000/svg"><rect width="20" height="20" rx="4" fill="%23E2E4E9"/><path d="M6.5 8.5v5m3-5v5m3-5v5M6.5 6.5a1 1 0 1 1 0 2 1 1 0 0 1 0-2z" stroke="%23353A45" stroke-width="1.2"/></svg>');
  cursor: pointer;
  transition: all 0.2s ease;
}

.icon-linkedin:hover {
  background-image: url('data:image/svg+xml;utf8,<svg width="20" height="20" fill="none" xmlns="http://www.w3.org/2000/svg"><rect width="20" height="20" rx="4" fill="%23724CF9"/><path d="M6.5 8.5v5m3-5v5m3-5v5M6.5 6.5a1 1 0 1 1 0 2 1 1 0 0 1 0-2z" stroke="%23FFFFFF" stroke-width="1.5"/></svg>');
  transform: scale(1.1);
}

.contact-details a:hover {
  color: var(--primary-light) !important;
}
.contact-map-card {
  display: flex;
  align-items: left;
  justify-content: left;
}
.contact-map {

  background: #fff url('img/street.png') center/cover no-repeat;
  border-radius: 24px;
  box-shadow: 0 4px 24px -2px rgba(63, 45, 128, 0.15), 0 6px 24px -2px rgba(63, 45, 128, 0.12);
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease;
}

.contact-map::before {
  content: "New office coming soon — stay tuned!";
  position: absolute;
    transform: translate(-50%, -50%);
  color: var(--primary-light);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 1200;
  text-align: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 2;
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.8);
  img .contact-map {
    display: block;
    width: 80%;
    max-width: 40vw;
    height: auto;
    max-height: 30vh;
    object-fit: contain;
    border-radius: 32px;
    object-position: left top;
    opacity: 0.8;

  }
}

.contact-map:hover {
  background: transparent;
}

.contact-map:hover::before {
  opacity: 1;
}

@media (min-width: 1201px) {
  .logo-illustration {
    display: none;
  }
  .logo-illustration-large {
    display: block;
    width: 80%;
    max-width: 40vw;
    height: auto;
    max-height: 30vh;
    object-fit: contain;
    border-radius: 32px;
    object-position: left top;
    opacity: 0.8;
  }
}

@media (max-width: 1200px) {
  .content-box {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    gap: 12px;
    padding: 3px;
  }
  .content-right {
    justify-content: center;
    align-items: center;
  }
  .logo-in-content {
    width: 100px;
    height: 25px;
  }
  .logo-illustration {
    width: 100%;
    max-width: 35vw;
    height: auto;
    max-height: 25vh;
    object-fit: contain;
    object-position: center;
    transform: none;
  }
}
@media (max-width: 1024px) {
  .content-box {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    gap: 12px;
    padding: 3px;
    margin: 0 16px;
  }
  .content-right {
    justify-content: center;
    align-items: center;
    overflow: hidden;
    max-width: 100%;
  }
  .logo-in-content {
    width: 100px;
    height: 25px;
  }
  .logo-illustration {
    width: 100%;
    max-width: 40vw;
    height: auto;
    max-height: 30vh;
    object-fit: contain;
    object-position: center;
    transform: none;
    box-sizing: border-box;
  }
  .info-inner {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    gap: 12px;
    padding: 3px;
    margin: 0 16px;
  }
  .info-image {
    justify-content: center;
    overflow: hidden;
    max-width: 100%;
  }
  .info-text {
    align-items: center;
    text-align: center;
  }
  .info-image img {
    max-width: 25vw;
    height: auto;
    max-height: 20vh;
    object-fit: contain;
    box-sizing: border-box;
  }
  .contact-inner {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    gap: 12px;
    padding: 3px;
    margin: 0 16px;
  }
  .contact-details {
    align-items: center;
  }

  .contact-map {
    width: 12vw;
    height: 8vh;
    box-sizing: border-box;
  }

}
@media (max-width: 600px) {
  .content-box {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    gap: 8px;
    padding: 2px 16px;
    margin: 0 12px;
    max-height: none;
    height: auto;
  }
  .first-section {
    padding-bottom: 16px;
  }
  .info-inner {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    gap: 8px;
    padding: 2px 16px;
    margin: 0 12px;
  }
  .contact-inner {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    gap: 8px;
    padding: 2px 16px;
    margin: 0 12px;
  }
  .title {
    font-size: 1.25rem;
  }
  .subtitle {
    font-size: 1rem;
  }
  .cta {
    font-size: 0.9rem;
    padding: 8px 16px;
  }
  .content-right {
    justify-content: center;
    align-items: center;
    overflow: hidden;
    max-width: 100%;
  }
  .logo-in-content {
    width: 75px;
    height: 18px;
  }
  .logo-illustration {
    width: 100%;
    max-width: 25vw;
    height: auto;
    max-height: 15vh;
    object-fit: contain;
    object-position: center;
    transform: none;
    box-sizing: border-box;
  }
  .info-image {
    overflow: hidden;
    max-width: 100%;
  }
  .info-image img {
    max-width: 20vw;
    height: auto;
    max-height: 18vh;
    object-fit: contain;
    box-sizing: border-box;
  }
  .contact-map-card {
    overflow: hidden;
    max-width: 30%;
    justify-content: center;
  }
  .contact-map {
    width: 10vw;
    height: 6vh;
    border-radius: 12px;
    box-sizing: border-box;
  }
}

@media (max-width: 480px) {
  .content-box {
    max-height: none;
    height: auto;
    gap: 6px;
    padding: 2px 12px;
    margin: 0 8px;
  }
  .first-section {
    padding-bottom: 12px;
  }
  .info-inner {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    gap: 6px;
    padding: 2px 12px;
    margin: 0 8px;
  }
  .contact-inner {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    gap: 6px;
    padding: 2px 12px;
    margin: 0 8px;
  }
  .content-right {
    overflow: hidden;
    max-width: 100%;
  }
  .logo-illustration {
    width: 100%;
    max-width: 20vw;
    height: auto;
    max-height: 12vh;
    object-fit: contain;
    object-position: center;
    transform: none;
    box-sizing: border-box;
  }
  .info-image img {
    max-width: 18vw;
    height: auto;
    max-height: 12vh;
    object-fit: contain;
    box-sizing: border-box;
  }
  .contact-map {
    width: 8vw;
    height: 5vh;
    border-radius: 12px;
    box-sizing: border-box;
  }
  .title {
    font-size: 1.1rem;
  }
  .subtitle {
    font-size: 0.9rem;
  }
}

@media (max-width: 400px) {
  .contact-map {
    width: 90vw;
    height: calc(90vw * 215.74 / 375);
  }
}

@media (min-width: 1025px) {
  .info-image img,
  .contact-map {
    max-height: 20vh;
    min-height: 120px;
    width: auto;
    max-width: 20vw;
    object-fit: contain;
    border-radius: 24px;
  }
} 