* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Arial', sans-serif;
            background-color: #f8f9fa;
            color: #333;
        }

        header {
            background-color: #333;
            color: #fff;
            padding: 20px 0;
            text-align: center;
        }

        header h1 {
            font-size: 36px;
            margin-bottom: 10px;
        }

        header img {
            width: 70px;
            height: auto;
        }

        nav {
            background-color: #444;
            text-align: center;
            padding: 10px 0;
        }

        nav a {
            color: #fff;
            text-decoration: none;
            margin: 0 15px;
            font-size: 18px;
            transition: color 0.3s;
        }

        nav a:hover {
            color: #ffd700;
        }

        .gallery-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-around;
        }

        .gallery-item {
            width: calc(33.33% - 20px);
            margin-bottom: 40px;
            position: relative;
            overflow: hidden;
            border-radius: 8px;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s;
        }

        .gallery-item:hover {
            transform: translateY(-5px);
        }

        .gallery-item img {
            width: 100%;
            height: auto;
            transition: transform 0.3s;
        }

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

        .gallery-description {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            background-color: rgba(0, 0, 0, 0.7);
            color: #fff;
            padding: 10px;
            font-size: 16px;
            text-align: center;
            opacity: 0;
            transition: opacity 0.3s;
        }

        .gallery-item:hover .gallery-description {
            opacity: 1;
        }

        .about-section {
            background-color: #fff;
            padding: 40px;
            border-radius: 8px;
            margin: 40px auto;
            max-width: 800px;
            text-align: center;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        }

        .about-section h2 {
            font-size: 24px;
            margin-bottom: 20px;
            color: #333;
        }

        .about-section p {
            font-size: 18px;
            line-height: 1.6;
            color: #666;
        }

        .about-section img {
            width: 350px;
            border-radius: 70%;
        }

        .photographer-section img {
            width: 350px;
            border-radius: 70%;
        }

        footer {
            background-color: #333;
            color: #fff;
            padding: 20px 0;
            text-align: center;
        }

        .contact-icons {
            margin-top: 20px;
        }

        .contact-icons a {
            color: #fff;
            font-size: 24px;
            margin: 0 10px;
            transition: color 0.3s;
        }

        .contact-icons a:hover {
            color: #ffd700;
        }

        .SB{
            margin: 7px 0 7px 0;
        }
        .SB a{
                color: white;
                text-decoration: none ;
        }
        .SB a:hover {
            color: #ffd700;
        }

        @media screen and (max-width: 768px) {
            header h1 {
                font-size: 28px;
            }

            .gallery-item {
                width: calc(50% - 20px);
            }

            .about-section {
                padding: 20px;
            }

            .about-section img,
            .photographer-section img {
                width: 250px;
                border-radius: 50%;
            }
        }
