.body {
    font-family: 'Champions', sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80vh;
    background-color: #ffffff;
}

.sectionn-wrapper {
    text-align: center;
    padding: 20px;
}

.sectionn-title {
    font-size: 28px;
    font-weight: bold;
    color: green;
    margin-bottom: 20px;
}

.layout-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100vh;
    width: 100%;
    padding: 20px;
}

.quote-area {
    flex: 1;
    text-align: left;
    padding: 40px;
    position: relative;
}

.quote-frame {
    border-left: 5px solid green;
    padding-left: 20px;
    position: relative;
}

.quote-message {
    font-size: 20px;
    color: #333;
    font-style: italic;
    line-height: 1.6;
    margin-left: 30px;
    position: relative;
}

.quote-writer {
    font-size: 18px;
    font-weight: bold;
    color: green;
    margin-top: 10px;
    font-style: italic;
}

.quote-message::before {
    content: "“";
    font-size: 50px;
    color: green;
    position: absolute;
    left: -20px;
    top: -10px;
}

.quote-message::after {
    content: "”";
    font-size: 50px;
    color: green;
    position: absolute;
    right: -20px;
    bottom: -10px;
}

.decorative-quote {
    font-size: 50px;
    color: green;
    position: absolute;
}

.quote-top-left {
    left: -20px;
    top: -20px;
}

.quote-bottom-right {
    right: -20px;
    bottom: -20px;
}

.video-display {
    flex: 1;
    padding: 20px;
    text-align: center;
}

iframe {
    width: 100%;
    height: 280px;
    border-radius: 10px;
    border: none;
}