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

        .photo-block-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
            width: 100%;
        }

        .photo-block-section {
            padding: 70px 0;
            font-family: 'Work Sans', sans-serif;
            background: #ffffff;
        }

        .photo-block-section .photo-block-title {
            font-size: 38px;
            font-weight: 700;
            color: #0A0059;
            text-align: center;
            margin-bottom: 48px;
            letter-spacing: -0.3px;
        }
  .photo-block-section  .features-heading-2025-title{
                padding: 20px 0 50px;
        }
        .photo-block-tabs-wrapper {
            position: relative;
            max-width: 1000px;
            margin: 0 auto 35px;
        }

        .photo-block-tabs {
            display: flex;
            justify-content: center;
            gap: 28px;
            border-bottom: 2px solid rgba(10, 0, 89, 0.1);
            flex-wrap: nowrap;
            width: 100%;
        }

        .photo-block-tab-btn {
            background: transparent;
            border: none;
            font-size: 22px;
            font-weight: 500;
            color: #0A0059;
            padding: 12px 10px 14px 10px;
            cursor: pointer;
            position: relative;
            white-space: normal;
            word-break: break-word;
            text-align: center;
            line-height: 1.3;
            transition: color 0.2s ease;
            font-family: 'Work Sans', sans-serif;
            flex: 1;
            max-width: 32%;
        }

        .photo-block-tab-btn:hover {
            color: #3b2b9e;
        }

        .photo-block-tab-btn::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, #67B6FF, #a37de8, #f075d9);
            transform: scaleX(0);
            transition: transform 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
            border-radius: 3px;
        }

        .photo-block-tab-btn.active {
            font-weight: 700;
            color: #0A0059;
        }

        .photo-block-tab-btn.active::after {
            transform: scaleX(1);
        }

        .photo-block-carousel-container {
            max-width: 1100px;
            margin: 0 auto;
            overflow: hidden;
            width: 100%;
        }

        .photo-block-carousel {
            display: flex;
            transition: transform 0.45s cubic-bezier(0.2, 0.85, 0.4, 1);
            width: 100%;
        }

        .photo-block-slide {
            min-width: 100%;
            padding: 0 12px;
            box-sizing: border-box;
            overflow: hidden;
        }

        .photo-block-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 28px;
            margin: 0;
            padding: 8px 0 12px;
        }

        .photo-block-card {
            position: relative;
            display: block;
            width: 100%;
            background: #fff;
            z-index: 1;
        }

        .photo-block-card::before {
            content: '';
            position: absolute;
            left: 8px;
            right: -8px;
            top: 8px;
            bottom: -8px;
            background: #7FCFE8;
            z-index: -1;
            border-radius: 0;
        }

        .photo-block-card::after {
            content: '';
            position: absolute;
            left: 16px;
            right: -16px;
            top: 16px;
            bottom: -16px;
            background: #BDE6F3;
            z-index: -2;
            border-radius: 0;
        }

        .photo-block-card img {
            width: 100%;
            height: auto;
            display: block;
            object-fit: cover;
            border-radius: 0;
            position: relative;
            z-index: 2;
        }

        .photo-block-dots {
            display: flex;
            justify-content: center;
            gap: 12px;
            margin-top: 32px;
        }

        .photo-block-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: #67B6FF;
            cursor: pointer;
            transition: all 0.25s ease;
            opacity: 0.5;
        }

        .photo-block-dot.active {
            background: #67B6FF;
            transform: scale(1.4);
            opacity: 1;
        }

        .photo-block-tab-carousel {
            display: none;
        }

        .photo-block-tab-carousel.active {
            display: flex;
            width: 100%;
        }

        @media (max-width: 768px) {
            .photo-block-section {
                padding: 50px 0;
            }
            .photo-block-section .photo-block-title {
                font-size: 30px;
                margin-bottom: 32px;
            }
                  .photo-block-section  .features-heading-2025-title{
                    padding: 0px 0 25px;
        }
            .photo-block-tabs {
                gap: 12px;
            }
            .photo-block-tab-btn {
                font-size: 16px;
                padding: 10px 5px 12px 5px;
                line-height: 1.3;
            }
            .photo-block-grid {
                grid-template-columns: repeat(1, 1fr);
                gap: 24px;
            }
            .photo-block-card::before {
                left:6px; right:-6px; top:6px; bottom:-6px;
            }
            .photo-block-card::after {
                left:12px; right:-12px; top:12px; bottom:-12px;
            }
        }