@font-face {
  font-family: 'Century Gothic';
  src: url('centurygothic.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Century Gothic';
  src: url('centurygothic_bold.ttf') format('truetype');
  font-weight: bold;
  font-style: normal;
}

:root {
  --link-gap: 40px; /* Define a CSS variable for consistent spacing */
}

body {
  font-family: 'Century Gothic', 'Helvetica Neue', Arial, sans-serif;
  margin: 0;
  padding: 0;
  color: #333;
  background-color: #fff;
  line-height: 1.6;
}

header {
  display: flex;
  justify-content: space-between; /* Align items to the edges */
  align-items: center;
  background-color: #fff;
  border-bottom: 1px solid #e0e0e0;
  padding: 20px;
}

.header-links {
  display: flex;
  gap: var(--link-gap); /* Use the CSS variable for spacing */
}


.logo-image {
  height: 60px; /* Increase the height to make the logo larger */
  /* Optionally, set the width if you want to maintain a specific aspect ratio */
  /* width: auto; */ /* This will maintain the aspect ratio based on the height */
}

.login {
  font-size: 14px;
  color: #333;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: bold;
}

.login:hover {
  color: #ffbd59;
}

nav {
  display: flex; /* Use flexbox for layout */
  justify-content: center; /* Center the <a> elements */
  position: relative; /* Needed for absolute positioning of the language-selection */
  gap: 1rem; /* Adds spacing between the <a> elements */
}

nav a {
  color: #333;
  padding: 10px 15px;
  text-decoration: none;
  font-size: 14px;
  font-weight: bold;
  text-transform: uppercase;
  margin-right: var(--link-gap); /* Use the same CSS variable for spacing */
}

nav a:hover {
  color: #ffbd59;
}

.language-selection {
  display: flex;
  align-items: center;
  gap: 10px; /* Space between language options */
  margin-left: 20px; /* Space between login links and language selection */
}

.language-option {
  cursor: pointer;
  transition: color 0.3s ease;
}

.language-option:hover {
  color: #00539a; /* Highlight color on hover */
}

.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 65vh;
  background-color: #f4f4f4;
}

.hero-content {
  flex: 1;
  max-width: 20%; /* Text content takes up 20% of the width */
  z-index: 1;
  padding: 200px;
}

.hero-image {
  flex: 0 0 60%;
  height: 100%;
  background-image: url('STOCK OFFICE 2.svg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-iframe {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end; /* Align iframe to the right */
}

.full-height-iframe {
  width: 60%; /* Set the width of the iframe */
  height: 65vh;
  border: none;
}

.content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  padding: 40px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.content section {
  background-color: #fff;
  padding: 20px;
  border: 1px solid #e0e0e0;
}

.content h2 {
  font-size: 24px;
  margin-bottom: 10px;
  font-weight: 400;
}

.content p {
  font-size: 16px;
}

footer {
  background-color: #fff;
  color: #333;
  text-align: center;
  padding: 20px;
  border-top: 1px solid #e0e0e0;
}