.parallax-container {
        position: relative;
        width: 100%;
        height: auto; 
        padding: 60px 0;
        background-attachment: fixed;
        background-size: cover;
        background-position: center;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #000;
        text-align: justify;
        flex-direction: column;
    }
	
	        /* Container setup */
        .container {
            display: flex;
            flex-direction: row;
            max-width: 1200px;
            width: 100%;
            background-color: transparent;
            border-radius: 8px;
            overflow: hidden;
            margin: 20px auto;
          
        }

        /* Left Container */
        .left-container {
            flex: 1;
            padding: 10px;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }

        .left-image img {
            width: 100%;
            max-height: none;
            object-fit: cover;
            border-radius: 8px;
            margin-bottom: 10px;
            max-width: 550px;
            height: auto;
        }

        /* Right Container */
        .right-container {
            flex: 1;
            padding: 10px 10px;
            overflow: hidden;
            
        }

        .right-text p {
            color: #000000;
            max-width: 610px;
            text-align: justify;

        }

        /* Header Styling */
        .left-text h2 {
            font-size: 2rem;
            color: #000000;
            margin: 0;
        }
	
	  .parallax-container2 {
            position: relative;
            width: 100%;
            height: auto;
            padding: 60px 0; 
            background-attachment: fixed;
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #000;
            text-align: justify;
            flex-direction: column;
        }
		
		        /* Container setup */
        .container2 {
            display: flex;
            flex-direction: row;
            max-width: 1200px;
            width: 100%;
            background-color: transparent;
            border-radius: 8px;
            overflow: hidden;
            margin: 20px auto;
          
        }

        /* Left Container */
        .left-container2 {
            flex: 1;
            padding: 10px;
            display: flex;
            flex-direction: column;
            align-items: center;
            color: #000;
            justify-content: center;
            text-align: left;
        }

        .right-image2 img {
            width: 100%;
            max-height: none;
            object-fit: cover;
            border-radius: 8px;
            margin-bottom: 10px;
            max-width: 550px;
            height: auto;
            
        }

        /* Right Container */
        .right-container2 {
            flex: 1;
            padding: 10px 10px;
            overflow: hidden;
            color: #000;
            
        }

        .left-text2 p {
            color: #000000;
            max-width: 610px;
            text-align: justify;

        }

        /* Header Styling */
        .right-text2 h2 {
            color: #000000;
            margin: 0;
        }
		
/* Container for address + map */
.container-4 {
    display: flex;
    flex-direction: row;
    max-width: 1200px;
    width: 100%;
    margin: 40px auto;
    border-radius: 8px;
    overflow: hidden;
    background-color: transparent; /* keep same style as your page */
    gap: 20px;
}

/* Left: Address block */
.left-container-4 {
    flex: 1;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #f9f9f9; /* light background so text stands out */
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.left-container-4 h2.location-title {
    margin-bottom: 15px;
    color: #222;
}

.location-details p {
    color: #333;
}

/* Right: Google Maps embed */
.right-container-4 {
    flex: 1;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.right-container-4 iframe {
    width: 100%;
    height: 100%;
    min-height: 300px;
    border-radius: 8px;
    border: none;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

	/* Page Title Section */
	.page-title {
		width: 100%;
		background: linear-gradient(90deg,#004aad 0%,#55aff8 50%,#004aad 100%);
		color: #fff;
		padding: 100px 20px 50px;
		text-align: center;
	}
	.page-title-inner h1 {
		margin-bottom: 10px;
		font-weight: 700;
		letter-spacing: 1px;
		text-shadow: 0 4px 12px rgba(0,0,0,0.6);
	}
	.page-title-inner p {
		font-weight: 300;
		max-width: 700px;
		margin: 0 auto;
	}