/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.body-1 {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    background-color: #f8f8f8;
    color: #333;
    display: flex;
    justify-content: center;
    padding: 20px;
}

/* Main Container */
.container-1 {
    display: flex;
    max-width: 1200px;
    background-color: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

/* Image Section */
.image-section-1 {
    flex: 1;
    background-color: #f9f5e5;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.image-wrapper-1 {
    border-width: 36px 20px;
    border-style: solid;
    border-color: #c2a75d;
    border-radius: 10px;
    border-top-left-radius: 100px;
    border-bottom-right-radius: 100px;
    overflow: hidden;
    position: relative;
    width: 100%;
    max-width: 500px;
    aspect-ratio: 3 / 4; /* Ensures the aspect ratio */
    background-color: #fff;
}

.image-wrapper-1 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Text Section */
.text-section {
    flex: 1;
    padding: 40px 30px;
}

.text-section h1 {
    font-size: 2.5rem;
    margin-bottom: 16px;
    position: relative;
}

.text-section h1::after {
    content: "";
    display: block;
    width: 50px;
    height: 4px;
    background-color: #c2a75d; /* Golden color */
    margin-top: 8px;
}

.text-section p {
    margin-bottom: 16px;
    color: #555;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Contact Button */
.contact-button {
    display: inline-block;
    background-color: #c2a75d; /* Golden color */
    color: #fff;
    border: none;
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 25px;
    cursor: pointer;
    text-transform: uppercase;
    transition: background-color 0.3s ease;
}

.contact-button:hover {
    background-color: #a68845;
}
