:root {
  /* Варіант 4: Natural Harmony */
  --primary-color: #27AE60; /* Natural Green */
  --secondary-color: #16A085; /* Teal Green */
  --accent-color: #F1C40F; /* Sun Yellow */
  --light-color: #FEFAE0; /* Creamy White */
  --dark-color: #0F1021; /* Dark Night */
  
  --hover-color: #219150;
  --background-color: #F2F2F2;
  --text-color: #5F6F52; /* Olive Text */
  
  --font-heading: 'Lora', serif;
  --font-body: 'Lato', sans-serif;
  
  --container-width: 1100px;
}

body {
    font-family: var(--font-body);
    color: var(--text-color);
    background-color: var(--light-color);
    line-height: 1.7;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
}

.custom-container {
    max-width: var(--container-width);
}

/* Background Pattern */
.background-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.08;
    background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2327AE60' fill-opacity='1'%3E%3Cpath d='M50 50c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10s-10-4.477-10-10 4.477-10 10-10zM10 10c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10S0 25.523 0 20s4.477-10 10-10zm10 8c4.418 0 8-3.582 8-8s-3.582-8-8-8-8 3.582-8 8 3.582 8 8 8zm40 40c4.418 0 8-3.582 8-8s-3.582-8-8-8-8 3.582-8 8 3.582 8 8 8z' /%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}