/* ==================================================
   Ultra Услуги – CSS финален стил
   Vik Serviz – всички права запазени
   ================================================== */

body {
    font-family: Arial, sans-serif;
    background: #f9f9f9;
    color: #333;
    margin: 0;
    padding: 0;
}

header {
    background: #0056b3;
    color: white;
    padding: 20px;
    text-align: center;
}

header h1 {
    margin: 0;
    font-size: 2em;
}

header p {
    margin: 5px 0 0 0;
    font-size: 1em;
}

main {
    max-width: 1000px;
    margin: 20px auto;
    padding: 0 20px;
}

article {
    background: white;
    border-radius: 10px;
    padding: 15px 20px;
    margin-bottom: 20px;
    box-shadow: 0 3px 6px rgba(0,0,0,0.1);
}

article h3 {
    color: #0056b3;
    margin-top: 0;
}

article p {
    line-height: 1.6;
}

div.gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
    justify-content: center;
}

div.gallery img {
    width: 32%;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    object-fit: cover;
}

/* Мобилна версия */
@media (max-width: 768px) {
    div.gallery img {
        width: 48%;
    }
    header h1 {
        font-size: 1.5em;
    }
    header p {
        font-size: 0.9em;
    }
}

@media (max-width: 480px) {
    div.gallery img {
        width: 100%;
    }
    main {
        padding: 0 10px;
    }
}

footer {
    background: #222;
    color: white;
    text-align: center;
    padding: 15px;
    margin-top: 40px;
    font-size: 0.9em;
}