﻿
body {
    font-family: 'Arial', sans-serif;
    background-color: var(--light);
    color: var(--dark);
}

.hero-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 20px 0;
    text-align: center;
    border-bottom: 5px solid var(--accent);
}

    .hero-section h2 {
        font-size: 30px;
        font-weight: 700;
        margin-bottom: 20px;
    }

    .hero-section p {
        font-size: 15px;
        max-width: 1000px;
        margin: 0 auto;
    }

.content-section {
    padding: 30px 0;
    /*background-color: var(--light-accent);*/
}

    .content-section h3 {
        color: var(--primary);
        font-size: 24px;
        font-weight: 600;
        margin-bottom: 25px;
        position: relative;
        padding-left: 40px;
    }

        .content-section h3 i {
            color: var(--accent);
            position: absolute;
            left: 0;
            top: 5px;
            font-size: 28px;
        }

    .content-section p {
        font-size: 14px;
        line-height: 1.8;
        margin-bottom: 20px;
    }

.product-list ul {
    list-style: none;
    padding: 0;
}

    .product-list ul li {
        font-size: 16px;
        padding: 12px 0;
        position: relative;
        padding-left: 35px;
    }

        .product-list ul li i {
            color: var(--success);
            position: absolute;
            left: 0;
            font-size: 18px;
            top: 12px;
        }

.image-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

    .image-gallery img {
        border-radius: 10px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease;
    }

        .image-gallery img:hover {
            transform: scale(1.05);
        }


@media (max-width: 768px) {
    .hero-section h2 {
        font-size: 38px;
    }

    .content-section h3 {
        font-size: 28px;
    }

    .contact-section h3{
        font-size: 30px;
    }

    .image-gallery img {
        max-width: 100%;
    }

    .contact-details p {
        font-size: 16px;
    }
}
