.container {
  max-width: 1200px;
  margin: 10px auto;
  padding: 20px;
  display: grid;
  grid-template-rows: auto 1fr auto;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

.content-wrapper {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 30px;
  margin: 60px 0;
  position: relative;
}

.middle-section {
  grid-column: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.middle-circle {
  width: 120px;
  height: 120px;
  background-color: #bd5734;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  z-index: 5;
  text-align: center;
  font-size: 0.9rem;
  padding: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  font-weight: bold;
  position: absolute;
  left: calc(50% - 60px);
  top: 50%;
  transform: translateY(-50%);
}

.title-card {
  background-color: #bd5734;
  color: white;
  border-radius: 30px;
  padding: 5px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  width: 80%;
  max-width: 500px;
  margin: 20px auto;
  position: relative;
  z-index: 10;
}

h1 {
  font-size: 1.9rem;
}

.card h2 {
  color: #bd5734;
  text-align: center;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #bd5734;
  width: 70%;
}
.card-left {
  position: relative;
  border-radius: 30px;
  background-color: #d7d6d6;
  padding: 30px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  min-height: 400px;
  max-height: 600px;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 150px 30px 30px 150px;
}
.card-right {
  position: relative;
  border-radius: 30px;
  background-color: #d7d6d6;
  padding: 30px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  min-height: 400px;
  max-height: 600px;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 30px 150px 150px 30px;
}

.link-list {
  list-style-type: none;
  padding: 0;
  margin: 0;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  justify-items: center;
}
.link-list li {
  width: 250px;
  padding: 10px;
  transition: all 0.3s ease;
  border-radius: 10px;
  background-color: #a79e84;
}
.link-list li:hover {
  transform: translateY(-3px);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
  background-color: rgba(235, 197, 184, 0.2);
  transform: translateY(-3px) scale(1.05);
}
.link-list a {
  color: #7a3b2e;
  text-decoration: none;
  transition: color 0.3s;
  position: relative;
  display: block;
  text-align: center;
}
.link-list a:hover {
  color: #bd5734;
  text-decoration: underline;
}

.footer {
  position: relative;
  margin-top: 50px;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  margin-bottom: -20px;
}
.footer-curve {
  background-color: #7a3b2e;
  height: 60px;
  border-radius: 50% 50% 0 0;
  margin-bottom: -1px;
  width: 100%;
}
.footer-content {
  background-color: #7a3b2e;
  text-align: center;
  color: #faf6e7;
  padding: 30px 20px;
  width: 100%;
}
.footer-content a {
  color: #faf6e7;
  text-decoration: none;
  margin: 0 10px;
  transition: color 0.3s;
}
.footer-content a:hover {
  color: #e0a590;
}

html,
body {
  overflow-x: hidden;
  max-width: 100%;
}

.container {
  position: relative;
  overflow: visible;
}

@media (max-width: 768px) {
  .content-wrapper {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
  }
  .card-left, .card-right {
    grid-column: 1;
    border-radius: 30px;
  }
  .middle-section {
    grid-column: 1;
    height: 50px;
  }
  .middle-circle {
    position: relative;
    transform: none;
    left: auto;
    top: auto;
    margin: 20px auto;
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  font-family: "Faculty Glyphic", sans-serif;
  background-color: #a79e84;
  color: #454140;
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  display: grid;
  grid-template-rows: auto 1fr auto;
  min-height: 100vh;
}/*# sourceMappingURL=style.css.map */