body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


.hero-section {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    padding: 40px 20px;
}

.header-text {
    max-width: 50%;
    text-align: left;
}

h1 {
    font-size: 2.5rem;
    line-height: 1.5;
}

.cta-btn {
    background-color: #31246e;
    color: #fff;
    border: none;
    padding: 10px 20px;
    margin-top: 20px;
    cursor: pointer;
    font-size: 1rem;
    border-radius: 4px;
}

.hero-image {
    max-width: 40%;
}

.services {
    display: flex;
    justify-content: space-around;
    padding: 40px 20px;
    background-color: #e8dff2;
}

.service {
    text-align: center;
}

.service img {
    width: 100px;
    height: 100px;
}

.experience {
    display: flex;
    padding: 40px 20px;
    background-color: #f4f2f9;
}

.experience-text {
    max-width: 50%;
}

.experience img {
    max-width: 40%;
    margin-left: 20px;
}

.shop-btn {
    background-color: #fff;
    color: white;
    padding: 10px 20px;
    border: none;
    margin-top: 20px;
    cursor: pointer;
    border-radius: 4px;
}

.location {
    text-align: center;
    padding: 40px 20px;
    background-color: #e0e0e0;
}

.location img {
    width: 80%;
    margin-top: 20px;
}

footer {
    background-color: #5e4e8f;
    color: white;
    padding: 20px;
    text-align: center;
}
