        .big-container {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        .big-container {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: black;
            min-height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 40px 40px;
        }

        .container {
            max-width: 1000px;
            background: linear-gradient(135deg, #8C4EFC 0%, #03000A 100%);;
            border-radius: 30px;
            box-shadow: 0 25px 70px rgba(0, 0, 0, 0.5);
            overflow: hidden;
            border: 1px solid rgba(100, 149, 237, 0.2);
        }

        .profile-header {
            display: flex !important;
            align-items: center;
            gap: 30px;
            padding: 50px 60px 40px;
            border-bottom: 1px solid rgba(100, 149, 237, 0.2);
        }

        .profile-image-piyush-goyal {
            width: 120px;
            height: 120px;
            border-radius: 50% !important;
            border: 4px solid rgba(65, 105, 225, 0.4) !important;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4) !important;
            object-fit: cover;
            flex-shrink: 0;
        }

        .profile-info {
            flex: 1;
        }

        .profile-name {
            font-size: 2em;
            font-weight: 700;
            color: white;
            margin-bottom: 8px;
        }

        .profile-title {
            font-size: 1.1em;
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.5;
        }

        .quote-section {
            padding: 0px 60px 50px;
        }

        .quote-header {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 30px;
        }

        .quote-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #4169E1 0%, #6495ED 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #ffffff;
            font-family: Georgia, serif;
            font-weight: 200;
            box-shadow: 0 5px 15px rgba(65, 105, 225, 0.4);
            padding-top: 10px;
            font-size: 35px;
        }

        .quote-title {
            color: white;
            font-size: 1em;
            font-weight: 400;
        }

        .message-text {
            font-size: 1em;
            line-height: 1.4;
            color: #ffffff;
        }

        .message-text p {
            margin-bottom: 25px;
        }

        .highlight {
            color: #6495ED;
            font-weight: 600;
        }

        .stats {
            background: rgba(65, 105, 225, 0.1);
            padding: 25px;
            border-radius: 15px;
            margin: 30px 0;
            border-left: 4px solid #4169E1;
        }

        .stats p {
            margin-bottom: 0;
        }

        .dots-indicator {
            display: flex;
            gap: 12px;
            justify-content: center;
            padding: 25px 0;
        }

        .dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: rgba(65, 105, 225, 0.3);
        }

        .dot.active {
            background: #4169E1;
            width: 35px;
            border-radius: 4px;
        }

        @media (max-width: 768px) {
            .big-container {
                padding: 20px 20px;
            }
            .profile-header {
                flex-direction: column;
                text-align: center;
                padding: 40px 30px 30px;
            }

            .profile-image-piyush-goyal {
                width: 100px;
                height: 100px;
            }

            .profile-name {
                font-size: 1.5em;
            }

            .profile-title {
                font-size: 0.95em;
            }

            .quote-section {
                padding: 0px 30px 40px;
            }

            .quote-icon {
                width: 50px;
                height: 40px;
                font-size: 24px;
                padding-top: 5px;
            }

            .quote-title {
                font-size: 0.9em;
            }

            .message-text {
                font-size: 1em;
            }
        }
        .more-content {
            display: none;
            margin-top: 20px;
        }

        .read-more-btn {
            background: none !important;
            border: none !important;
            color: #6495ED !important;
            font-size: 1em !important;
            font-weight: 600 !important;
            cursor: pointer !important;
            padding: 0 !important;
            margin-top: 10px !important;
            background-color: transparent !important;
        }

        .read-more-btn:hover {
            text-decoration: underline;
        }