.begin-section {
    background: url('../images/services.jpg') center center / cover no-repeat;  /* PHOTO FROM PINTEREST, ACCOUNT WAS TAKEN DOWN */
    color: #F0EDE5;
    text-align: center;
}

.begin-text {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
    padding: 0 1rem;
}

.begin-text h2 {
    font-size: 1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: bold;
    margin: 2rem 0 1rem;
    text-shadow: 4px 4px 9px rgba(0, 0, 0, 10);
}

.begin-text p {
    font-size: 1.2rem;
    max-width: 90%;
    margin: 0 auto 1rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

body {
    background-color: #F0EDE5;
    font-family: 'EB Garamond', sans-serif;
}

.begin,
.begin-text {
  padding-top: 8rem; 
}

/* PROCESS */
.the-process {
    text-align: center;
    padding: 3rem 1rem;
    background-color: #F0EDE5;
}

.the-process h2 {
    font-size: 2rem;
    font-weight: bold;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 2rem;
    margin-top: -1rem;
    color: #242223;
}

.steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.step {
    width: 300px;
    max-width: 350px;
    background: #ffffff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    border: 2px solid #242223;
}

.step h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #242223;
}

.step p {
    font-size: 1em;
    color: #242223;
}

/* SERVICES */
.service-offerings {
    padding: 4rem 2rem;
    background-color: #242223;
    text-align: center;
}

.service-offerings h2 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1rem;
    margin-top: -2rem;
    color: #F0EDE5;
}

.service-offerings .process-divider {
    width: 20px;
    margin: 1rem auto;
    border: 2px solid #242223;
}

.dancing {
    font-family: 'Dancing Script', serif;
    font-size: 2.5rem;
    color: #242223;
}

.dancing-design {
    font-family: 'Dancing Script', serif;
    font-size: 2.5rem;
    color: #F0EDE5;
}

.dancing-brand {
    font-family: 'Dancing Script', serif;
    font-size: 2.5rem;
    color: #F0EDE5;
}

.service-section {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin: 1.5rem 0;
    padding: 1.5rem;
    text-align: left;
    width: 48%;
    max-width: 600px;  
    margin-left: auto;
    margin-right: auto;
}

.service-section:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.service-header h3 {
    font-size: 1.4rem;
    font-weight: bold;
    color: #242223;
    margin-bottom: 0.8rem; 
}

.service-body p {
    font-size: 0.9rem;
    color: #242223;
    margin-bottom: 1.5rem;
}


.custom-invite {
    margin-top: 3rem;
    background-color: #F0EDE5;
    color: #242223;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
}

.custom-invite p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    text-transform: uppercase;
    background-color: #F0EDE5;
    color: #242223 !important;
    text-decoration: none;
    border-radius: 30px;
    border: 1px solid #242223;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.cta-button:hover {
    background-color: #242223;
    color: #F0EDE5 !important;
}


.service-section-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1.5rem;
    margin-top: 2rem;
}

.service-section-wrapper .service-section {
    width: 45%; 
    max-width: 500px;
    padding: 1.2rem;  
}

.process-divider {
    border-top: 2px solid #F0EDE5;
    width: 100%;
    margin-left: 5rem;
    margin: -1rem auto;
    margin-bottom: 2rem;
    display: block;
}


@media screen and (max-width: 768px) {
    .steps {
        flex-direction: column;
        align-items: center;
    }

    .step {
        width: 100%;
    }
}