:root {
            --primary-color: #163d2c; /* Sea green */
            --secondary-color: #d3dbba; /* Beige */
            --text-color: #333;
            --background-color: #fff;
        }

        body {
            font-family: 'Poppins', sans-serif;
            line-height: 1.6;
            color: var(--text-color);
            background-color: var(--background-color);
            margin: 0;
            padding: 0;
        }

        a {
            color: #4c304e;
        }

        .container {
            max-width: 960px;
            margin: 0 auto;
            padding: 20px;
        }

        header {
            text-align: center;
            padding: 60px 20px;
            background-color: var(--primary-color);
            color: var(--secondary-color);
        }

        header h1 {
            font-size: 2.5em;
            margin-bottom: 10px;
            font-weight: 700;
        }

        header p {
            font-size: 1.2em;
            font-weight: 400;
        }

        section {
            padding: 20px 10px;
            text-align: center;
        }

        section.about, section.services {
            background-color: var(--secondary-color);
        }

        section h2 {
            font-size: 2em;
            color: var(--primary-color);
            margin-bottom: 20px;
            font-weight: 600;
        }

        .about p {
            font-size: 1.2em;
        }

        .services ul {
            list-style: none;
            padding: 0;
            margin-top: 20px;
            display: grid;
            gap: 15px;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            text-align: left;
        }

        .services li {
            background: #fff;
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            font-weight: 400;
        }

        .services li:before {
            content: "✓";
            color: var(--primary-color);
            font-weight: 700;
            margin-right: 10px;
        }

        .note {
            font-size: 1.3em;
            font-weight: 600;
            color: var(--primary-color);
            margin-top: 20px;
        }

        .contacts .contact-card {
            padding: 30px;
            margin: 20px auto;
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            text-align: left;
            max-width: 400px;
            text-align: center;
        }

        .contacts h3 {
            margin-top: 0;
            color: var(--primary-color);
        }

        .contacts p {
            margin: 5px 0;
        }

        .contacts {
            background-image: url(files/pozadi-sova-lev.jpg);
            background-size: contain ;
            background-position: center bottom;
            background-repeat: no-repeat;
        }

        .bozole {
            background-color: #d3d3c5;
        }

        h3.bozole {
            color: #163d2c!important;
        }

        h3.hedus {
            color: #4c304e;
        }

        .hedus {
            background-color: #e2b3cf;
        }

        footer {
            text-align: center;
            padding: 20px;
            background-color: #4c304e;
            color: #d97bb0  ;
        }
        
        /* Mobile-first approach - adjustments for smaller screens */
        @media (max-width: 768px) {
            header h1 {
                font-size: 2em;
            }

            header p {
                font-size: 1em;
            }

            section h2 {
                font-size: 1.8em;
            }

            .services ul {
                grid-template-columns: 1fr;
            }
        }