:root {
  --primary-peach: #FFD6C9;
  --secondary-white: #FFFDF9;
  --pastel-lilac: #E9DFF7;
  --mint-green: #CDEDE2;
  --butter-yellow: #FFF1B8;
  --soft-coral: #FFB7A5;
  --text-dark: #2C2C2C;
  --text-light: #5A5A5A;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: var(--secondary-white);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: Georgia, 'Times New Roman', serif;
  letter-spacing: 0.5px;
  color: var(--text-dark);
}

h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 1rem;
}

h2 {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  margin-bottom: 0.8rem;
}

h3 {
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  margin-bottom: 0.6rem;
}

p {
  color: var(--text-light);
  font-size: clamp(1rem, 2vw, 1.1rem);
  margin-bottom: 1rem;
}

a {
  text-decoration: none;
  color: var(--text-dark);
  transition: color 0.3s ease;
}

a:hover {
  color: var(--soft-coral);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}

header {
  background-color: var(--secondary-white);
  padding: 1.5rem 2rem;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--soft-coral);
  font-family: Georgia, serif;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
  flex-wrap: wrap;
}

.burger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.burger span {
  width: 25px;
  height: 3px;
  background-color: var(--text-dark);
  border-radius: 3px;
  transition: all 0.3s ease;
}

main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}

section {
  margin: 4rem 0;
  padding: 2rem;
}

.welcome-moment {
  background: linear-gradient(135deg, var(--primary-peach) 0%, var(--butter-yellow) 100%);
  border-radius: 30px;
  padding: 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  transform: rotate(-1deg);
  margin: 2rem 0;
}

.welcome-moment::before {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: var(--pastel-lilac);
  border-radius: 50%;
  top: -50px;
  right: -50px;
  opacity: 0.3;
}

.staggered-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.card {
  background: var(--secondary-white);
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transform: rotate(1deg);
}

.card:nth-child(even) {
  transform: rotate(-1deg);
}

.card:hover {
  transform: rotate(0deg) translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.card-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.vertical-flow {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  margin: 3rem 0;
}

.flow-item {
  padding: 2rem;
  border-radius: 20px;
  margin-left: 0;
}

.flow-item:nth-child(odd) {
  background: var(--mint-green);
  margin-left: 5%;
}

.flow-item:nth-child(even) {
  background: var(--pastel-lilac);
  margin-right: 5%;
}

.image-cluster {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin: 3rem 0;
}

.cluster-item {
  position: relative;
  transform: rotate(2deg);
}

.cluster-item:nth-child(even) {
  transform: rotate(-2deg);
}

.cluster-item img {
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.handwritten-caption {
  font-style: italic;
  color: var(--text-light);
  margin-top: 0.5rem;
  font-size: 0.9rem;
}

.text-first-section {
  background: linear-gradient(135deg, var(--primary-peach) 0%, var(--soft-coral) 100%);
  padding: 4rem 3rem;
  border-radius: 25px;
  margin: 3rem 0;
  transform: rotate(0.5deg);
}

.zigzag-section {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin: 3rem 0;
}

.zigzag-item {
  padding: 2rem;
  border-radius: 20px;
  max-width: 80%;
}

.zigzag-item:nth-child(odd) {
  background: var(--butter-yellow);
  margin-left: 0;
}

.zigzag-item:nth-child(even) {
  background: var(--mint-green);
  margin-left: 20%;
}

.scrapbook-collage {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
  margin: 3rem 0;
}

.collage-item {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transform: rotate(1deg);
}

.collage-item:nth-child(3n) {
  transform: rotate(-1deg);
}

.collage-item:nth-child(4n) {
  transform: rotate(2deg);
}

.lifestyle-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.lifestyle-card {
  background: var(--secondary-white);
  padding: 2rem;
  border-radius: 20px;
  border: 2px solid var(--primary-peach);
  transition: all 0.3s ease;
}

.lifestyle-card:hover {
  border-color: var(--soft-coral);
  transform: translateY(-5px);
}

.editorial-block {
  background: var(--pastel-lilac);
  padding: 3rem;
  border-radius: 25px;
  margin: 3rem 0;
  line-height: 1.8;
}

.contact-section {
  background: linear-gradient(135deg, var(--mint-green) 0%, var(--pastel-lilac) 100%);
  padding: 3rem;
  border-radius: 30px;
  text-align: center;
  margin: 3rem 0;
}

.cta-button {
  display: inline-block;
  background: var(--soft-coral);
  color: white;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  margin-top: 1.5rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1.1rem;
}

.cta-button:hover {
  background: var(--primary-peach);
  transform: scale(1.05);
}

.vertical-shelf {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin: 3rem 0;
}

.shelf-item {
  background: var(--secondary-white);
  padding: 2rem;
  border-radius: 20px;
  border-left: 5px solid var(--soft-coral);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  margin-left: 10%;
}

.shelf-item:nth-child(even) {
  margin-left: 0;
  margin-right: 10%;
  border-left: none;
  border-right: 5px solid var(--mint-green);
}

.floating-groups {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.floating-group {
  background: var(--secondary-white);
  padding: 2rem;
  border-radius: 25px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  transform: rotate(1deg);
  transition: all 0.3s ease;
}

.floating-group:nth-child(3n) {
  transform: rotate(-1deg);
}

.floating-group:hover {
  transform: rotate(0deg) translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.magazine-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin: 3rem 0;
}

.magazine-text {
  padding: 2rem;
}

.magazine-image {
  border-radius: 20px;
  overflow: hidden;
}

.timeline {
  position: relative;
  padding: 2rem 0;
  margin: 3rem 0;
}

.timeline-item {
  padding: 2rem;
  margin: 2rem 0;
  background: var(--secondary-white);
  border-radius: 20px;
  position: relative;
  margin-left: 10%;
  border-left: 4px solid var(--primary-peach);
}

.timeline-item:nth-child(even) {
  margin-left: 0;
  margin-right: 10%;
  border-left: none;
  border-right: 4px solid var(--mint-green);
}

.timeline-item::before {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  background: var(--soft-coral);
  border-radius: 50%;
  top: 50%;
  left: -12px;
  transform: translateY(-50%);
}

.timeline-item:nth-child(even)::before {
  left: auto;
  right: -12px;
}

.irregular-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin: 3rem 0;
}

.grid-item {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.grid-item:nth-child(2n) {
  grid-row: span 2;
}

.grid-item:nth-child(3n) {
  transform: rotate(1deg);
}

.grid-item:nth-child(5n) {
  transform: rotate(-1deg);
}

form {
  background: var(--secondary-white);
  padding: 2.5rem;
  border-radius: 25px;
  max-width: 600px;
  margin: 2rem auto;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.form-group {
  margin-bottom: 1.5rem;
}

form label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
  font-weight: 500;
}

form input,
form textarea {
  width: 100%;
  padding: 0.8rem;
  border: 2px solid var(--primary-peach);
  border-radius: 10px;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.3s ease;
}

form input:focus,
form textarea:focus {
  outline: none;
  border-color: var(--soft-coral);
}

form textarea {
  resize: vertical;
  min-height: 120px;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-top: 1rem;
}

.checkbox-group input[type="checkbox"] {
  width: auto;
  margin-top: 0.3rem;
}

footer {
  background: var(--text-dark);
  color: var(--secondary-white);
  padding: 3rem 2rem;
  margin-top: 4rem;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.footer-section h3 {
  color: var(--primary-peach);
  margin-bottom: 1rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section a {
  color: var(--secondary-white);
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: var(--primary-peach);
}

.footer-bottom {
  text-align: center;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: var(--soft-coral);
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 999;
  border: none;
  font-size: 1.5rem;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--primary-peach);
  transform: scale(1.1);
}

.thankyou-page {
  text-align: center;
  padding: 4rem 2rem;
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.thankyou-page h1 {
  color: var(--soft-coral);
  margin-bottom: 1.5rem;
}

.legal-page {
  max-width: 800px;
  margin: 2rem auto;
  padding: 2rem;
  background: var(--secondary-white);
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.legal-page h1 {
  color: var(--soft-coral);
  margin-bottom: 2rem;
}

.legal-page h2 {
  color: var(--text-dark);
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.legal-page p {
  margin-bottom: 1rem;
}

.legal-page ul {
  margin-left: 2rem;
  margin-bottom: 1rem;
}

.legal-page li {
  margin-bottom: 0.5rem;
}

.diagonal-section {
  background: linear-gradient(135deg, var(--mint-green) 0%, var(--pastel-lilac) 100%);
  padding: 3rem;
  border-radius: 25px;
  margin: 3rem 0;
  transform: rotate(-0.5deg);
  position: relative;
  overflow: hidden;
}

.diagonal-section::before {
  content: '';
  position: absolute;
  width: 150px;
  height: 150px;
  background: var(--butter-yellow);
  border-radius: 50%;
  top: -30px;
  left: -30px;
  opacity: 0.4;
}

.spiral-layout {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin: 3rem 0;
  justify-content: center;
}

.spiral-item {
  background: var(--secondary-white);
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  flex: 0 1 calc(33.333% - 2rem);
  min-width: 250px;
  transform: rotate(1.5deg);
  transition: all 0.3s ease;
}

.spiral-item:nth-child(2n) {
  transform: rotate(-1.5deg);
}

.spiral-item:hover {
  transform: rotate(0deg) scale(1.05);
}

.wave-section {
  background: var(--primary-peach);
  padding: 3rem;
  border-radius: 30px;
  margin: 3rem 0;
  position: relative;
  clip-path: polygon(0 10%, 100% 0, 100% 90%, 0 100%);
}

.overlap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 3rem 0;
  position: relative;
}

.overlap-item {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.overlap-item:nth-child(1) {
  grid-column: 1 / 3;
  transform: rotate(-1deg);
}

.overlap-item:nth-child(2) {
  grid-column: 2 / 4;
  transform: rotate(1deg);
  margin-top: -20px;
}

.overlap-item:nth-child(3) {
  grid-column: 1 / 2;
  transform: rotate(-0.5deg);
}

.overlap-item:nth-child(4) {
  grid-column: 3 / 4;
  transform: rotate(0.5deg);
}

.icon-text-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.icon-text-item {
  text-align: center;
  padding: 1.5rem;
  background: var(--secondary-white);
  border-radius: 20px;
  border: 2px dashed var(--primary-peach);
  transition: all 0.3s ease;
}

.icon-text-item:hover {
  border-color: var(--soft-coral);
  background: var(--butter-yellow);
  transform: translateY(-5px);
}

.icon-text-item .icon {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  display: block;
}

.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin: 3rem 0;
  align-items: center;
}

.split-image {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  transform: rotate(2deg);
}

.split-content {
  padding: 2rem;
}

.stacked-cards {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin: 3rem 0;
  position: relative;
}

.stacked-card {
  background: var(--secondary-white);
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  margin-left: 5%;
  position: relative;
  z-index: 1;
}

.stacked-card:nth-child(2) {
  margin-left: 10%;
  margin-top: -30px;
  z-index: 2;
  background: var(--mint-green);
}

.stacked-card:nth-child(3) {
  margin-left: 15%;
  margin-top: -30px;
  z-index: 3;
  background: var(--pastel-lilac);
}

.circle-layout {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin: 3rem 0;
}

.circle-item {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: var(--secondary-white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: all 0.3s ease;
  overflow: hidden;
  word-wrap: break-word;
  box-sizing: border-box;
}

.circle-item:hover {
  transform: scale(1.1);
  background: var(--butter-yellow);
}

.circle-item .icon {
  font-size: 3rem;
  margin-bottom: 0.5rem;
  flex-shrink: 0;
}

.circle-item h3 {
  font-size: 1rem;
  margin: 0;
  padding: 0;
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
  max-width: 100%;
}

@media (max-width: 768px) {
  header {
    padding: 1rem 1.5rem;
  }

  .nav-links {
    position: fixed;
    top: 70px;
    left: -100%;
    background: var(--secondary-white);
    width: 100%;
    flex-direction: column;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: left 0.3s ease;
    z-index: 999;
  }

  .nav-links.active {
    left: 0;
  }

  .burger {
    display: flex;
  }

  main {
    padding: 1.5rem;
  }

  section {
    margin: 2.5rem 0;
    padding: 1.5rem;
  }

  h1 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
  }

  h2 {
    font-size: clamp(1.4rem, 3.5vw, 2rem);
  }

  .welcome-moment {
    padding: 2rem 1.5rem;
    transform: rotate(0deg);
  }

  .staggered-cards {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .card {
    transform: rotate(0deg);
  }

  .card:nth-child(even) {
    transform: rotate(0deg);
  }

  .vertical-flow .flow-item {
    margin-left: 0;
    margin-right: 0;
  }

  .image-cluster {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .cluster-item {
    transform: rotate(0deg);
  }

  .cluster-item:nth-child(even) {
    transform: rotate(0deg);
  }

  .magazine-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .zigzag-item {
    max-width: 100%;
    margin-left: 0;
  }

  .zigzag-item:nth-child(even) {
    margin-left: 0;
  }

  .scrapbook-collage {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
  }

  .lifestyle-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .shelf-item,
  .shelf-item:nth-child(even) {
    margin-left: 0;
    margin-right: 0;
    border-left: 5px solid var(--soft-coral);
    border-right: none;
  }

  .floating-groups {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .floating-group {
    transform: rotate(0deg);
  }

  .floating-group:nth-child(3n) {
    transform: rotate(0deg);
  }

  .timeline-item,
  .timeline-item:nth-child(even) {
    margin-left: 0;
    margin-right: 0;
    border-left: 4px solid var(--primary-peach);
    border-right: none;
  }

  .timeline-item::before {
    left: -12px;
    right: auto;
  }

  .timeline-item:nth-child(even)::before {
    left: -12px;
    right: auto;
  }

  .irregular-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .grid-item:nth-child(2n) {
    grid-row: span 1;
  }

  .editorial-block {
    padding: 2rem 1.5rem;
  }

  .contact-section {
    padding: 2rem 1.5rem;
  }

  .footer-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  form {
    padding: 2rem 1.5rem;
  }

  .back-to-top {
    width: 45px;
    height: 45px;
    bottom: 1.5rem;
    right: 1.5rem;
  }

  .spiral-layout {
    flex-direction: column;
  }

  .spiral-item {
    flex: 1 1 100%;
    transform: rotate(0deg);
  }

  .spiral-item:nth-child(2n) {
    transform: rotate(0deg);
  }

  .overlap-grid {
    grid-template-columns: 1fr;
  }

  .overlap-item {
    grid-column: 1 / -1;
    transform: rotate(0deg);
    margin-top: 0;
  }

  .overlap-item:nth-child(2) {
    margin-top: 0;
  }

  .icon-text-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .split-section {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .split-image {
    transform: rotate(0deg);
  }

  .stacked-cards .stacked-card {
    margin-left: 0;
    margin-top: 0;
  }

  .stacked-card:nth-child(2),
  .stacked-card:nth-child(3) {
    margin-left: 0;
    margin-top: 0;
  }

  .circle-layout {
    gap: 1.5rem;
  }

  .circle-item {
    width: 150px;
    height: 150px;
    padding: 1rem;
  }

  .circle-item h3 {
    font-size: 0.85rem;
  }

  .circle-item .icon {
    font-size: 2.5rem;
    margin-bottom: 0.3rem;
  }
}

@media (max-width: 320px) {
  header {
    padding: 0.8rem 1rem;
  }

  .logo {
    font-size: 1.2rem;
  }

  main {
    padding: 1rem;
  }

  section {
    margin: 1.5rem 0;
    padding: 1rem;
  }

  h1 {
    font-size: 1.6rem;
  }

  h2 {
    font-size: 1.3rem;
  }

  h3 {
    font-size: 1.1rem;
  }

  .welcome-moment {
    padding: 1.5rem 1rem;
    border-radius: 20px;
  }

  .staggered-cards {
    gap: 1rem;
  }

  .card {
    padding: 1.5rem;
  }

  .card-icon {
    font-size: 2.5rem;
  }

  .vertical-flow .flow-item {
    padding: 1.5rem;
  }

  .image-cluster {
    gap: 0.8rem;
  }

  .text-first-section {
    padding: 2rem 1.5rem;
  }

  .zigzag-item {
    padding: 1.5rem;
  }

  .scrapbook-collage {
    grid-template-columns: 1fr;
    gap: 0.6rem;
  }

  .lifestyle-card {
    padding: 1.5rem;
  }

  .editorial-block {
    padding: 1.5rem 1rem;
  }

  .contact-section {
    padding: 1.5rem 1rem;
  }

  .shelf-item {
    padding: 1.5rem;
  }

  .floating-group {
    padding: 1.5rem;
  }

  .timeline-item {
    padding: 1.5rem;
  }

  .irregular-grid {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  form {
    padding: 1.5rem 1rem;
  }

  .cta-button {
    padding: 0.8rem 2rem;
    font-size: 1rem;
  }

  .back-to-top {
    width: 40px;
    height: 40px;
    bottom: 1rem;
    right: 1rem;
    font-size: 1.2rem;
  }

  .spiral-item {
    padding: 1.2rem;
  }

  .icon-text-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .circle-item {
    width: 120px;
    height: 120px;
    padding: 0.8rem;
  }

  .circle-item .icon {
    font-size: 2rem;
    margin-bottom: 0.2rem;
  }

  .circle-item h3 {
    font-size: 0.75rem;
    line-height: 1.1;
  }

  .diagonal-section {
    padding: 2rem 1rem;
    transform: rotate(0deg);
  }

  .wave-section {
    padding: 2rem 1rem;
    clip-path: none;
  }

  img {
    max-width: 100%;
    height: auto;
  }

  .magazine-layout {
    gap: 1.5rem;
  }

  .magazine-image img,
  .split-image img {
    width: 100%;
    height: auto;
  }

  .overlap-grid {
    gap: 0.8rem;
  }

  .overlap-item img {
    width: 100%;
    height: auto;
  }

  .split-section {
    gap: 1.5rem;
  }

  .stacked-cards {
    gap: 1rem;
  }

  .stacked-card {
    padding: 1.2rem;
  }

  .spiral-layout {
    gap: 1rem;
  }

  .circle-layout {
    gap: 1rem;
    justify-content: center;
  }

  .icon-text-item {
    padding: 1.2rem;
  }

  .icon-text-item .icon {
    font-size: 2.5rem;
  }

  .nav-links {
    padding: 1.5rem;
  }

  .nav-links li {
    margin-bottom: 0.5rem;
  }

  .footer-section {
    margin-bottom: 1rem;
  }

  .footer-section h3 {
    font-size: 1.1rem;
  }

  .footer-section p,
  .footer-section li {
    font-size: 0.9rem;
  }

  .legal-page {
    padding: 1.5rem 1rem;
  }

  .legal-page h1 {
    font-size: 1.8rem;
  }

  .legal-page h2 {
    font-size: 1.3rem;
  }

  .thankyou-page {
    padding: 2rem 1rem;
  }

  .cluster-item img,
  .collage-item img,
  .grid-item img {
    width: 100%;
    height: auto;
  }

  .shelf-item img,
  .floating-group img {
    width: 100%;
    max-width: 100%;
    height: auto;
    margin-top: 1rem;
  }

  .handwritten-caption {
    font-size: 0.85rem;
    margin-top: 0.3rem;
  }

  p {
    font-size: 0.95rem;
    line-height: 1.5;
  }

  .card p,
  .lifestyle-card p,
  .spiral-item p {
    font-size: 0.9rem;
  }
}

