.spacing-div {
    height: 70px;
}

.center-content {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
    margin-bottom: 30px;
}

.main-image {
    width: 60%;
}

.section-title {
    text-align: center;
    margin: 20px;
}

.content-wrapper {
    margin-right: 70px;
    margin-left: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.text-content-container {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    flex-direction: column;
    width: 75%;
}

.right-aligned-paragraph {
    width: 100%;
    text-align: right;
}

.right-aligned-title {
    text-align: right;
    display: block;
    margin-top: 70px;
}

/* =============== Responsive: Mobile (max-width: 768px) =============== */
@media (max-width: 768px) {
    .spacing-div {
        height: 40px;
    }

    .center-content {
        margin-top: 20px;
        margin-bottom: 20px;
    }

    .main-image {
        width: 95%;
    }

    .section-title {
        margin: 15px 10px;
        font-size: 1.5rem;
    }

    .content-wrapper {
        margin-right: 15px;
        margin-left: 15px;
    }

    .text-content-container {
        width: 100%;
    }

    .right-aligned-title {
        margin-top: 35px;
    }

    .right-aligned-title h2,
    .title h2 {
        font-size: 1.3rem;
    }

    .right-aligned-paragraph,
    .text-content-container p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
}

/* =============== Responsive: Small phones (max-width: 480px) =============== */
@media (max-width: 480px) {
    .spacing-div {
        height: 30px;
    }

    .center-content {
        margin-top: 15px;
        margin-bottom: 15px;
    }

    .main-image {
        width: 100%;
    }

    .content-wrapper {
        margin-right: 10px;
        margin-left: 10px;
    }

    .right-aligned-title h2,
    .title h2 {
        font-size: 1.1rem;
    }

    .right-aligned-paragraph,
    .text-content-container p {
        font-size: 0.9rem;
    }
}