/* Reset some default styles */
body, h1, h2, p, img {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Style the "why-us" section */
.why-us {
    background-color: #f2e5d4;
    padding: 50px 0;
}

/* Center the content in the container */
/* .container {
    max-width: 1200px;
    margin: 0 auto;
} */

/* Style the title section */
.us-title {
    text-align: center;
    margin-bottom: 20px;
}

.us-title h2 {
    font-size: 24px;
    margin-top: 10px;
}

/* Style the description section */
.us-desc {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.us-desc p {
    flex: 1;
    max-width: 600px;
    margin-bottom: 20px;
}

/* Style the image */
.us-title img {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    height: auto;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .us-desc {
        flex-direction: column;
    }
}


.us-container{
    display: flex;
    gap: 50px;
}

.us-title{
    width: 50%;
}

.us-title .us-image img{
    width: 100%;
    /* border-radius: 50%; */
    height: 500px;
    margin-top: 40px;
}

.us-desc{
    width: 50%;
}

.us-desc .us-price{
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Reset some default styles */
/* body, h1, h2, p, img {
    margin: 0;
    padding: 0;
} */

/* Style the us-price section */
.us-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 800px;
    margin: 0 auto;
}

/* Style individual price boxes */
.us-price > div {
    text-align: center;
    padding: 20px;
    border: 1px solid #ddd; /* Add a border for separation */
    border-radius: 8px;
    flex: 1;
    margin: 0 10px;
    background-color: #fff; /* Adjust background color as needed */
    transition: transform 0.3s ease-in-out;
}

/* Hover effect on individual price boxes */
.us-price > div:hover {
    transform: scale(1.05);
}

/* Style icons in price boxes */
.us-price i {
    font-size: 36px;
    margin-bottom: 10px;
    color: #3498db; /* Change color as needed */
}

/* Style headings and paragraphs in price boxes */
.us-price h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.us-price p {
    font-size: 16px;
    color: #666; /* Adjust text color as needed */
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .us-price {
        flex-direction: column;
        align-items: stretch;
    }

    .us-price > div {
        margin: 10px 0;
    }

    .us-container{
        display:inline;
        gap: 50px;
    }

    .us-title{
        width: 100%;
    }

    .us-desc{
        width: 100%;
    }
}
