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

        body {
            font-family: Arial, sans-serif;
            line-height: 1.6;
            color: #333;
            /* 移除默认内边距，避免两侧间隙 */
        }

        .title {
            font-size: 2rem;
            color: #2c3e50;
            line-height: 1.2;
        }


        .container {
            width: 100%;
            /* 占满整个宽度 */
        }

        .content-wrapper {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }

        .image-section img {
            width: 100%;
            height: auto;
            border-radius: 8px;
            object-fit: cover;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }

        .text-section {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }



        .buttons {
            display: flex;
            gap: 15px;
            margin-top: 10px;
            flex-wrap: wrap;
            /* 确保按钮在小屏幕不会溢出 */
        }

        .btn {
            padding: 12px 24px;
            border: none;
            border-radius: 4px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .btn-read {
            background-color: #0057B8;
            color: white;
        }

        .btn-quote {
            background-color: #2ecc71;
            color: white;
        }

        .btn:hover {
            opacity: 0.9;
            transform: translateY(-2px);
        }

        @media (min-width: 768px) {
            .buttons {
                justify-content: flex-start;
            }

            .description span {
                font-style: "Poppins-Medium";
                color: #000000;
                font-size: 14px;
            }

            h2 {
                color: #000000;
                font-size: 24px;
            }
        }

        @media (min-width: 1024px) {
            .content-wrapper {
                flex-direction: row;
                align-items: center;
            }

            .image-section {
                flex: 0.45;
                /* 图片占比略小，向左偏移效果 */
                padding-left: 0;
                /* 移除左侧内边距 */
            }

            .text-section {
                flex: 0.55;
            }

            .buttons {
                justify-content: flex-start;
            }

            .description span {
                font-style: "Poppins-Medium";
                color: #000000;
                font-size: 16px;
            }

            h2 {
                color: #000000;
                font-size: 36px;
            }
        }
    