:root {
  --primary-bg: #ffffff;
  --secondary-bg: #eeefeb;
  --text-main: #000000;
  --text-secondary: #3b3b3b;
  --text-muted: #666666;
  --container-width: 1080px;
  --gutter: 20px;
}

body {
  font-family: 'Inter', sans-serif;
  margin: 0;
  padding: 0;
  background-color: var(--primary-bg);
  color: var(--text-main);
  line-height: 1.5;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--gutter);
  width: 100%;
  box-sizing: border-box;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0 0 1rem 0;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

p {
  margin: 0 0 1.5rem 0;
  color: var(--text-main);
}

.section-split {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  padding: 80px 0;
}

.section-split .content {
  flex: 1;
}

.section-split .image-wrapper {
  flex: 1;
}

.section-split .image-wrapper img {
  width: 100%;
  object-fit: cover;
}

@media (max-width: 992px) {
  .section-split {
    flex-direction: column;
    gap: 40px;
    padding: 60px 0;
  }
  
  .section-split.reverse {
    flex-direction: column;
  }
}