   /* Define your CSS styles here */
        /* Reset styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        /* Hero section styles */
        .hero-section {
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .hero-content {
            display: flex;
            flex-direction: column;
            align-items: center;
            width: 100%;
            max-width: 1200px;
            padding: 0 20px;
        }

        .text-content h2 {
            font-size: 2.5rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
        }

        .text-content p {
            font-size: 1.125rem;
            margin-bottom: 0.5rem;
        }

        .text-content .border-b {
            width: 80px;
            border-bottom: 2px solid black;
            margin-bottom: 1rem;
        }

        .icon-content {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            padding-top: 1rem;
        }

        .icon-item {
            display: flex;
            align-items: center;
            font-weight: 500;
        }

        .icon-item img {
            height: 1.5rem;
            margin-right: 0.5rem;
        }

        /* Responsive adjustments */
        @media only screen and (min-width: 768px) {
            .hero-content {
                flex-direction: row;
                align-items: flex-start;
            }

            .text-content {
                margin-right: 20px;
                text-align: center;
            }

            .icon-content {
                padding-top: 0;
            }
        }