/* =========================================
   1. BAZA I ZMIENNE (MOTYW MIODOWY)
   ========================================= */
:root {
    --primary-color: #d98a00;     /* Miodowy BeeSystem (z logo) */
    --secondary-color: #f0a500;   /* MIÓD - Nowy główny akcent */
    --secondary-hover: #cc8c00;   /* Ciemniejszy miód pod najechanie myszką */
    --dark-bg: #1c2448;           /* Granatowy tła/tekstów */
    --text-color: #333;
    --light-gray: #f4f4f9;
    --white: #ffffff;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth; 
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}