* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Open Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: normal;
    font-style: normal;
    font-variation-settings: "wdth" 100;
}

.parallax {
    height: 100vh;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: rgba(255, 255, 255, 0.65);
    background-blend-mode: lighten;
}

.hero {
    background-image: url('/media/images/background_01.jpg');
    height: 100vh;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    color: black;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.65);
    background-blend-mode: lighten;
}

.parallax-2 {
    background-image: url('/media/images/background_02.jpg');
}

.parallax-3 {
    background-image: url('/media/images/background_03.jpg');
}

.parallax-content {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.text-section {
    padding: 64px 32px;
    background: #ffffff;
    text-align: center;
}

.section-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
    text-align: left;
}

.text {
    flex: 1;
}

.side-image {
    width: 250px;
    flex-shrink: 0;
}

.side-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
}

.section-content:nth-of-type(even) {
    flex-direction: row-reverse;
}

.content {
    display: flex;
    width: 100%;
    max-width: 768px;
    background: #ffffff;
    margin: 32px;
    border-radius: 8px;
    box-shadow: 3px 3px 8px #848484;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
    position: relative;
    padding-bottom: 32px;
}

.content h1 {
    padding: 16px 0;
    text-transform: uppercase;
    color: #fefefe;
    background: #1800ac;
    width: 100%;
    text-align: center;
}

.content ul {
    max-width: 65%;
    text-align: left;
    margin: 24px 0;
}

.content ul img {
    position: absolute;
    width: 180px;
    height: 180px;
    margin-top: -46px;
}

.content ul li {
    list-style-type: square;
    font-size: 18px;
    padding: 3px 0;
}

.content p {
    margin: 32px 32px 0 32px;
    font-size: 18px;
    font-weight: 500;
    text-align: left;
}

p.quote {
    font-size: 20px;
    font-weight: 400;
    font-style: italic;
}

a {
    text-decoration: none;
    color: #1800ac;
}

a:hover {
    text-decoration: underline;
}

a.button {
    width: 300px;
    background: #00ff00;
    text-align: center;
    padding: 24px;
    color: #242424;
    border-radius: 8px;
    display: block;
    font-size: 28px;
    font-weight: bold;
}

p.service {
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
}