@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200;1,200&family=Quicksand:wght@500&display=swap');

body {
  margin: 0;
  padding: 0;
  font-family: 'Nunito', sans;
  background: #f6f8fb;
  color: #222;
}

h1, h2, h3, .centered h1 {
  font-family: 'Quicksand';
  font-weight: 500;
}

.para-div p,
p {
  font-family: 'Nunito';
  font-weight: 200;
}

.container {
  display: flex;
  width: 100%;
  min-height: 100vh;
  background: #f6f8fb;
}

.left-div {
  position: sticky;
  top: 0;
  flex: 0 0 20%;
  padding: 24px 0 24px 0;
  min-height: 100vh;
  background: linear-gradient(135deg, #6ea8fe 70%, #457b9d 100%);
  box-shadow: 2px 0 12px rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
  align-items: center;
  border-top-right-radius: 24px;
  border-bottom-right-radius: 24px;
}

.centered {
  width: 90%;
  margin: auto;
  text-align: center;
  color: #fff;
}

.centered h1 {
  margin-bottom: 32px;
  letter-spacing: 2px;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 2px 8px rgba(70,123,157,0.10);
}

.centered a {
  display: block;
  margin: 12px 0;
  padding: 10px 0;
  color: #fff;
  background: rgba(255,255,255,0.10);
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  box-shadow: 0 1px 4px rgba(70,123,157,0.05);
}

.centered a:hover, .centered a:focus {
  background: #fff;
  color: #457b9d;
  box-shadow: 0 2px 12px rgba(70,123,157,0.12);
  text-decoration: none;
}

.right-div {
  flex: 0 0 80%;
  padding: 40px 5vw;
  min-height: 100vh;
  background: #fafdff;
  border-top-left-radius: 32px;
  border-bottom-left-radius: 32px;
  box-shadow: -2px 0 12px rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.para-div {
  width: 100%;
  max-width: 900px;
  margin: 0 auto 32px auto;
  text-align: center;
  padding: 32px 24px;
  background: #f1f5fa;
  border-radius: 18px;
  box-shadow: 0 2px 16px rgba(70,123,157,0.07);
}

.para-div h1, .para-div h2 {
  color: #457b9d;
  margin-bottom: 18px;
  text-shadow: 0 2px 8px rgba(70,123,157,0.09);
}

.para-div p {
  color: #222;
  line-height: 1.6;
  margin: 0;
}

a {
  transition: color 0.2s;
}

@media (max-width: 900px) {
  .container {
    flex-direction: column;
  }
  .left-div, .right-div {
    flex: unset;
    width: 100%;
    min-height: unset;
    border-radius: 0;
    box-shadow: none;
  }
  .right-div {
    padding: 24px 2vw;
  }
}
