/* Reset styles */
        body, html {
            margin: 0;
            padding: 0;
            font-family: Arial, sans-serif;
            box-sizing: border-box;
        }

        /* Main container */
        .container {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: space-between;
            width: 100%;
            min-height: 100vh;
            background: linear-gradient(to bottom, #f8f9fa, #e9ecef);
        }

        /* Top Section */
        .top-section {
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
            background: #343a40;
            color: #ffffff;
        }

        .top-section .logo {
            flex-shrink: 0;
            margin-right: 15px;
        }

        .top-section .logo img {
            width: 60px;
            height: auto;
        }

        .top-section h1 {
            margin: 0;
            font-size: 2rem;
            font-weight: bold;
        }

        /* Middle Section */
        .middle-section {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            margin: 20px;
            padding: 20px;
            background: gray;
            border-radius: 10px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            width: 90%;
            max-width: 600px;
        }

        .middle-section img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            margin-bottom: 20px;
        }

        .middle-section button {
            padding: 15px 40px;
            font-size: 18px;
            font-weight: bold;
            color: #ffffff;
            background: linear-gradient(45deg, #4e54c8, #8f94fb);
            border: none;
            border-radius: 50px;
            cursor: pointer;
            transition: transform 0.3s, background 0.3s ease;
            box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
        }

        .middle-section button:hover {
            transform: translateY(-5px);
            background: linear-gradient(45deg, #8f94fb, #4e54c8);
            box-shadow: 0 12px 20px rgba(0, 0, 0, 0.3);
        }

        /* Text Area Section */
        .text-area-section {
            width: 90%;
            max-width: 600px;
            margin: 20px;
            padding: 20px;
            background: #ffffff;
            border-radius: 10px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }

        .text-area-section p {
            margin: 0;
            font-size: 1rem;
            line-height: 1.6;
            color: #333333;
            text-align: center;
        }

        /* Footer Section */
        .footer-section {
            width: 100%;
            text-align: center;
            padding: 20px;
            background: #343a40;
            color: #ffffff;
        }

        .footer-section p {
            margin: 0;
            font-size: 1rem;
        }

        /* Responsive design */
        @media (max-width: 768px) {
            .middle-section,
            .text-area-section {
                margin: 10px;
            }

            .middle-section button {
                font-size: 16px;
                padding: 12px 30px;
            }

            .top-section h1 {
                font-size: 1.5rem;
            }

            .footer-section p {
                font-size: 0.9rem;
            }

            .top-section {
                flex-direction: column;
                text-align: center;
            }

            .top-section .logo {
                margin-bottom: 10px;
            }
        }