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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background-color: var(--color-bg);
  background-image: url('../../assets/images/white-background.png');
  background-repeat: repeat;
  background-size: 300px;
  min-height: 100vh;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container {
  width: min(var(--max-width), 92%);
  margin: 0 auto;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: normal;
  line-height: 1.25;
}

p { line-height: 1.85; }

a {
  color: var(--color-accent);
  text-decoration: none;
  transition: opacity 0.2s;
}
a:hover { opacity: 0.75; }

ul, ol { list-style: none; }

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

.section { padding: var(--section-pad) 0; }

.section-label {
  font-size: 0.8rem;
  letter-spacing: 3px;
  color: var(--color-accent);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  color: var(--color-text);
  margin-bottom: 14px;
}

.section-sub {
  color: var(--color-muted);
  font-size: 1.05rem;
  margin-bottom: 48px;
  max-width: 580px;
  line-height: 1.8;
}

.accent { color: var(--color-accent); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 30px;
  border-radius: var(--radius-pill);
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
  font-family: var(--font-body);
  font-weight: 500;
  text-decoration: none;
}
.btn-primary {
  background: var(--color-accent);
  color: #fff;
}
.btn-primary:hover {
  background: #c23318;
  transform: translateY(-2px);
  box-shadow: var(--shadow-accent);
  opacity: 1;
}
.btn-outline {
  background: transparent;
  color: var(--color-accent);
  border: 1.5px solid var(--color-accent);
}
.btn-outline:hover {
  background: var(--color-accent-light);
  opacity: 1;
}

/* Cards */
.card {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
}

@media (max-width: 768px) {
  .section { padding: 52px 0; }
  .section-sub { margin-bottom: 32px; }
}
