
            .astrology-about {
                padding: 100px 0;
                background: linear-gradient(135deg, #0c0c1d 0%, #1a1a2e 100%);
                color: #fff;
                position: relative;
                overflow: hidden;
            }

            .astrology-about::before {
                content: "";
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                background-image:
                    radial-gradient(circle at 10% 20%, rgba(255, 107, 53, 0.05) 0%, transparent 20%),
                    radial-gradient(circle at 90% 80%, rgba(100, 80, 255, 0.05) 0%, transparent 20%);
                z-index: 0;
            }

            .astrology-about .container {
                position: relative;
                z-index: 1;
            }

            /* Image Gallery Styles */
            .image-gallery-container {
                position: relative;
                border-radius: 16px;
                overflow: hidden;
                box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
                transition: transform 0.3s ease;
            }

            .image-gallery-container:hover {
                transform: translateY(-5px);
            }

            .main-image-container {
                position: relative;
                height: 400px;
                overflow: hidden;
            }

            .main-image-container img {
                width: 100%;
                height: 100%;
                object-fit: cover;
                transition: transform 0.5s ease;
            }

            .main-image-container:hover img {
                transform: scale(1.03);
            }

            .image-overlay {
                position: absolute;
                bottom: 0;
                left: 0;
                right: 0;
                background: linear-gradient(to top, rgba(12, 12, 29, 0.9), transparent);
                padding: 30px 20px 20px;
                color: white;
            }

            .zodiac-symbol {
                font-size: 2.5rem;
                margin-bottom: 10px;
                opacity: 0.8;
            }

            .image-caption {
                font-size: 1.1rem;
                font-weight: 500;
                margin: 0;
            }

            /* Thumbnail Gallery */
            .thumbnail-gallery {
                display: flex;
                background: rgba(255, 255, 255, 0.05);
                padding: 15px;
                gap: 12px;
            }

            .thumbnail-item {
                flex: 1;
                height: 80px;
                border-radius: 8px;
                overflow: hidden;
                position: relative;
                cursor: pointer;
                opacity: 0.7;
                transition: all 0.3s ease;
                border: 2px solid transparent;
            }

            .thumbnail-item.active {
                opacity: 1;
                border-color: #FF6B35;
                transform: translateY(-5px);
            }

            .thumbnail-item:hover {
                opacity: 1;
            }

            .thumbnail-item img {
                width: 100%;
                height: 100%;
                object-fit: cover;
            }

            .thumbnail-overlay {
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                background: rgba(12, 12, 29, 0.6);
                display: flex;
                align-items: center;
                justify-content: center;
            }

            .zodiac-icon {
                font-size: 1.5rem;
                opacity: 0.8;
            }

            /* Image Navigation */
            .image-navigation {
                display: flex;
                align-items: center;
                justify-content: center;
                padding: 15px;
                background: rgba(255, 255, 255, 0.05);
                gap: 20px;
            }

            .nav-btn {
                background: #FF6B35;
                border: none;
                color: white;
                width: 40px;
                height: 40px;
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
                cursor: pointer;
                transition: all 0.3s ease;
            }

            .nav-btn:hover {
                background: #ff8c5a;
                transform: scale(1.1);
            }

            .image-counter {
                font-size: 1rem;
                font-weight: 600;
                color: #ddd;
            }

            /* Content Styles */
            .content-container {
                padding-left: 40px;
            }

            @media (max-width: 992px) {
                .content-container {
                    padding-left: 0;
                    margin-top: 40px;
                }
            }

            .section-badge {
                display: inline-flex;
                align-items: center;
                background: rgba(255, 107, 53, 0.1);
                color: #FF6B35;
                padding: 8px 16px;
                border-radius: 50px;
                font-size: 0.9rem;
                font-weight: 600;
                margin-bottom: 20px;
            }

            .zodiac-symbol-small {
                font-size: 1.2rem;
                margin-right: 8px;
            }

            .section-heading {
                font-size: 2.8rem;
                font-weight: 700;
                line-height: 1.2;
                margin-bottom: 25px;
                color: white;
            }

            .section-heading .highlight {
                color: #FF6B35;
                position: relative;
            }

            .section-heading .highlight::after {
                content: '';
                position: absolute;
                bottom: 5px;
                left: 0;
                width: 100%;
                height: 8px;
                background: rgba(255, 107, 53, 0.2);
                z-index: -1;
            }

            .content-text p {
                font-size: 1.05rem;
                line-height: 1.7;
                color: #ccc;
                margin-bottom: 25px;
            }

            /* Feature List */
            .feature-list {
                margin: 30px 0;
            }

            .feature-item {
                display: flex;
                gap: 15px;
                margin-bottom: 25px;
                padding: 20px;
                background: rgba(255, 255, 255, 0.05);
                border-radius: 12px;
                border-left: 4px solid #FF6B35;
                transition: all 0.3s ease;
            }

            .feature-item:hover {
                background: rgba(255, 255, 255, 0.08);
                transform: translateX(5px);
            }

            .feature-icon {
                font-size: 2.2rem;
                color: #FF6B35;
                flex-shrink: 0;
            }

            .feature-item h5 {
                font-size: 1.1rem;
                font-weight: 600;
                margin-bottom: 8px;
                color: white;
            }

            .feature-item p {
                font-size: 0.95rem;
                margin-bottom: 0;
                color: #aaa;
            }

            /* Action Buttons */
            .action-buttons {
                display: flex;
                gap: 15px;
                margin: 35px 0;
                flex-wrap: wrap;
            }

            .btn-primary,
            .btn-secondary {
                display: inline-flex;
                align-items: center;
                justify-content: center;
                padding: 14px 28px;
                border-radius: 8px;
                font-weight: 600;
                text-decoration: none;
                transition: all 0.3s ease;
                font-size: 1rem;
            }

            .btn-primary {
                background: linear-gradient(135deg, #FF6B35 0%, #FF8C5A 100%);
                color: white;
                border: none;
                box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
            }

            .btn-primary:hover {
                transform: translateY(-3px);
                box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
                color: white;
            }

            .btn-primary svg {
                margin-left: 10px;
                transition: transform 0.3s ease;
            }

            .btn-primary:hover svg {
                transform: translateX(5px);
            }

            .btn-secondary {
                background: transparent;
                color: #FF6B35;
                border: 2px solid #FF6B35;
            }

            .btn-secondary:hover {
                background: rgba(255, 107, 53, 0.1);
                color: #FF6B35;
                transform: translateY(-3px);
            }

            /* Expert Contact Card */
            .expert-contact-card {
                display: flex;
                align-items: center;
                background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(100, 80, 255, 0.1) 100%);
                border-radius: 16px;
                padding: 25px;
                margin-top: 40px;
                border: 1px solid rgba(255, 255, 255, 0.1);
                gap: 20px;
            }

            .contact-icon {
                flex-shrink: 0;
            }

            .contact-icon svg {
                width: 50px;
                height: 50px;
            }

            .contact-info {
                flex-grow: 1;
            }

            .contact-label {
                font-size: 0.95rem;
                color: #aaa;
                margin-bottom: 5px;
            }

            .contact-number {
                font-size: 1.8rem;
                font-weight: 700;
                color: #FF6B35;
                margin-bottom: 5px;
            }

            .contact-hours {
                font-size: 0.9rem;
                color: #aaa;
            }

            .call-button {
                display: flex;
                align-items: center;
                gap: 8px;
                background: #FF6B35;
                color: white;
                border: none;
                padding: 12px 24px;
                border-radius: 8px;
                font-weight: 600;
                cursor: pointer;
                transition: all 0.3s ease;
            }

            .call-button:hover {
                background: #ff8c5a;
                transform: translateY(-2px);
            }

            /* Responsive adjustments */
            @media (max-width: 768px) {
                .astrology-about {
                    padding: 60px 0;
                }

                .section-heading {
                    font-size: 2.2rem;
                }

                .main-image-container {
                    height: 300px;
                }

                .expert-contact-card {
                    flex-direction: column;
                    text-align: center;
                    gap: 15px;
                }

                .contact-number {
                    font-size: 1.5rem;
                }

                .action-buttons {
                    flex-direction: column;
                }

                .btn-primary,
                .btn-secondary {
                    width: 100%;
                }
            }
    