/* Add here all your CSS customizations */


        .subtitle {
            font-size: 1.2rem;
            color: #5a6474;
            max-width: 700px;
            margin: 0 auto;
        }

        .gallery-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 15px;
        }

        .gallery {
            display: flex;
            flex-wrap: wrap;

            gap: 25px;
            justify-content: center;
            align-items: flex-start;
            padding: 15px;
        }

        .gallery-item {
            flex: 1 1 30%;
            min-width: 280px;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
            transition: all 0.4s ease;
            background: white;
            display: flex;
            flex-direction: column;
        }

        .gallery-item:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
        }

        .gallery-item img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.5s ease;
        }

        .gallery-item:hover img {
            transform: scale(1.05);
        }

        .image-description {
            padding: 20px;
            background: white;
        }

        .image-description h3 {
            font-size: 1.5rem;
            margin-bottom: 10px;
            color: #2c3e50;
        }

        .image-description p {
            color: #4a5568;
            font-size: 1.05rem;
        }

        @media (max-width: 900px) {
            .gallery-item {
                flex: 1 1 45%;
            }
        }

        @media (max-width: 650px) {
            .gallery-item {
                flex: 1 1 100%;
                min-width: 100%;
            }
            
            h1 {
                font-size: 2.3rem;
            }
            
            .subtitle {
                font-size: 1.1rem;
                padding: 0 10px;
            }
        }

        .company-info {
            background: white;
            border-radius: 16px;
            padding: 30px;
            max-width: 900px;
            margin: 40px auto;
            text-align: center;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        }

        .cta-button {
            display: inline-block;
            background: linear-gradient(45deg, #8e7dbe, #6a5acd);
            color: white;
            padding: 14px 36px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.2rem;
            margin-top: 20px;
            transition: all 0.3s ease;
            border: 2px solid #8e7dbe;
            box-shadow: 0 4px 15px rgba(142, 125, 190, 0.4);
        }

        .cta-button:hover {
            background: linear-gradient(45deg, #6a5acd, #8e7dbe);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(142, 125, 190, 0.6);
        }

        footer {
            text-align: center;
            padding: 25px;
            margin-top: 20px;
            color: #5a6474;
            font-size: 0.95rem;
        }

        @media (max-width: 480px) {
            .gallery {
                gap: 15px;
            }
            
            .image-description {
                padding: 15px;
            }
            
            .image-description h3 {
                font-size: 1.35rem;
            }
            
            .cta-button {
                padding: 12px 30px;
                font-size: 1.1rem;
            }
            
            header {
                padding: 20px 15px;
            }
        }
