.main-section-p {
    margin-bottom: 20px;   
}

.contact-section {
    width: calc(100% - 40px);
	max-width: 1140px;
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.contact-image {
    width: 100%;
}
.contact-image img {
    width: 100%;
	height: 100%;
	object-fit: cover;
}

.contact-paragraph-content {
    width: 100%;
}

.contact-form-container {
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 2.5rem;
}

.contact-container {
	width: calc(100% - 40px);
	max-width: 1000px;
	display: flex;
	flex-direction: row;
	margin: 40px 0;
	justify-content: space-between;
	gap: 4rem;
}

.contact-info {
    width: 100%;   
}

.contact-form {
    width: 100%;
}
.contact-form form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}


.reach-us-section {
	margin-top: 40px;
	padding: 80px 0;
	background: #eeeeee;
	width: 100%;
}

.reach-us-inner {
    max-width: 1200px;
    width: calc(100% - 40px);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 5rem;
    align-items: start;
}


.reach-us-details {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 1.8rem;
}

.reach-us-details li strong {
    display: block;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--main-accent-color);
    margin-bottom: 0.4rem;
}

.reach-us-details li span {
    font-size: 0.95rem;
	color: #444;
    line-height: 1.6;
}

.clickable {
    transition: color .2s ease;
    cursor: pointer;
}
.clickable:hover {
    color: black;
    text-decoration: underline;
}

.reach-us-map {
    width: 100%;
    height: 100%;
    min-height: 420px;
    border-radius: 18px;
    overflow: hidden;
    background: white;
}

.map-container {
    width: 100%;
    height: 100%;
    border: none;
    background-color: white;
}

@media (max-width: 1000px) {
    .reach-us-section {
	    padding: 40px 0;
    }
    .reach-us-inner {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .reach-us-map {
        min-height: 400px;
    }

}

@media (max-width: 900px) {
    .contact-section {
        flex-direction: column;
    }
}


@media (max-width:768px) {
    .contact-container {
        flex-direction: column;
        gap: 2rem;
    }
}