@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;600&display=swap");
@import url("https://fonts.googleapis.com/icon?family=Material+Icons+Outlined");
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&display=swap");

:root {
  --sand: #c8b393;
  --lighter-sand-bg: #e1c8a4; 
  --highlight-color: #bfa980; 
  --section-bg-color: #d1b892; 
  --darksand: #c1a885;
  --white: #fff;
  --black: #000;
  --error: #b00020;
  --success: #388e3c;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  background: var(--sand);
  height: 100%;
  overflow-x: hidden;
}

a:focus,
button:focus,
input:focus {
  outline: 2px solid var(--highlight-color);
  outline-offset: 2px;
}

.page-wrapper {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

main {
  max-width: 100vw;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
  min-height: 100vh;
  overflow-x: hidden;
}

h1 {
  font-family: "Playfair Display", serif;
  margin: 0;
  font-size: 1.5rem;
}

h2,
h3 {
  font-family: "Playfair Display", serif;
  margin: 0;
  font-size: 1.2rem;
}

.custom-margin {
  font-family: "Playfair Display", serif;
  font-size: 1.2rem;
  color: var(--black);
  margin: 20px 0 0 0;
}

.db-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 120px;
  padding: 0 40px;
  position: relative;
  background: var(--white);
}

.db-menu-toggle {
  display: none;
}

.db-menu-left {
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
  z-index: 1201;
}

.db-hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  width: 44px;
  height: 44px;
  z-index: 1300;
}

.db-hamburger span {
  width: 30px;
  height: 3px;
  margin: 4px 0;
  background-color: var(--black);
  border-radius: 2px;
  transition: all 0.4s ease;
  transform-origin: center;
}

.db-menu-toggle:checked ~ .db-header-inner .db-hamburger span:nth-child(1) {
  transform: rotate(45deg);
  transform-origin: 10% 10%;
}

.db-menu-toggle:checked ~ .db-header-inner .db-hamburger span:nth-child(2) {
  opacity: 0;
  transform: scale(0);
}

.db-menu-toggle:checked ~ .db-header-inner .db-hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transform-origin: -10% -10%;
}

.db-menu-label {
  display: none;
}

.db-brand-name {
  font-family: "Playfair Display", serif;
  text-align: left;
  font-size: 0.875rem;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 5px;
  color: var(--black);
  position: absolute;
  left: 60%;
  transform: translateX(-50%);
}

.db-menu-contact-span-container {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  align-content: center;
  gap: 1rem;
}

.db-menu-contact-span-container span {
  padding: 0 0px 0 5px;
  font-size: 0.875rem;
  color: var(--black);
}

.db-menu-contact-span-container a {
  text-decoration: none;
}

.db-overlay-nav-ul {
  padding: 10px 0;
}

.location-icon {
  display: flex;
  align-items: flex-end;
}

.db-desktop-contact {
  display: none;
}

.db-overlay-nav {
  display: none;
}

.db-overlay-nav {
  padding: 30px 0;
  display: block;
  position: absolute;
  background-color: var(--white);
  left: -9999px;
  width: 100%;
  opacity: 0;
  pointer-events: none;
  top: 120px;
  left: 0px;
  background-color: var(--sand);
}

.db-menu-toggle:checked ~ .db-header-inner .db-overlay-nav {
  opacity: 1;
  pointer-events: auto;
  left: 0;
  top: 120px;
  display: flex;
  flex-direction: column;
  justify-content: start;
  text-align: center;
  min-height: 100vh;
  z-index: 1300;
}

.db-overlay-nav li {
  list-style: none;
  padding: 10px 0;
}

.db-overlay-nav li a {
  text-decoration: none;
  color: var(--black);
  font-size: 0.875rem;
  letter-spacing: 1px;
  transition: color 0.2s;
}

.db-overlay-nav li a:hover {
  list-style: none;
  color: var(--white);
}

.db-overlay-nav .db-menu-social {
  color: var(--black);
}

.material-icons-outlined {
  font-size: 30px;
  color: var(--black);
}

.material-icons-outlined:hover {
  color: var(--white);
}

.db-menu-contact {
  padding: 20px 0;
}

.social-icons a {
  color: var(--black);
  font-size: 30px;
  text-decoration: none;
  padding: 20px 20px;
}

.social-icons a:hover {
  color: var(--white);
}

.unified-footer {
  background-color: var(--darksand);
  padding: 20px 0;
  text-align: center;
  border-top: 1px solid var(--black);
}

.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.footer-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.footer-item.contact,
.footer-item.location,
.footer-item.social {
  align-items: center;
  text-align: left;
  gap: 10px;
}

.footer-item.contact h3,
.footer-item.location h3,
.footer-item h3, .footer-item.social h3  {
  margin-bottom: 10px;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--black);
}

.footer-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  color: var(--black);
}

.footer-item.contact a,
.footer-item.location a,
.footer-item a  {
  text-decoration: none;
  color: var(--black);
}

.footer-item.social h3  {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--black);
}

.social-networks a i {
  font-size: 2rem;
  color: var(--black);
  transition: color 0.3s ease, transform 0.3s ease;
  padding-right: 10px;
}

.footer-logo {
  font-size: 1.2rem;
  letter-spacing: 5px;
  margin-top: 40px;
  font-weight: bold;
}

.portfolio {
  padding: 0;
  text-align: center;
}

.portfolio h1 {
  color: var(--black);
  margin: 0;
  padding-top: 20px;
  text-align: center;
}

.photos {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  width: 100%;
  margin: 0;
  padding: 10px 0;
  box-sizing: border-box;
}

.photos img {
  width: 380px;
  height: 570px;
  flex-shrink: 0;
  border-radius: 170px;
  object-fit: cover;
  margin: 10px;
  max-width: 100%;
}

.main-contact {
  background-color: var(--darksand);
  padding: 40px;
  margin: 20px;
}

.contact-section-1 {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-wrap: wrap;
  text-align: left;
  gap: 10px;
}

.contact-heading {
  font-size: 1.2rem;
  font-weight: bolder;
  padding: 20px 0 10px;
  margin-bottom: 10px;
}

.contact-opening-time {
  font-size: 1rem;
  padding: 30px 0 10px 0;
  font-weight: bolder;
}

.contact-item {
  display: flex;
  gap: 15px;
  align-items: center;
  font-size: 1rem;
}

#contact-item-location {
  display: flex;
  gap: 15px;
  align-items: center;
}

.contact-row {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 1rem;
  color: var(--black);
}

.contact-section-2 span {
  padding-top: 20px;
}

.contact-item-a {
  padding: 20px 0px;
  text-decoration: none;
  color: var(--black);
}

.contact-item-a span {
  padding-left: 10px;
}

.contact-social-networks {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  padding-top: 30px;
  gap: 30px;
}

.contact-social-networks a i {
  font-size: 2.5rem;
  color: var(--black);
  transition: color 0.3s ease, transform 0.3s ease;
}

.contact-social-networks a:hover i.fa {
  color: var(--white);
  transform: scale(1.1);
}

section.contact-section {
  text-align: left;
  width: 100%;
}

.section-divider {
  border: none;
  border-top: 2px solid var(--black);
  width: 100%;
  margin: 1rem 0;
}

.contact-heading {
  padding: 10px 0;
  font-size: 1.2rem;
}

form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

fieldset {
  border: none;
  padding: 0;
  margin: 0;
}

legend {
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.radio-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

label {
  font-weight: 600;
  margin-bottom: 0.3rem;
}

input[type="date"],
textarea {
  padding: 0.5rem;
  border: 1px solid var(--black);
  border-radius: 4px;
  font-size: 1rem;
  width: 90%;
}

input:invalid:required,
textarea:invalid:required {
  border-color: var(--error);
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group span.error {
  color: var(--error);
  font-size: 0.9rem;
  display: none;
}

input:invalid + span.error,
textarea:invalid + span.error {
  display: block;
}

.contact-submit-button {
  text-align: center;
  padding: 0.75rem 1.25rem;
  border: 1px solid var(--black);
  background-color: var(--section-bg-color);
  color: var(--black);
  text-decoration: none;
  font-weight: bold;
  border-radius: 4px;
  margin: 1rem auto 0;
  width: fit-content;
}

.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--black);
  justify-content: center;
  align-items: center;
}

.modal:target {
  display: flex;
}

.modal-content {
  background-color: var(--white);
  padding: 2rem;
  border-radius: 8px;
  max-width: 90%;
  text-align: center;
}

.modal-content h2 {
  color: var(--success);
  margin-top: 0;
}

.modal-content a {
  margin-top: 1rem;
  display: inline-block;
  text-decoration: underline;
  color: var(--black);
}

.hero-video-section {
  max-width: 100%;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  background: var(--sand);
}

.video-container {
  max-width: 100%;
  max-height: 85vh;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 16 / 9;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: var(--black);
  border: none;
}

.hero-text {
  padding: 0 1rem;
}

.hero-text h1 {
  text-align: center;
  font-weight: bold;
  padding-top: 30px;
  padding-bottom: 30px;
}

.hero-text p {
  font-family: "Playfair Display", serif;
  line-height: 1.6;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 20px;
}

.portfolio-gallery {
  padding: 1.5rem;
  background-color: var(--lighter-sand-bg);
  text-align: center;
}

.portfolio-gallery h2 {
  font-family: "Trirong", serif;
  font-size: 2em;
  color: var(--black);
  margin-bottom: 2rem;
}

.gallery-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 500px;
  margin: 0 auto;
}

.gallery-item {
  margin: 0;
  width: 100%;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 4px 8px var(--black);
}

.gallery-item img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  display: block;
  border-radius: 0.75rem;
  transition: transform 0.3s ease-in-out;
} 

.gallery-item img:hover {
  transform: scale(1.03);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip-path: inset(0 0 0 0);
  border: 0;
}

.bio {
  padding: 1rem;
  background-color: var(--section-bg-color);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin: 30px 0px 20px 0;
}

.section-heading {
  text-align: center;
  font-weight: bold;
  margin-top: 1rem;
  margin-bottom: 0.5rem;
  letter-spacing: 2px;
}

.intro-text,
.founder-bio p {
  font-family: "Playfair Display", serif;
  line-height: 1.6;
  text-align: center;
  margin: 0 auto;
  padding: 0 1rem;
  max-width: 1200px;
}

.founder-image {
  margin: 0 auto;
  max-width: 100%;
}

.founder-image img {
  width: 100%;
  border-radius: 0.5rem;
  display: block;
  height: auto;
}

.founder-bio h2 {
  text-align: center;
  font-size: 1.3rem;
  margin-top: 1rem;
  letter-spacing: 1px;
  padding-bottom: 20px;
}

.learn-button {
  text-align: center;
  padding: 0.75rem 1.25rem;
  border: 1px solid var(--black);
  background-color: var(--section-bg-color);
  color: var(--black);
  text-decoration: none;
  font-weight: bold;
  border-radius: 4px;
  margin: 1rem auto 0;
  width: fit-content;
}

.button-wrapper {
  display: flex;
  justify-content: center;
}

.about-hero {
  text-align: center;
  max-width: 100vw;
  margin: 0 auto;
  padding-bottom: 20px;
}

.hero-image-about {
  width: 100%;
  height: auto;
  max-height: 600px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 1.5rem;
}

.about-text h1 {
  font-size: 2rem;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

.about-text p {
  max-width: 90%;
  margin: 0 auto 1rem auto;
  font-size: 1rem;
  padding: 0 1rem;
}

.founder-profile {
  text-align: center;
  max-width: 90%;
  margin: 0 auto;
  padding: 5px 20px;
}

.founder-text h2 {
  font-size: 1.5rem;
  padding-top: 10px;
  margin-bottom: 0.5rem;
}

.founder-text h3 {
  font-weight: bold;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.founder-text p {
  max-width: 90%;
  margin: 0 auto;
  font-size: 1rem;
}

.team-container {
  max-width: 1200px;
  margin: 0 auto;
}

.team-heading {
  font-size: 1.2rem;
  text-align: center;
  font-weight: bold;
  margin-bottom: 1rem;
}

.team-intro {
  text-align: center;
  font-size: 1rem;
  max-width: 80vw;
  margin: 0 auto 2rem auto;
  line-height: 1.6;
}

.team-grid {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  align-items: center;
  padding: 10px;
}

.team-member {
  text-align: center;
  max-width: 350px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.image-wrapper {
  width: 300px;
  height: 400px;
  overflow: hidden;
  margin-bottom: 1rem;
}

.team-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border: 2px solid var(--black);
}

.member-name {
  font-size: 1.2rem;
  font-weight: bold;
  margin: 0.5rem 0 0.2rem;
}

.member-title {
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.member-description {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.6;
}

.cta-section {
  background: var(--section-bg-color);
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 20px 0 20px 0;
}

.cta-card {
  position: relative;
  width: 90%;
  margin: 0 auto;
  max-width: 500px;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 0 2px 8px var(--black);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.88);
}

.cta-btn {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: var(--white);
  color: var(--black);
  font-family: 'Georgia', serif;
  font-size: 1.08rem;
  letter-spacing: 0.04em;
  padding: 18px 0;
  width: 80%;
  max-width: 340px;
  text-align: center;
  text-decoration: none;
  border-radius: 2px;
  font-weight: bold;
  box-shadow: 0 1px 4px var(--black);
  transition: background 0.2s, color 0.2s;
}

.cta-btn:hover,
.cta-btn:focus {
  background: var(--white);
  color: var(--sand);
  outline: none;
}

.about-gallery {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 32px 0 32px 0;
  width: 100%;
  align-items: center;
  background: var(--section-bg-color); 
}

.about-gallery img {
  width: 100%;
  max-width: 250px;
  object-fit: cover;
  display: block;
}

@media (min-width: 768px) {

 h1 {
    font-family: "Playfair Display", serif;
    margin: 0;
    font-size: 1.8rem;
  }

  h2, h3 {
    font-family: "Playfair Display", serif;
    margin: 0;
    font-size: 1.5rem;
  }
  
  .db-brand-name {
    font-family: "Playfair Display", serif;
    text-align: right;
    font-size: 1rem;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: 5px;
    color: var(--black);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }

  .db-menu-label {
    display: block;
    font-family: "Playfair Display", serif;
    font-size: 1rem;
    color: var(--black);
    letter-spacing: 2px;
    cursor: pointer;
  }

  .db-desktop-contact {
    display: block;
  }

  .db-desktop-contact a {
    display: block;
    font-family: "Playfair Display", serif;
    font-size: 1rem;
    color: var(--black);
    letter-spacing: 2px;
    cursor: pointer;
    text-decoration: none;
  }

  .db-desktop-contact a:hover {
    color: var(--sand);
    font-weight: 700;
  }

  .db-overlay-nav li a {
    font-size: 1.2rem;
  }

  .db-menu-contact {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    gap: 30px;
    padding-bottom: 20px;
  }

  .db-menu-contact-span-container span {
    padding: 0 0px 0 10px;
    font-size: 1.2rem;
  }

  .social-icons {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 10px 0;
    padding-bottom: 15px;
  }

  .social-icons a {
    color: var(--black);
    font-size: 37px;
    text-decoration: none;
    padding: 20px 20px;
  }

  .social-icons a:hover {
    color: var(--white);
  }

  .material-icons-outlined {
    font-size: 30px;
    color: var(--black);
  }

  .about-hero {
    text-align: center;
    max-width: 100vw;
    margin: 0 auto;
    padding-bottom: 10px;
  }

  .founder-profile {
    text-align: center;
    max-width: 90%;
    margin: 0 auto;
    padding: 20px 20px;
   }

  .photos {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    padding: 10px 0;
    gap: 40px;
  }

  input[type="date"],
  textarea {
    padding: 0.5rem;
    border: 1px solid var(--black);
    border-radius: 4px;
    font-size: 1rem;
    width: 50%;
  }

  .contact-submit-button {
    text-align: center;
    padding: 0.75rem 1.25rem;
    border: 1px solid var(--black);
    background-color: var(--section-bg-color);
    color: var(--black);
    text-decoration: none;
    font-weight: bold;
    border-radius: 4px;
    margin: 1rem auto 0;
    width: fit-content;
  }

  .gallery-grid {
    display: grid; 
    grid-template-columns: repeat(2, 1fr); 
    gap: 2rem; 
    max-width: 1000px; 
  }

  .gallery-item img {
    height: 400px; 
  }

  .intro-text p {
    font-size: 1.15rem;
    letter-spacing: 0.5px;
    max-width: 1200px;
  }

  .footer-logo {
    font-size: 1.5rem;
    letter-spacing: 5px;
    margin-top: 40px;
    font-weight: bold;
  }

  .db-overlay-nav li a {
    list-style: none;
    font-size: 1.2rem;
  }

  .about-text h1 {
    font-size: 1.8rem;
  }

  .founder-text h2 {
    font-size: 1.5rem;
    padding-top: 20px;
  }

  .about-text p {
    max-width: 1200px;
    font-size: 1.1rem;
  }

  .section-heading {
    font-size: 2rem;
    letter-spacing: 2px;
  }

  .team-heading {
    font-size: 1.5rem;
  }

  .team-intro {
    font-size: 1.1rem;
    max-width: 1200px;
    max-width: 80vw;
  }

  .team-grid {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    padding: 10px;
    overflow: hidden;
  }

  .team-member {
    flex: 1;
    text-align: left;
  }

  .member-description {
    margin: 0.5rem;
  }

  .cta-section {
    gap: 32px;
    padding: 36px 0;
  }

  .cta-card {
    max-width: 700px;
    aspect-ratio: 1/1;
  }

  .cta-btn {
    font-size: 1.2rem;
    padding: 22px 0;
    max-width: 400px;
  }

  .about-gallery {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px; 
    padding: 40px 0 40px 0;
    max-width: 1400px;
    margin: 0 auto;
  }

  .about-gallery img {
    width: 100%;
    max-width: 500px;
    aspect-ratio: 1/1;
    overflow: hidden;
  } 

  .portfolio h1 {
    color: var(--black);
    margin: 0;
    padding-top: 20px;
    text-align: center;
}
  
}

@media (min-width: 1024px) {

  .db-brand-name {
    font-family: "Playfair Display", serif;
    text-align: right;
    font-size: 1.2rem;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: 5px;
    color: var(--black);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }

  .contact-p1 {
    max-width: 600px;
  }

  .contact-item {
    display: flex;
    gap: 15px;
    align-items: center;
    font-size: 1.2rem;
  }

  .contact-opening-time {
    font-size: 1.2rem;
    padding: 20px 0 10px 0;
    font-weight: bold;
  }

  input[type="date"],
  textarea {
    padding: 0.5rem;
    border: 1px solid var(--black);
    border-radius: 4px;
    font-size: 1rem;
    width: 40%;
  }

  .contact-submit-button {
    text-align: center;
    padding: 0.75rem 1.25rem;
    border: 1px solid var(--black);
    background-color: var(--section-bg-color);
    color: var(--black);
    text-decoration: none;
    font-weight: bold;
    border-radius: 4px;
    margin: 1rem auto 0;
    width: fit-content;
   }

  .footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 40px 20px;
    text-align: center;
  }

  .footer-item {
    align-items: center;
  }

  .social-networks {
    flex-direction: row;
    justify-content: center;
  }

  .social-networks a i {
    font-size: 2rem;
    color: var(--black);
    transition: color 0.3s ease, transform 0.3s ease;
    padding-right: 10px;
  }

  .social-networks a:hover i.fa {
    color: white;
    transform: scale(1.1);
  }

  .unified-footer {
    border-top: 1px solid var(--black);
  }

  .founder-image img {
    max-width: 500px;
    margin: 0 auto;
  }

  .portfolio-gallery {
    padding: 3rem; 
  }

  .gallery-grid {
    gap: 2.5rem; 
  }

  .gallery-item img {
    height: 450px; 
  }

  .db-overlay-nav li a {
    list-style: none;
    font-size: 1.5rem;
  }

  .db-menu-contact-span-container span {
    padding: 0 0px 0 10px;
    font-size: 1.5rem;
  }

  .cta-section {
    gap: 40px;
    padding: 48px 0 60px 0;
  }
  
  .cta-card {
    max-width: 700px;
    max-height: 500px;
    aspect-ratio: 1/1;
  }

  .cta-btn {
    font-size: 1.3rem;
    padding: 26px 0;
    max-width: 500px;
  }

  .about-gallery {
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    gap: 40px; 
    padding: 40px 0 40px 0;
    max-width: 1400px;
    margin: 0 auto;
  }

  .about-gallery img {
    max-width: 400px;
  }

}
