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

        .para-template-container {
            align-items: center;
            /* margin-top: 10px; */
            display: flex;
            align-items: center;
            /* min-height: 100vh; */
           font-family: 'Futura PT', sans-serif;
        }

        .para-content-section {
            /* margin-top: -200px; */
            flex: 1;
            padding: 40px 30px;
            background-color: #ffffff;
            color: #000000;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .para-content-wrapper {
            max-height: 400px;
            overflow-y: auto;
            padding-right: 10px;
        }

        .para-content-wrapper::-webkit-scrollbar {
            width: 8px;
        }

        .para-content-wrapper::-webkit-scrollbar-track {
            background: #f1f1f1;
        }

        .para-content-wrapper::-webkit-scrollbar-thumb {
            background: #000000;
            border-radius: 4px;
        }

        .para-content-wrapper::-webkit-scrollbar-thumb:hover {
            background: #333333;
        }

        .para-section-title {
            font-size: 2rem;
            font-weight: bold;
            margin-bottom: 30px;
            line-height: 1.2;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .para-section-description {
            font-size: 1rem;
            line-height: 1.6;
            margin-bottom: 20px;
            color: #333333;
        }

        .para-section-question {
            font-size: 1.2rem;
            font-weight: bold;
            margin: 30px 0 20px 0;
            text-transform: uppercase;
        }

        .para-image-section {
            min-height: 400px;
            flex: 1;
            position: relative;
            background-image: url('../images/5.webp');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .para-overlay-button {
            background-color: transparent;
            color: #000000;
            border: 2px solid #000000;
            padding: 15px 30px;
            font-size: 1rem;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 1px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .para-overlay-button:hover {
            background-color: #ffffff;
            color: #000000;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .para-template-container {
                flex-direction: column;
            }

            .para-content-section {
                padding: 30px 20px;
            }

            .para-content-wrapper {
                max-height: 300px;
                overflow-y: auto;
            }

            .para-image-section {
                width: 100%;
                min-height: 400px;
            }

            .para-section-title {
                font-size: 1.5rem;
            }

            .para-overlay-button {
                padding: 12px 25px;
                font-size: 0.9rem;
            }
        }

        @media (max-width: 480px) {
            .para-content-section {
                padding: 20px 15px;
            }

            .para-content-wrapper {
                max-height: 250px;
                overflow-y: auto;
            }

            .para-section-title {
                font-size: 1.3rem;
            }

            .para-overlay-button {
                padding: 10px 20px;
                font-size: 0.8rem;
            }
        }

        @media (max-width: 360px) {
            .para-content-section {
                padding: 15px 10px;
            }

            .para-content-wrapper {
                max-height: 200px;
                overflow-y: auto;
            }

            .para-section-title {
                font-size: 1.1rem;
                margin-bottom: 20px;
            }

            .para-section-description {
                font-size: 0.9rem;
            }

            .para-section-question {
                font-size: 1rem;
            }

            .para-overlay-button {
                padding: 8px 15px;
                font-size: 0.7rem;
            }

            .para-image-section {
                width: 100%;
                min-height: 300px;
            }
        }