* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande',
    'Lucida Sans', Arial, sans-serif;
}

nav {
  height: 70px;
  background: #000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem calc((100vw - 1300px) / 2);
}

.logo {
  color: #fff;
  font-size: 2rem;
  font-weight: bold;
  font-style: ;
  padding: 0 2rem;
}



nav a {
  text-decoration: none;
  color: #fff;
  font-size: 1.2rem;
  font-weight: bold;
  font-style: ;
  padding: 0 1.5rem;
}

nav a:hover {
  color: #e1e1e1;
}

.hero {
  background: #e1e1e1;
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 87.3vh;
  padding: 3rem calc((100vw - 1200px) / 2);
}

.hero-container_about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 320vh;
  padding: 3rem calc((100vw - 1400px) / 2);
}

.hero-center_about {
  display: flex;
  justify-content:center;
  height: 120vh;
  padding: 1rem calc((100vw - 1200px) / 2) 0rem ;
}

.column-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  color: #000;
  padding: 0rem 2rem;
}

.column-center_about {
  display: inline;
  flex-directoin: column;
  justify-content: center;
  align-items: flex-start;
  text-align: center;
  color: #000;
  padding: 2rem ;
}

.column-center_about h1 {
  margin-bottom: 2.5rem;
  margin-top: 2rem;
  font-size: 2.6rem;
}

.column-center_about h2 {
  margin-bottom: 0.1rem;
  font-size: 1.8rem;
}

.column-center_about p {
  margin-bottom: 0rem;
  font-size: 1.5rem;
  line-height: 1.5;
  padding: 0rem 2rem
}

.column-center_about a {
    color: #444; 
    text-decoration: none; 
}

.column-center_about a:hover {
    color: #777; 
    text-decoration: underline; }



.column-left_about {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  color: #000;
  text-align:left;
  padding: 2rem 2rem 0rem 2rem ;
}


.column-left_about h1 {
  margin-bottom: 1.5rem;
  font-size: 2.6rem;
}

.column-left_about h2 {
  margin-bottom: 0.2rem;
  font-size: 1.8rem;
  text-align:left;
}

.column-left_about p {
  margin-bottom: 1rem;
  font-size: 1.5rem;
  line-height: 1.5;
  text-align:left;
}

.column-left_about a {
    color: #666; 
    text-decoration: none; 
}

.column-left_about a:hover {
    color: #999; 
    text-decoration: underline; }

.column-left h1 {
  margin-bottom: 0.8rem;
  font-size: 3rem;
}

.column-left p {
  margin-bottom: 2rem;
  font-size: 1.5rem;
  line-height: 1.5;
}

.column-left a {
    color: #000; 
    text-decoration: none; 
}

.column-left a:hover {
    color: #555; 
    text-decoration: underline; }

button {
  padding: 1rem 2rem;
  font-size: 1rem;
  border: 0rem;
  color: #fff;
  background: #000;
  cursor: pointer;
  border-radius: 0px;
}

button:hover {
  background: #c9c9c9;
  color: #000;
}

.column-right {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0rem 2rem;
}

.column-right_about {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-end;
  color: #000;
  text-align:right;
  padding: 2rem 2rem 0rem 2rem ;
}

.column-right_about h1 {
  margin-bottom: 0.8rem;
  font-size: 2.6rem;
}

.column-right_about h2 {
  margin-bottom: 0.3rem;
  align: right;
  font-size: 1.8rem;
  text-align:right;
}

.column-right_about p {
  margin-bottom: 1rem;
  font-size: 1.5rem;
  line-height: 1.5;
  text-align:right;
}

.column-right_about a {
    color: #666; 
    text-decoration: none; 
}

.column-right_about a:hover {
    color: #999; 
    text-decoration: underline; }



.hero-image {
  width: 2000px;
  height: auto;
  max-width:85%;
  object-fit:contain;
  display: block;
  border-radius: 0px;
}

.hero-image_about {
  width: 2000px;
  height: auto;
  max-width:73.5%;
  object-fit:contain;
  display: block;
  border-radius: 0px;
  margin-bottom: 2rem;
}



/*
@media screen and (max-width: 768px) {
  .hero-container {
    grid-template-columns: 1fr;
  }
}
*/


/* Ensure desktop styles are always applied */
body {
    min-width: 1024px; /* Fixed width for desktop layout */
    overflow-x: auto; /* Allow horizontal scrolling */
}

.container {
    width: 1024px; /* Fixed width for desktop layout */
    margin: 0 auto;
}

/* Remove or override mobile-specific media queries */
@media (max-width: 768px) {
    /* Remove or modify mobile styles here */
    .mobile-only {
        display: none;
    }
}

html, body {
    overflow-x: auto;
    overflow-y: auto; /* Prevent vertical scrolling if needed */
}





footer {
    background-color: #000;
    color: #fff;
    text-align: center;
    padding: 1rem;
    width: 100%;
}

