.persembahan {
    width: 100%;
    min-height: 100vh;
    height: auto;
    padding-top: 70px;
    padding-bottom: 30px;
    overflow: hidden;
    display: flex;
    justify-content: start;
    align-items: center;
    flex-direction: column;
}

.persembahanTop {
    width: 90%;
    max-width: 1200px;
    height: auto;
    overflow: hidden;
}

.persembahanTop h1 {
    width: auto;
    padding: 0px;
    margin: 0px;
    color: black;
    font-size: 40px;
    margin: 30px 0px 10px 0px;
}

.persembahanTop p {
    width: auto;
    padding: 0px;
    margin: 0px;
    color: black;
    font-size: 20px;
    margin-bottom: 10px;
}

.persembahanContent {
    width: 90%;
    max-width: 1200px;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 40px 0px 0px 0px;
    overflow: hidden;
}

.persembahanImgGereja {
    width: 250px;
    height: 250px;
    margin-right: 40px;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fffddd;
    flex-shrink: 0;
    overflow: hidden;
}

.persembahanImgBca {
    width: 250px;
    height: 250px;
    margin-right: 40px;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #02329c;
    overflow: hidden;
    flex-shrink: 0;
}

.persembahanImgGereja img,
.persembahanImgBca img {
    max-width: 70%;
    max-height: 70%;
}

.persembahanText {
    width: auto;
    height: auto;
    display: flex;
    flex-direction: column;
    flex: auto;
}

.persembahanText h1 {
    width: auto;
    padding: 0px;
    margin: 0px;
    color: black;
    font-size: 30px;
    margin-bottom: 10px;
}

.persembahanText h2 {
    width: auto;
    padding: 0px;
    margin: 0px;
    color: black;
    font-size: 22px;
    margin-bottom: 10px;
}

.persembahanText p {
    padding: 0px;
    margin: 0px;
    color: black;
    font-size: 18px;
    width: 90%;
    line-height: 1.3;
    margin-bottom: 10px;
}

.persembahanText span {
    font-weight: 600;
}

.persembahanText button {
    padding: 0px;
    margin: 0px;
    color: white;
    font-size: 18px;
    background-color: black;
    border-radius: 15px;
    padding: 10px 30px;
    width: fit-content;
    text-decoration: none;
    cursor: pointer;
    border: 2px solid black;
    transition: all 0.3s ease;
}

.persembahanText button:hover {
    background-color: white;
    color: black;
}

@media (min-width: 800px) {
    .persembahan {
        padding-top: 70px;
    }
}

@media (max-width: 800px) {
    .persembahan {
        padding-top: 50px;
    }

    .persembahanContent {
        width: 90%;
        flex-direction: column;
    }

    .persembahanImgGereja,
    .persembahanImgBca {
        width: 100%;
        margin-right: 0px;
    }

    .persembahanText {
        width: 90%;
        padding: 20px 0px;
    }
}

@media (max-width: 600px) {
    .persembahanContent {
        width: 85%;
        flex-direction: column;
    }

    .persembahanImgGereja,
    .persembahanImgBca {
        height: 150px;
    }

    .persembahanText h1 {
        font-size: 20px;
        margin-bottom: 10px;
    }

    .persembahanText h2 {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .persembahanText p {
        font-size: 15px;
    }

    .persembahanText button {
        font-size: 15px;
        padding: 10px 30px;
    }

    .persembahanTop {
        width: 85%;
    }

    .persembahanTop h1 {
        font-size: 30px;
    }

    .persembahanTop p {
        font-size: 18px;
    }
}