
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary-orange: #F8A922;
            --primary-red: #9C1414;
            --white: #ffffff;
            --black: #000000;
           
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            overflow-x: hidden;
        }

        .about-section {
            background: linear-gradient(135deg, var(--primary-red) 0%, #7a1010 50%, var(--primary-red) 100%);
            padding: 80px 20px !important;
            position: relative;
            overflow: hidden;
        }

        .about-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 50%, rgba(248, 169, 34, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(248, 169, 34, 0.1) 0%, transparent 50%);
            pointer-events: none;
            animation: aboutBackgroundPulse 8s ease-in-out infinite;
        }

        .about-section::after {
            content: '✦';
            position: absolute;
            font-size: 20px;
            color: var(--primary-orange);
            animation: aboutTwinkle 3s ease-in-out infinite;
            opacity: 0;
        }

        .about-stars {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            pointer-events: none;
        }

        .about-star {
            position: absolute;
            color: var(--primary-orange);
            font-size: 12px;
            animation: aboutTwinkle 2s ease-in-out infinite;
        }

        .about-star:nth-child(1) { top: 10%; left: 10%; animation-delay: 0s; }
        .about-star:nth-child(2) { top: 20%; left: 80%; animation-delay: 0.5s; }
        .about-star:nth-child(3) { top: 60%; left: 15%; animation-delay: 1s; }
        .about-star:nth-child(4) { top: 70%; left: 85%; animation-delay: 1.5s; }
        .about-star:nth-child(5) { top: 30%; left: 50%; animation-delay: 2s; }
        .about-star:nth-child(6) { top: 80%; left: 60%; animation-delay: 2.5s; }

        .about-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 400px 1fr 450px;
            gap: 50px;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .about-left-image {
            display: flex;
            justify-content: center;
            align-items: center;
            perspective: 1000px;
        }

        .about-zodiac-wheel {
            position: relative;
            width: 100%;
            max-width: 400px;
            height: 400px;
            animation: aboutFloating 6s ease-in-out infinite;
        }

        .about-zodiac-image {
            width: 100%;
            height: 100%;
            object-fit: contain;
            animation: aboutRotate 20s linear infinite;
            filter: drop-shadow(0 0 30px rgba(248, 169, 34, 0.8)) drop-shadow(0 0 60px rgba(248, 169, 34, 0.4));
        }

        .about-center-content {
            color: var(--white);
            display: flex;
            flex-direction: column;
            gap: 25px;
            animation: aboutFadeInUp 1.2s ease-out;
        }

        .about-heading {
            font-size: 52px;
            font-weight: 700;
            color: var(--primary-orange);
            margin-bottom: 10px;
            position: relative;
            display: inline-block;
            animation: aboutGlowPulse 3s ease-in-out infinite;
        }

        .about-heading::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 120px;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-orange) 0%, transparent 100%);
            border-radius: 2px;
            animation: aboutLineGrow 2s ease-out;
        }

        .about-description {
            font-size: 16px;
            line-height: 1.9;
            margin-bottom: 10px;
            color: rgba(255, 255, 255, 0.95);
            text-align: justify;
            animation: aboutSlideInLeft 1.5s ease-out;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
        }

        .about-cta-button {
            display: inline-block;
            padding: 16px 45px;
            background: linear-gradient(90deg, var(--primary-orange) 0%, #ffb942 100%);
            color: var(--black);
            text-decoration: none;
            border-radius: 50px;
            font-weight: 700;
            font-size: 16px;
            text-transform: uppercase;
            transition: all 0.4s ease;
            box-shadow: 0 4px 15px rgba(248, 169, 34, 0.5);
            align-self: flex-start;
            position: relative;
            overflow: hidden;
            animation: aboutButtonPulse 2s ease-in-out infinite;
        }

        .about-cta-button::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.3);
            transform: translate(-50%, -50%);
            transition: width 0.6s, height 0.6s;
        }

        .about-cta-button:hover::before {
            width: 300px;
            height: 300px;
        }

        .about-cta-button:hover {
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 8px 25px rgba(248, 169, 34, 0.7);
        }

        .about-call-box {
            background: linear-gradient(135deg, var(--primary-orange) 0%, #ffb942 100%);
            padding: 25px 35px;
            border-radius: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 20px;
            max-width: 400px;
            transition: all 0.4s ease;
            animation: aboutCallBoxFloat 3s ease-in-out infinite;
            box-shadow: 0 8px 30px rgba(248, 169, 34, 0.6), 0 0 60px rgba(248, 169, 34, 0.3);
            border: 3px solid var(--white);
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }

        .about-call-box::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.4);
            transform: translate(-50%, -50%);
            transition: width 0.6s, height 0.6s;
        }

        .about-call-box:hover::before {
            width: 400px;
            height: 400px;
        }

        .about-call-box::after {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            animation: aboutCallShine 3s linear infinite;
        }

        .about-call-box:hover {
            transform: scale(1.05) translateY(-5px);
            box-shadow: 0 12px 40px rgba(248, 169, 34, 0.8), 0 0 80px rgba(248, 169, 34, 0.5);
        }

        .about-call-icon {
            width: 70px;
            height: 70px;
            background: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            animation: aboutPhoneWave 2s ease-in-out infinite;
            box-shadow: 0 0 30px rgba(255, 255, 255, 0.8);
            position: relative;
            z-index: 1;
        }

        .about-call-icon::before,
        .about-call-icon::after {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            border-radius: 50%;
            border: 2px solid var(--white);
            animation: aboutPhoneRipple 2s ease-out infinite;
        }

        .about-call-icon::after {
            animation-delay: 1s;
        }

        .about-call-icon i {
            font-size: 32px;
            color: var(--primary-red);
            animation: aboutPhoneBounce 1s ease-in-out infinite;
        }

        .about-call-details {
            position: relative;
            z-index: 1;
        }

        .about-call-details p {
            color: var(--black);
            font-size: 14px;
            margin-bottom: 5px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .about-call-number {
            font-size: 24px;
            font-weight: 800;
            color: var(--primary-red);
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
            animation: aboutNumberPulse 2s ease-in-out infinite;
        }

        .about-form-container {
            background: linear-gradient(135deg, var(--primary-orange) 0%, #ffb942 100%);
            padding: 45px 35px;
            border-radius: 25px;
            box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
            animation: aboutSlideInRight 1s ease-out;
            border: 3px solid var(--white);
            position: relative;
            overflow: hidden;
        }

        .about-form-container::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
            animation: aboutFormGlow 6s linear infinite;
        }

        .about-form-header {
            text-align: center;
            margin-bottom: 30px;
            position: relative;
            z-index: 1;
        }

        .about-form-title {
            font-size: 30px;
            font-weight: 700;
            color: var(--black);
            margin-bottom: 10px;
            animation: aboutTextGlow 3s ease-in-out infinite;
        }

        .about-form-title::after {
            content: '';
            display: block;
            width: 80px;
            height: 3px;
            background: var(--black);
            margin: 10px auto 0;
            animation: aboutLineExpand 2s ease-in-out infinite;
        }

        .about-form-group {
            margin-bottom: 20px;
            position: relative;
            z-index: 1;
            animation: aboutFadeInUp 1.5s ease-out;
        }

        .about-form-group:nth-child(2) { animation-delay: 0.1s; }
        .about-form-group:nth-child(3) { animation-delay: 0.2s; }
        .about-form-group:nth-child(4) { animation-delay: 0.3s; }

        .about-form-input,
        .about-form-textarea {
            width: 100%;
            padding: 15px 20px;
            border: 2px solid var(--white);
            border-radius: 50px;
            font-size: 14px;
            background: var(--white);
            color: var(--black);
            transition: all 0.3s ease;
        }

        .about-form-input:focus,
        .about-form-textarea:focus {
            outline: none;
            box-shadow: 0 0 0 4px rgba(156, 20, 20, 0.3);
            transform: translateY(-2px);
            border-color: var(--primary-red);
        }

        .about-form-input::placeholder,
        .about-form-textarea::placeholder {
            color: #666;
        }

        .about-form-textarea {
            border-radius: 20px;
            resize: vertical;
            min-height: 100px;
        }

        .about-form-input-icon {
            position: absolute;
            right: 20px;
            top: 50%;
            transform: translateY(-50%);
            color: #999;
            animation: aboutIconBounce 2s ease-in-out infinite;
        }

        .about-captcha-container {
            background: var(--white);
            padding: 15px;
            border-radius: 15px;
            margin-bottom: 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border: 2px solid var(--primary-red);
            position: relative;
            z-index: 1;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
        }

        .about-captcha-question {
            font-size: 16px;
            font-weight: 600;
            color: var(--black);
        }

        .about-captcha-input {
            width: 80px;
            padding: 8px 15px;
            border: 2px solid var(--primary-red);
            border-radius: 25px;
            text-align: center;
            font-size: 16px;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .about-captcha-input:focus {
            outline: none;
            box-shadow: 0 0 0 3px rgba(156, 20, 20, 0.2);
            transform: scale(1.05);
        }

        .about-captcha-refresh {
            background: var(--primary-red);
            border: none;
            color: var(--white);
            width: 35px;
            height: 35px;
            border-radius: 50%;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 2px 8px rgba(156, 20, 20, 0.4);
        }

        .about-captcha-refresh:hover {
            transform: rotate(180deg) scale(1.1);
            box-shadow: 0 4px 12px rgba(156, 20, 20, 0.6);
        }

        .about-submit-button {
            width: 100%;
            padding: 16px;
            background: linear-gradient(90deg, var(--primary-red) 0%, #c41e1e 100%);
            color: var(--white);
            border: none;
            border-radius: 50px;
            font-size: 16px;
            font-weight: 700;
            text-transform: uppercase;
            cursor: pointer;
            transition: all 0.4s ease;
            box-shadow: 0 6px 20px rgba(156, 20, 20, 0.5);
            position: relative;
            z-index: 1;
            overflow: hidden;
        }

        .about-submit-button::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.2);
            transform: translate(-50%, -50%);
            transition: width 0.6s, height 0.6s;
        }

        .about-submit-button:hover::before {
            width: 400px;
            height: 400px;
        }

        .about-submit-button:hover {
            transform: translateY(-3px) scale(1.02);
            box-shadow: 0 10px 30px rgba(156, 20, 20, 0.7);
        }

        @keyframes aboutRotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        @keyframes aboutFloating {
            0%, 100% { transform: translateY(0px) scale(1); }
            50% { transform: translateY(-25px) scale(1.05); }
        }

        @keyframes aboutTwinkle {
            0%, 100% { opacity: 0; transform: scale(0.5); }
            50% { opacity: 1; transform: scale(1); }
        }

        @keyframes aboutGlowPulse {
            0%, 100% { text-shadow: 0 0 10px rgba(248, 169, 34, 0.5); }
            50% { text-shadow: 0 0 20px rgba(248, 169, 34, 0.8), 0 0 30px rgba(248, 169, 34, 0.6); }
        }

        @keyframes aboutPhoneRing {
            0%, 100% { transform: rotate(0deg); }
            10%, 30%, 50%, 70%, 90% { transform: rotate(-15deg); }
            20%, 40%, 60%, 80% { transform: rotate(15deg); }
        }

        @keyframes aboutCallBoxFloat {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-10px); }
        }

        @keyframes aboutCallShine {
            0% { transform: rotate(0deg) translate(-50%, -50%); }
            100% { transform: rotate(360deg) translate(-50%, -50%); }
        }

        @keyframes aboutPhoneWave {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.1); }
        }

        @keyframes aboutPhoneRipple {
            0% {
                transform: scale(1);
                opacity: 1;
            }
            100% {
                transform: scale(1.8);
                opacity: 0;
            }
        }

        @keyframes aboutPhoneBounce {
            0%, 100% { transform: translateY(0) rotate(0deg); }
            25% { transform: translateY(-5px) rotate(-10deg); }
            75% { transform: translateY(-5px) rotate(10deg); }
        }

        @keyframes aboutNumberPulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }

        @keyframes aboutSlideInLeft {
            from {
                opacity: 0;
                transform: translateX(-80px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes aboutSlideInRight {
            from {
                opacity: 0;
                transform: translateX(80px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes aboutFadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes aboutButtonPulse {
            0%, 100% { box-shadow: 0 4px 15px rgba(248, 169, 34, 0.5); }
            50% { box-shadow: 0 4px 25px rgba(248, 169, 34, 0.8); }
        }

        @keyframes aboutLineGrow {
            from { width: 0; }
            to { width: 120px; }
        }

        @keyframes aboutLineExpand {
            0%, 100% { width: 80px; }
            50% { width: 100px; }
        }

        @keyframes aboutTextGlow {
            0%, 100% { text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); }
            50% { text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3), 0 0 10px rgba(255, 255, 255, 0.2); }
        }

        @keyframes aboutIconBounce {
            0%, 100% { transform: translateY(-50%); }
            50% { transform: translateY(-60%); }
        }

        @keyframes aboutFormGlow {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        @keyframes aboutBackgroundPulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.8; }
        }

        @media (max-width: 1200px) {
            .about-container {
                grid-template-columns: 350px 1fr 400px;
                gap: 40px;
            }

            .about-zodiac-wheel {
                height: 350px;
            }

            .about-heading {
                font-size: 44px;
            }
        }

        @media (max-width: 1024px) {
            .about-container {
                grid-template-columns: 1fr;
                gap: 50px;
            }

            .about-zodiac-wheel {
                width: 350px;
                height: 350px;
                margin: 0 auto;
            }

            .about-center-content {
                text-align: center;
                align-items: center;
            }

            .about-call-box {
                margin: 0 auto;
            }

            .about-form-container {
                max-width: 500px;
                margin: 0 auto;
            }
        }

        @media (max-width: 768px) {
            .about-section {
                padding: 60px 15px !important;
            }

            .about-zodiac-wheel {
                width: 300px;
                height: 300px;
            }

            .about-heading {
                font-size: 36px;
            }

            .about-description {
                font-size: 15px;
                text-align: center;
            }

            .about-form-container {
                padding: 35px 25px;
            }

            .about-form-title {
                font-size: 26px;
            }

            .about-call-box {
                flex-direction: row;
                text-align: left;
            }
        }

        @media (max-width: 480px) {
            .about-zodiac-wheel {
                width: 250px;
                height: 250px;
            }

            .about-heading {
                font-size: 30px;
            }

            .about-form-input,
            .about-form-textarea {
                padding: 12px 15px;
                font-size: 13px;
            }

            .about-cta-button {
                padding: 12px 30px;
                font-size: 14px;
            }

            .about-call-box {
                flex-direction: column;
                text-align: center;
            }
        }
