/* General page styles */
body {
    margin: 0;
    font-family: 'Arial', sans-serif;
    color: #4a4a4a;
    background-color: #e6e0d9; /* Matching the background color from the image */
}
.instagram-logo {
    width: 5px; /* Adjust the size as needed */
    height: auto;
}


.header {
    position: relative;
    text-align: center;
    color: white;
}

.header-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.header-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-shadow: 1px 1px 2px black; /* Improved text visibility */
}

.header-text h1,
.header-text h2 {
    margin: 0;
}

.header-text h1 {
    font-size: 2em;
    letter-spacing: 0.2em;
}

.header-text h2 {
    font-size: 3em;
    letter-spacing: 0.1em;
}

.content {
    margin: 20px;
    text-align: center;
}

.healing-space {
    margin: 30px 0;
    text-align: center; /* Center the title for visual emphasis */

}

.healing-space p {
	 text-align: center; /* Align text to the left */

}

.healing-space h3 {
    font-size: 2em;
    letter-spacing: 0.1em;
    margin: 0;
    font-family: 'Times New Roman', serif;
    color: #3b3b3b;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.promise-section {
    margin: 30px 0;
    text-align: center; /* Center the title for visual emphasis */

}

.promise-section p {
	 text-align: center; /* Align text to the left */

}

.promise-section h3 {
    font-size: 2em;
    letter-spacing: 0.1em;
    margin: 0;
    font-family: 'Times New Roman', serif;
    color: #3b3b3b;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.services {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin: 0 auto;
    max-width: 800px;
}

.service {
    background-color: #e6e0d9; /* Blending with the page background */
    padding: 15px;
    box-shadow: none; /* Flat design, no shadow */
    display: flex;
    align-items: center; /* Vertical alignment */
    justify-content: space-between; /* Space between text block and image */
}

.service-text {
	width: 65%; /* Allocate width to text block */
	text-align: left; /* Align text to the left */
}

.service-text h4 {
    font-size: 1.5em;
    margin-top: 0;
    margin-bottom: 10px; /* Space between title and description */
    text-transform: uppercase;
    font-family: 'Arial', sans-serif;
}

.service-text p {
    margin: 0; /* Remove default margins */
    line-height: 1.6; /* Maintain readability */
}

.service img {
    width: 30%; /* Adjust based on your design preference */
    border-radius: 8px; /* Stylistic choice for images */
    margin-left: 15px; /* Space between text and image */
}

.menu-toggle {
    position: absolute;
    left: 10px;
    top: 20px;
    font-size: 30px;
    background: none;
    border: none;
    color: white;
    z-index: 1000;
    cursor: pointer;
}

.container {
            max-width: 400px;
            margin: 40px auto;
            padding: 20px;
            background-color: #e6e0d9;
        }


.navbar {
    height: 100%;
    background-color: #333;
    width: 0; /* Navbar width set to 0 initially */
    position: fixed;
    top: 0;
    left: 0;
    overflow-x: hidden;
    transition: 0.5s; /* Animation for sliding effect */
    z-index: 999;
    padding-top: 60px; /* Add padding to top to push menu items down */
}

.navbar a {
    padding: 10px 15px;
    text-decoration: none;
    font-size: 25px;
    color: white;
    display: block;
    transition: 0.3s;
}


.navbar ul {
    list-style-type: none;
    padding: 0;
}

.navbar ul li {
    padding: 10px 0;
}

.navbar ul li.contact-icons {
    display: flex;
    align-items: center;
    padding-left: 0; /* Remove padding to align icons correctly */
}

.navbar ul li.contact-icons a {
    display: inline-block;
    margin-right: 10px; /* Add margin between icons */
}

.icon {
    width: 5px; /* Adjust width as needed */
    height: auto;
}

.contact-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.contact-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-top: 10px;
}

.contact-item {
    display: flex;
    align-items: center;
    margin: 10px 0;
}

.contact-item span {
    margin-left: 10px; /* Adjust spacing between the image and text */
}

.service-text h4 {
    text-align: center;
}

/* Additional CSS to ensure all links within .contact-info do not have underline */
.contact-info a {
    text-decoration: none;
    color: inherit; /* Optional: Inherit text color from parent */
}
