

        body {
            margin: 0;
            font-family: 'Arial', sans-serif;
            background-color: #ffffff;
            color: #555555;
            font-family: 'arttv-bold', sans-serif;
        }

        header {
            background-color: #ff7a00;
            padding: 10px 20px;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .nav-left,
        .nav-right {
            display: flex;
            gap: 20px;
        }

.nav-left a,
.nav-right a {
    position: relative; /* აუცილებელია ქვედა ზოლისთვის */
    text-decoration: none;
    color: #ffffff;
    font-weight: bold;
    transition: color 0.3s;
    padding: 10px 0; /* ცოტა ზემოთ და ქვემოთ ჰაერი */
}

/* მაუსის მიტანისას */
.nav-left a:hover::after,
.nav-right a:hover::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 3px; /* ზოლის სიმაღლე */
    background-color: #ffffff; /* თეთრი ზოლი */
}

/* აქტიური ბმული */
.nav-left a.active::after,
.nav-right a.active::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 3px;
    background-color: #ffffff;
}


        .logo {
            height: 60px;
            margin-bottom: 10px;
        }

        /* Menu toggle button */
        .menu-toggle {
            display: none;
            flex-direction: column;
            cursor: pointer;
        }

        .menu_toggle-line {
            width: 30px;
            height: 3px;
            background-color: #ffffff;
            margin: 5px 0;
        }

        .nav-links {
            display: flex;
            justify-content: center;
            width: 100%;
        }

        .nav-links a {
            display: block;
            text-decoration: none;
            color: #ffffff;
            padding: 10px 20px;
            font-weight: bold;
        }

        .nav-links a:hover {
            color: #eeeeee;
        }

        /* Play button container */
        .play-button-container {
            position: relative;
            width: 50%;
            height: 400px;
            background: linear-gradient(to right, #ff7a00, #ff4500);
            display: flex;
            justify-content: center;
            align-items: center;
            border-radius: 10px;
            margin: 20px auto;
        }

        .play-button {
            background-color: #ffffff;
            color: #ff7a00;
            font-size: 120px;
            border: none;

            border-radius: 50%;
            cursor: pointer;
            transition: background-color 0.3s, transform 0.3s;
            width: 200px;
            height: 200px;
        }

        .play-button:hover {
            background-color: #ff4500;
            transform: scale(1.1);
        }

        /* Fullscreen video overlay */
        .video-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.8);
            justify-content: center;
            align-items: center;
            z-index: 1000;
        }

        .video-overlay iframe {
            width: 80%;
            height: 80%;
        }

        /* Section */
        .section {
            padding: 60px 20px;
            text-align: center;
        }

.card {
    background: #f8f8f8;
    padding: 20px;
    margin: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    display: inline-block;
    width: 300px;
    text-align: center; /* Center text */
}




.card h3 {
    font-size: 20px;
    color: #333;
    margin-bottom: 10px;
}

.card p {
    font-size: 14px;
    color: #555;
}

 .read-more {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 20px;
    text-decoration: none;
    background-color: #ff7a00;
    color: #ffffff;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s;
}

.read-more:hover {
    background-color: #ff4500;
    color: #ffffff;
} 

        .partners {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 30px;
            margin-top: 40px;
        }

        .partners img {
            height: 80px;
            object-fit: contain;
        }

        footer {
            background: #eeeeee;
            text-align: center;
            padding: 30px 20px;
            font-size: 14px;
        }

        .social-icons {
            margin-top: 10px;
        }

        .social-icons a {
            margin: 0 10px;
            color: #555;
            font-size: 24px;
            text-decoration: none;
            transition: color 0.3s;
        }

        .social-icons a:hover {
            color: #ff7a00;
        }

        /* Media Queries for responsiveness */
        @media (max-width: 768px) {
            .play-button-container {
                width: 70%;
                height: 350px;
            }

            .play-button {
                font-size: 100px;
                padding: 30px;
            }

            /* Show menu toggle button on small screens */
            .menu-toggle {
                display: flex;
            }

            /* Hide nav links by default on small screens */
            .nav-links {
                display: none;
                flex-direction: column;
                width: 100%;
                align-items: center;
                padding-top: 20px;
            }

            /* Show nav links when menu is clicked */
            .nav-links.active {
                display: flex;
            }

            .nav-links a {
                padding: 10px 0;
            }
        }

        @media (max-width: 480px) {
            .play-button-container {
                width: 80%;
                height: 300px;
            }

            .play-button {
                font-size: 80px;
                padding: 20px;
            }

            footer {
                font-size: 12px;
            }
        }