.site-header {
	position: fixed;
	top: 0; left: 0; right: 0;
	z-index: 1000;
    background-color: rgb(23, 37, 84); color: hsl(210 30% 96%);
	transition: background-color 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
	border-bottom: 1px solid ;
}
.site-header.scrolled {
	background: rgba(255,255,255,0.9);
	-webkit-backdrop-filter: saturate(150%) blur(8px);
	backdrop-filter: saturate(150%) blur(8px);
	border-color: rgba(0,0,0,0.06);
	box-shadow: var(--shadow-sm);
}

/* Base styles for all screen sizes */
.section-contact-getintouch {
    margin-top: 180px;
    margin-bottom: 20px;
    margin-left: 5%;
    margin-right: 5%;
}

.contact-getintouch-tilearea {
    text-align: center;
    font-family: 'DM Sans', Arial, sans-serif;
    color: var(--color-dark);
    line-height: 30px;
}

/* Adjusting the H1 heading size */
.contact-getintouch-tilearea h1 {
    color: hsl(215 80% 45%);
    /* Increased the minimum and preferred font sizes */
    font-size: clamp(2.5rem, 5vw, 4rem); 
    line-height: 1.2;
}

/* Adjusting the paragraph font size */
#contact-getintouch-para {
    /* Made the font size larger and more responsive */
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    margin-bottom: 30px;
}

.contact-getintouch-containers {
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 100%;
    height: auto;
    font-family: 'DM Sans', Arial, sans-serif;
}

.contact-getintouch-containers h2 {
    font-family: 'DM Sans', Arial, sans-serif;
    color: hsl(215 80% 45%);
    margin-bottom: 15px;
}

.contact-getintouch-container-left,
.contact-getintouch-container-right {
    width: 100%;
    height: auto;
}

.contact-getintouch-container-right {
    font-size: larger;
}

.info-list {
    list-style: none;
    padding: 0;
}

.info-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.info-icon {
    margin-right: 15px;
    flex-shrink: 0;
}

/* Media query for wide screens (e.g., desktops, tablets) */
@media (min-width: 768px) {
    .section-contact-getintouch {
        margin-top: 140px;
        margin-left: 10%;
        margin-right: 10%;
    }

    .contact-getintouch-containers {
        flex-direction: row;
        column-gap: 20px;
        justify-content: space-between;
    }
    
    .contact-getintouch-container-left,
    .contact-getintouch-container-right {
        width: 50%;
    }
}