 /* Базові стилі */
        body {
            margin: 0;
            font-family: 'Montserrat', sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #f4f7f1;
        }

        header {
            background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), 
                        url('https://images.unsplash.com/photo-1557053503-0c252e5c82bf?q=80&w=1000') center/cover;
            height: 60vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            color: white;
            padding: 20px;
        }

        h1 {
            font-family: 'Comfortaa', cursive;
            font-size: 3.5rem;
            margin-bottom: 10px;
        }

        .subtitle {
            font-size: 1.2rem;
            font-weight: 300;
            background: rgba(106, 153, 78, 0.8);
            padding: 5px 15px;
            border-radius: 20px;
        }

        /* Контейнер */
        .container {
            max-width: 900px;
            margin: 0 auto;
            padding: 40px 20px;
        }

        section {
            margin-bottom: 60px;
        }

        h2 {
            border-bottom: 3px solid #6a994e;
            display: inline-block;
            padding-bottom: 5px;
            color: #386641;
        }

        /* Таблиця */
        table {
            width: 100%;
            border-collapse: collapse;
            margin-top: 20px;
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0,0,0,0.05);
        }

        th, td {
            padding: 15px;
            text-align: left;
            border-bottom: 1px solid #eee;
        }

        th {
            background-color: #6a994e;
            color: white;
        }

        /* Картки / Галерея */
        .gallery {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
        }

        .card {
            background: white;
            padding: 20px;
            border-radius: 15px;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
            transition: transform 0.3s;
        }

        .card:hover {
            transform: translateY(-5px);
        }

        /* Цитата */
        blockquote {
            font-style: italic;
            border-left: 5px solid #a7c957;
            margin: 30px 0;
            padding: 10px 20px;
            background: #fdfdfd;
        }

        /* Кнопка */
        .btn {
            display: inline-block;
            background-color: #bc4749;
            color: white;
            padding: 12px 30px;
            text-decoration: none;
            border-radius: 25px;
            font-weight: bold;
            transition: 0.3s;
        }

        .btn:hover {
            background-color: #6a994e;
            box-shadow: 0 4px 12px rgba(0,0,0,0.2);
        }

        footer {
            text-align: center;
            padding: 40px;
            font-size: 0.9rem;
            color: #777;
        }