:root {
  --primary-color: #2c3e50;
  --secondary-color: #c0a080;
  --text-color: #333333;
  --light-bg: #f5f5f5;
  --header-height: 70px;
  font-family: 'Roboto', sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  scroll-behavior: smooth;
}

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

body {
  background-color: var(--light-bg);
}

.section {
  padding: 5rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
  animation: fadeIn 1s ease-out;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 3rem;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}