
    .custom-section {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 10%;
        gap: 40px;
        background-color: #faf8f4;
        height: 100vh;
        box-shadow: 0 -10px 20px rgba(0, 0, 0, 0.1); /* Top shadow */
    }

    .custom-text {
        min-width: 280px;
    }

    .custom-text h1 {
        font-size: 1.8rem;
        font-weight: bold;
        margin-bottom: 20px;
        color: #333;
        line-height: 1.4;
    }

    .custom-text button {
        background-color: #3f7d45;
        color: white;
        padding: 12px 24px;
        border: none;
        border-radius: 6px;
        font-size: 20px;
        cursor: pointer;
        transition: background-color 0.3s ease;
        width: 100%;
    }

    .custom-text button:hover {
        background-color: #336a38;
    }

    .custom-image {
        display: flex;
        justify-content: center;
    }

    .custom-image img {
        max-width: 600px;
        width: 100%;
        height: auto;
    }

    @media (max-width: 768px) {
        .custom-section {
            flex-direction: column;
            text-align: center;
        }
        .custom-text {
            order: 1;
        }
        .custom-image {
            order: 2;
        }
    }

