        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }

        body {
            background: linear-gradient(135deg, #f5f7fa, #c3cfe2);
            color: #333;
            line-height: 1.6;
        }

        /* Header */
        header {
            background: linear-gradient(to right, #ff4d4d, #ff9a4d, #f4d03f, #27ae60, #3498db, #8e44ad);
            padding: 1rem;
            text-align: center;
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        header h1 {
            color: #fff;
            font-size: 2.5rem;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        }

        nav {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            margin-top: 1rem;
        }

        nav a {
            color: #fff;
            text-decoration: none;
            font-weight: bold;
            padding: 0.5rem 1rem;
            border-radius: 5px;
            transition: background 0.3s;
        }

        nav a:hover {
            background: rgba(255, 255, 255, 0.2);
        }

        /* Main Content */
        .hoxaq {
            max-width: 1200px;
            margin: 2rem auto;
            padding: 0 1rem;
        }

        .xejekyh {
            text-align: center;
            padding: 3rem 1rem;
            background: #fff;
            border-radius: 10px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
            margin-bottom: 2rem;
        }

        .xejekyh h2 {
            font-size: 2rem;
            color: #e74c3c;
            margin-bottom: 1rem;
        }

        .xejekyh p {
            font-size: 1.1rem;
            color: #555;
            max-width: 600px;
            margin: 0 auto;
        }

        .dolavam {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            margin-bottom: 2rem;
        }

        .cuce {
            background: #fff;
            padding: 1.5rem;
            border-radius: 10px;
            text-align: center;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s;
            width: 250px; /* Fixed width */
            height: 200px; /* Fixed height */
            overflow: hidden; /* Hide overflow text */
        }

        .cuce:hover {
            transform: translateY(-5px);
        }

        .cuce h3 {
            color: #3498db;
            margin-bottom: 0.5rem;
        }

        .cuce p {
            overflow: hidden; /* Hide overflow text */
            text-overflow: ellipsis; /* Optional: add ellipsis for clipped text */
            text-align: left; /* Align text to the left for natural reading */
        }

        /* Footer */
        footer {
            background: #2c3e50;
            color: #fff;
            text-align: center;
            padding: 1rem;
            margin-top: 2rem;
        }

        footer p {
            margin: 0;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            header h1 {
                font-size: 1.8rem;
            }

            nav {
                flex-direction: column;
                gap: 0.5rem;
            }

            .xejekyh h2 {
                font-size: 1.5rem;
            }

            .dolavam {
                grid-template-columns: 1fr;
            }

            .cuce {
                width: 100%; /* Full width on smaller screens */
                max-width: 250px; /* Maintain max width */
                height: 200px; /* Keep fixed height */
                margin: 0 auto; /* Center cards */
            }
        }

        @media (max-width: 480px) {
            header h1 {
                font-size: 1.5rem;
            }

            nav a {
                padding: 0.5rem;
                font-size: 0.9rem;
            }

            .xejekyh {
                padding: 2rem 0.5rem;
            }

            .cuce {
                padding: 1rem;
                width: 100%;
                max-width: 250px;
                height: 200px;
            }
        }


{POST}
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }

        body {
            background: linear-gradient(135deg, #f5f7fa, #c3cfe2);
            color: #333;
            line-height: 1.6;
        }

        /* Main Content */
        .hoxaq {
            max-width: 1200px;
            margin: 2rem auto;
            padding: 0 1rem;
        }

        .kajavaf {
            background: #fff;
            padding: 2rem;
            border-radius: 10px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
            margin-bottom: 2rem;
        }

        .kajavaf h2 {
            font-size: 1.8rem;
            color: #e74c3c;
            margin-bottom: 1rem;
            text-align: center;
        }

        .cicakud {
            background: #f9f9f9;
            padding: 1.5rem;
            border-radius: 8px;
            overflow: hidden; /* Ensure content stays within block */
        }

        .cicakud img {
            float: left; /* Float image to the left for text wrapping */
            width: 200px;
            height: 200px;
            margin-right: 1.5rem;
            margin-bottom: 1rem;
            border-radius: 8px;
            object-fit: cover; /* Ensure image fits nicely */
        }

        .cicakud p {
            font-size: 1rem;
            color: #555;
            line-height: 1.6;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .kajavaf h2 {
                font-size: 1.5rem;
            }

            .cicakud img {
                width: 150px;
                height: 150px;
                margin-right: 1rem;
            }
        }

        @media (max-width: 480px) {
            .kajavaf {
                padding: 1rem;
            }

            .cicakud img {
                float: none; /* Stack image on top for small screens */
                display: block;
                margin: 0 auto 1rem;
                width: 100%;
                max-width: 200px;
                height: auto;
            }

            .cicakud p {
                text-align: center; /* Center text for better readability */
            }
        }

{/POST}




