```css
@import url('https://fonts.googleapis.com/css2?family=Great+Vibes&display=swap');

body { 
    font-family: 'Helvetica Neue', Arial, sans-serif; 
    margin: 0; 
    padding: 0; 
    line-height: 1.8; 
    font-size: 1.08rem; 
    color: #222222; 
}
header { 
    background: #ffffff; 
    padding: 25px 20px; 
    border-bottom: 1px solid #eeeeee; 
    position: sticky; 
    top: 0; 
    z-index: 1000; 
}
nav { 
    max-width: 1200px; 
    margin: auto; 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
}
.logo-text {
    font-family: 'Great Vibes', cursive;
    font-size: 2.35rem;
    color: #222222;
    text-align: center;
    max-width: 950px;
    margin: 0 auto;
}
ul { 
    list-style: none; 
    display: flex; 
    gap: 28px; 
    margin: 0; 
    padding: 0; 
}
ul li a { 
    color: #222222; 
    text-decoration: none; 
    font-weight: 500; 
}
.hero {
    text-align: center;
    padding: 80px 20px 20px;   /* reduced top & bottom padding */
    background: #ffffff;
}
.hero img.monogram {
    max-width: 260px;
    margin-bottom: 15px;
}
h2 { 
    font-family: 'Great Vibes', cursive; 
    font-size: 3.2rem; 
    color: #222222; 
    text-align: center; 
    margin-top: 0;      /* ← removes the extra browser space */
    margin-bottom: 25px; 
}
section { 
    padding: 40px 20px 80px; 
    max-width: 1100px; 
    margin: auto; 
}
.service-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
    gap: 35px; 
}
.service-grid img { 
    width: 100%; 
    border-radius: 8px; 
    margin-bottom: 15px; 
}
.testimonial-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
    gap: 35px; 
}
blockquote { 
    background: #f9f9f9; 
    padding: 25px; 
    border-left: 4px solid #222222; 
    margin: 0; 
}
form { 
    max-width: 500px; 
    margin: 30px auto; 
    display: flex; 
    flex-direction: column; 
}
input, textarea, button { 
    margin: 12px 0; 
    padding: 14px; 
    border: 1px solid #ddd; 
    border-radius: 4px; 
}
button { 
    background: #222222; 
    color: white; 
    cursor: pointer; 
}
.footer { 
    background: #ffffff; 
    padding: 60px 20px 40px; 
    text-align: center; 
    border-top: 1px solid #eeeeee; 
}
.footer img { 
    max-width: 240px; 
    margin-bottom: 25px; 
}
.footer p { 
    margin: 10px 0; 
    font-size: 1.05rem; 
}
@media (max-width: 768px) { 
    .hero h1 { font-size: 3rem; } 
}
/* ====================== ABOUT IMR PAGE – TIGHTEN GAP ABOVE PHOTO ====================== */
.content {
    padding: 40px 20px 80px;     /* much smaller top padding */
    max-width: 950px;
    margin: 0 auto;
    line-height: 1.8;
    font-size: 1.05rem;
}
.content h2 {
    font-family: 'Great Vibes', cursive;
    font-size: 3.2rem;
    text-align: center;
    margin-bottom: 25px;         /* tighter spacing under the title */
}
.content ul {
    list-style-type: disc;
    padding-left: 40px;
    margin: 20px 0 30px 0;
}
.content li {
    margin-bottom: 12px;
}
.boarding-section {
    padding: 40px 20px 80px;     /* much smaller top padding */
    max-width: 950px;
    margin: 0 auto;
}

.boarding-section h2 {
    font-family: 'Great Vibes', cursive;
    font-size: 3.2rem;
    text-align: center;
    margin-bottom: 25px;
}

.boarding-layout {
    display: flex;
    gap: 60px;
    align-items: flex-start;
    max-width: 1000px;
    margin: 0 auto;
}

.boarding-list {
    flex: 1;
}

.boarding-list ul {
    display: block !important;
    list-style-type: disc;
    padding-left: 30px;
    margin: 0;
}

.boarding-list li {
    margin-bottom: 18px;
    font-size: 1.08rem;
}

.boarding-photo {
    flex: 1;
    max-width: 420px;
}

.boarding-photo img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Mobile: stack photo below list */
@media (max-width: 768px) {
    .boarding-layout {
        flex-direction: column;
        gap: 40px;
    }
    .boarding-photo {
        max-width: 100%;
    }
}
/* Mobile menu fix — no more horizontal scrolling on iPhone */
@media (max-width: 768px) {
    nav {
        flex-direction: column;
        align-items: center;
        padding: 15px 0;
    }
    ul {
        flex-direction: column;
        gap: 12px;
        margin-top: 15px;
    }
    ul li a {
        font-size: 1.05rem;
        padding: 6px 0;
    }
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 25px;
}

.gallery-grid img {
    width: 100%;
    height: 260px;           /* Medium size — all photos same height */
    object-fit: cover;       /* Crops nicely so they all look uniform */
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.header-subtitle {
    font-family: 'Great Vibes', cursive;
    font-size: 1.20rem;
    text-align: left;           /* now centered under the logo */
    margin: 8px auto 0 auto;
    color: #222222;
    max-width: 950px;             /* matches the logo's width */
}
.welcome-section {
    padding: 40px 20px 80px;
    max-width: 950px;          /* ← this is the key */
    margin: 0 auto;            /* ← ADD THIS LINE (very important) */
}
.welcome-grid {
    max-width: 950px;            /* ← This matches your .logo-text max-width exactly */
    margin: 0 auto;              /* ← Centers the whole block the same way your logo is centered */
    display: grid;
    grid-template-columns: 1fr 220px 1fr;
    gap: 65px;
    align-items: flex-start;
}

.welcome-left p,
.welcome-right p {
    font-size: 1.08rem;
    line-height: 1.85;
    color: #222222;
    margin: 0;
    text-align: justify;
}

.welcome-monogram {
    text-align: center;
    padding-top: 8px;
}

.tall-monogram {
    max-width: 195px;
    height: auto;
    display: block;
    margin: 0 auto;
}
.welcome-below-image {
    width: 100%;                    /* keeps it responsive */
    max-width: 720px;               /* ← CHANGE THIS NUMBER to make it smaller or bigger */
    display: block;
    margin: 25px auto 0 auto;       /* centers the picture + nice spacing above */
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
/* Mobile: stacks everything nicely */
@media (max-width: 992px) {
    .welcome-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .welcome-monogram {
        order: -1;
        padding-top: 0;
    }
    .tall-monogram {
        max-width: 170px;
    }
}
/* ====================== STAYING AT IMR PAGE – FIXED LEFT ALIGNMENT WITH HEADER ====================== */
.staying-section {
    padding: 40px 20px 80px;     /* much smaller top padding */
    max-width: 950px;
    margin: 0 auto;
}

.staying-section p {
    font-size: 1.05rem;
    line-height: 1.8;
}

.staying-section h2 {
    font-family: 'Great Vibes', cursive;
    font-size: 3.2rem;
    text-align: center;
    margin-bottom: 25px;
    margin-top: 0;
}

.feature-row {
    display: flex;
    gap: 60px;
    align-items: flex-start;
    margin-bottom: 70px;
    flex-wrap: wrap;
}

.feature-text {
    flex: 1;
    min-width: 300px;
    font-size: 1.05rem;
    line-height: 1.8;
}

.feature-text strong {
    display: block;
    margin-bottom: 8px;
    font-size: 1.15rem;
}

.feature-images {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    min-width: 300px;
}

.feature-images img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Mobile: stack text above images (your original) */
@media (max-width: 768px) {
    .feature-row {
        flex-direction: column;
        gap: 30px;
    }
}

/* Desktop: force images to stay on the right of the text (prevents them dropping underneath) */
@media (min-width: 769px) {
    .feature-row {
        flex-wrap: nowrap;
    }
}
