@font-face {
    font-family: 'Montserrat'; /* Name to use in CSS */
    src: url('fonts/Montserrat-Regular.otf') format('opentype'), url('fonts/montserrat-regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /*font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;*/
    font-family: 'Montserrat', sans-serif;
}

body {
    background-color: #f8f8f8;
    position: relative;
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    margin: 0;
}

.page-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding-top: 0;
}

/* Header & Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: #f8f8f8;
    transition: all 0.3s ease;
    padding: 7px 50px;
    max-width: 100%;
    height: 90px;
    display: flex;
    align-items: center;
    box-shadow: none;
}

/* Logo styling */
.logo-text {
    font-family: 'Abril Fatface', cursive;
    font-weight: 900;
    font-size: 50px;
    color: black;
    text-decoration: none;
    display: inline-flex;
    align-items: flex-end;
    padding: 10px 20px;
    border-radius: 10px;
}

.r-style {
    transform: translateY(-10px);
}
.g-style {
    transform: translateY(10px);
    margin-left: -5px;
}

/* Navigation positioned next to the logo */
.header-middle {
    margin-left: 20px;
    font-size: 70px;
    font-weight: bold;
}

nav {
    display: flex;
    gap: 40px;
}

nav a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s ease;
}

nav a:hover {
    color: #666;
}

nav a.active-nav {
    color: #bbbaba;
}

/* Social links pushed to the right */
.header-right {
    margin-left: auto;
}

.header-social {
    display: flex;
    align-items: center;
    gap: 15px;
}

.header-social span {
    font-size: 14px;
    margin-right: 15px;
}

.header-social a {
    color: #555;
    margin: 0 8px;
    font-size: 18px;
    transition: color 0.3s;
}

.header-social a:hover {
    color: #000;
}

.email-contact {
    margin-left: 20px;
    font-size: 14px;
    color: #555;
}

.email-contact a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s;
}

.email-contact a:hover {
    color: #000;
}

/* Decorative Elements */
.decoration {
    position: absolute;
    background-color: #bbbaba;
    border-radius: 15px;
    z-index: -1;
    transform: rotate(20deg);
}

.decoration:nth-child(1) {
    width: 120px;
    height: 120px;
    top: 10%;
    left: 15%;
}

.decoration:nth-child(2) {
    width: 80px;
    height: 80px;
    top: 40%;
    right: 60%;
}

.decoration:nth-child(3) {
    width: 150px;
    height: 150px;
    top: 70%;
    left: 5%;
}

.decoration:nth-child(4) {
    width: 180px;
    height: 180px;
    top: 80%;
    left: 50%;
}

.decoration:nth-child(5) {
    width: 8px;
    height: 300px;
    top: 30%;
    left: 96%;
    transform: rotate(0deg);
}

/* Main content layout */
.main-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 80px auto 0;
    padding: 40px 50px;
    flex: 1;
    min-height: 500px;
    width: 100%;
}

/* Hero text styling */
.hero-text {
    flex: 0 0 40%;
    max-width: 400px;
    padding-right: 20px;
    order: 1;
}

.hero-text h1 {
    font-size: 80px;
    line-height: 1;
    margin-bottom: 30px;
    font-weight: 700;
}

.design-highlight {
    color: #ffea00;
    margin-left: 115px;
}

/* Image collage styling */
.image-column.collage-style {
    flex: 0 0 60%;
    position: relative;
    display: flex;
    justify-content: flex-end;
    height: 500px;
    order: 2;
}

.image-box {
    background-color: #eee;
    border-radius: 2px;
    overflow: hidden;
    position: relative;
}

.image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: opacity 0.5s ease-in-out;
}

.image-box img:not(.active) {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
}

.image-box img.active {
    opacity: 1;
    position: relative;
}

.image-box.large {
    position: absolute;
    width: 550px;
    height: 500px;
    right: 0;
    top: 0;
    z-index: 1;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.image-box.small.overlay {
    position: absolute;
    width: 270px;
    height: 300px;
    right: 450px;
    top: 110px;
    z-index: 2;
    border: 5px solid #f0f0f0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
/* Image Grid */
.image-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 40px 50px;
    max-width: 1400px;
    margin: 0 auto;
}

.image-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

    .image-item img {
        width: 100%;
        height: auto;
        display: block;
        transition: transform 0.3s ease;
    }

    .image-item:hover img {
        transform: scale(1.05);
    }
/* Caption always visible at top */
.image-caption {
    position: absolute;
    /*    top: 0;
    left: 0;*/
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 12px;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    text-align: center;
    font-weight: bold;
    font-family: 'Montserrat', sans-serif;
    opacity: 1;
}

/* Enhanced Footer Design */
.site-footer {
    background-color: #0a0a0a;
    color: #ffffff;
    padding: 60px 50px;
    position: relative;
    width: 100%;
    margin-top: 60px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.footer-nav {
    display: flex;
    gap: 30px;
    margin-bottom: 20px;
}

.footer-nav a {
    color: white;
    font-weight: bold;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 14px;
    letter-spacing: 1px;
}

.footer-nav a:hover {
    color: #c9c6ff;
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-social span {
    font-style: italic;
    font-size: 14px;
    margin-right: 15px;
}

.footer-social a {
    color: #555;
    margin: 0 8px;
    font-size: 18px;
    transition: color 0.3s;
}

.footer-social a:hover {
    color: #000;
}

.footer-bottom {
    margin-top: 30px;
    text-align: center;
    font-size: 12px;
    color: #666;
    padding-top: 20px;
    border-top: 1px solid #222;
}

.center-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: calc(100vh - 160px);
    padding: 20px;
    box-sizing: border-box;
}

.separator-image-container {
    margin-top: 2rem;
    padding-top: 2rem;
    position: relative;
}

.separator-image-container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 25%;
    right: 25%;
    height: 1px;
    background-color: #ccc;
}

.separator-image {
    width: 1000px;
    height: 400px;
    object-fit: cover;
}

.image-item-accessorize {
    margin-top: 0;
    position: relative;
    display: inline-block;
    max-width: 100%;
}

.accessorize-image {
    max-width: 100%;
    height: auto;
    margin: 0 auto;
    display: block;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.accessorize-content {
    padding-top: 120px;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.accessorize-title {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 20px;
    display: block;
    position: relative;
    z-index: 2;
    color: #000;
}

.video-container-accessorize {
    position: relative;
    padding-bottom: 56.25%;
    overflow: hidden;
    background: #000;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    width: 1200px;
    height: 450px;
}

.video-container-accessorize iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.store-locations {
    display: flex;
    justify-content: space-between;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.location-column {
    width: 48%;
    text-align: left;
}

.location-column h2 {
    text-align: left;
}

.image-caption-accessorize {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    color: white;
    text-align: center;
    font-weight: bold;
    background: rgba(0, 0, 0, 0.6);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 0 0 8px 8px;
}

.image-item-accessorize:hover .image-caption-accessorize {
    opacity: 1;
}

.aldo-content {
    padding: 60px 20px;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.aldo-title {
    max-width: 600px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin: 0 auto;
}

.video-container-aldo {
    position: relative;
    padding-bottom: 56.25%;
    overflow: hidden;
    background: #000;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    width: 1200px;
    height: 450px;
}

.video-container-aldo iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.image-item-accessorize1 {
    margin: 0;
    position: relative;
    display: block;
    width: 100%;
    overflow: hidden;
    border-radius: 8px;
}

.accessorize-image1 {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.image-caption-accessorize1 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 15px;
    text-align: center;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.image-item-accessorize1:hover .image-caption-accessorize1 {
    transform: translateY(0);
}




.brand-image-item {
    margin: 0;
    position: relative;
    display: block;
    width: 100%;
    overflow: hidden;
    border-radius: 8px;
}

.brand-image-image {
    width: 100%;
    height: auto;
    display: block;
    /*border-radius: 8px;*/
border-radius: top-left top-right bottom-right bottom-left;

    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.brand-image-caption {
    width: 100%;
    margin-top: -4px;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 15px;
    text-align: center;
    border-radius: 0 0 8px 8px;
    font-family: 'Montserrat', sans-serif;
}









/* IMPROVED RESPONSIVE STYLES */

/* Tablet styles (768px - 1024px) */
@media (max-width: 1024px) {
    header {
        padding: 7px 30px;
        height: auto;
        min-height: 90px;
    }
    
    .logo-text {
        font-size: 38px;
    }
    
    .header-middle {
        margin-left: 15px;
        font-size: 50px;
    }
    
    nav {
        gap: 25px;
    }
    
    nav a {
        font-size: 15px;
    }
    
    .main-content {
        padding: 30px;
        margin-top: 100px;
    }
    
    .hero-text h1 {
        font-size: 60px;
    }
    
    .design-highlight {
        margin-left: 80px;
    }
    
    .image-box.large {
        width: 450px;
        height: 400px;
    }
    
    .image-box.small.overlay {
        width: 220px;
        height: 250px;
        right: 360px;
        top: 100px;
    }
    
    .image-grid {
        grid-template-columns: repeat(2, 1fr);
        padding: 30px;
        gap: 15px;
    }
    
    .about-image {
        margin-left: 50px;
    }
    
    .map-contact-section {
        margin-left: 40px;
        padding: 20px;
    }
    
    .map-container iframe {
        width: 400px;
        height: 250px;
    }
    
    .video-container-accessorize,
    .video-container-aldo {
        width: 100%;
        max-width: 900px;
    }
    
    .separator-image {
        width: 100%;
        max-width: 800px;
        height: 300px;
    }
    
    .apply-options {
        gap: 20px;
    }
    
    .apply-option {
        width: 400px;
    }
    
    .apply-image {
        height: 300px;
    }
    
    .site-footer {
        padding: 40px 30px;
    }
}

/* Mobile styles (up to 768px) */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        padding: 10px 20px;
        height: auto;
        align-items: center;
    }
    
    .logo-text {
        font-size: 32px;
        margin-bottom: 10px;
    }
    
    .header-middle {
        margin-left: 0;
        margin-bottom: 15px;
        font-size: 40px;
    }
    
    .header-right {
        margin-left: 0;
        order: 3;
        width: 100%;
        justify-content: center;
    }
    
    nav {
        gap: 15px;
        justify-content: space-around;
        width: 100%;
        flex-wrap: wrap;
    }
    
    nav a {
        font-size: 14px;
    }
    
    .header-social {
        justify-content: center;
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .email-contact {
        display: none;
    }
    
    .main-content {
        flex-direction: column-reverse;
        padding: 20px;
        margin-top: 140px;
        gap: 30px;
        min-height: auto;
    }
    
    .hero-text {
        text-align: center;
        max-width: 100%;
        padding-right: 0;
        order: 2;
    }
    
    .hero-text h1 {
        font-size: 36px;
        margin-bottom: 20px;
    }
    
    .design-highlight {
        margin-left: 0;
    }
    
    .image-column.collage-style {
        width: 100%;
        height: 350px;
        justify-content: center;
        order: 1;
    }
    
    .image-box.large {
        position: relative;
        width: 100%;
        max-width: 300px;
        height: 350px;
        right: auto;
        transform: none;
        margin: 0 auto;
    }
    
    .image-box.small.overlay {
        position: absolute;
        width: 140px;
        height: 180px;
        right: auto;
        left: 10px;
        top: 50px;
        z-index: 2;
    }
    
    .image-grid {
        grid-template-columns: 1fr;
        padding: 20px;
        gap: 15px;
    }
    
    .about-sec {
        flex-direction: column;
        gap: 20px;
    }
    
    .about-image {
        width: 100%;
        margin-left: 0;
        text-align: center;
    }
    
    .about-text {
        width: 100%;
    }
    
    .map-contact-section {
        flex-direction: column;
        margin-left: 0;
        padding: 20px;
        align-items: center;
    }
    
    .map-container iframe {
        width: 100%;
        max-width: 350px;
        height: 200px;
    }
    
    .contact-info {
        max-width: 100%;
        text-align: center;
        margin-top: 20px;
    }
    
    .Apply-content {
        padding-top: 160px;
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .apply-now-container {
        padding: 1rem;
    }
    
    .apply-now-container h1 {
        font-size: 2rem;
    }
    
    .apply-text {
        font-size: 1rem;
        white-space: normal;
    }
    
    .apply-email {
        font-size: 1.2rem;
    }
    
    .separator-image {
        width: 100%;
        height: 200px;
    }
    
    .separator-image-container::before {
        left: 10%;
        right: 10%;
    }
    
    .apply-options {
        flex-direction: column;
        gap: 30px;
        align-items: center;
    }
    
    .apply-option {
        width: 100%;
        max-width: 350px;
    }
    
    .apply-image {
        height: 250px;
    }
    
    .job-opening-section {
        padding: 40px 20px;
    }
    
    .job-opening-section .job-title {
        font-size: 16px;
        white-space: normal;
        line-height: 1.4;
    }
    
    .accessorize-content,
    .aldo-content {
        padding: 100px 20px 40px;
    }
    
    .accessorize-title {
        font-size: 24px;
    }
    
    .video-container-accessorize,
    .video-container-aldo {
        width: 100%;
        height: 250px;
        padding-bottom: 56.25%;
    }
    
    .store-locations {
        flex-direction: column;
        padding: 20px;
        gap: 30px;
    }
    
    .location-column {
        width: 100%;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-nav {
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .site-footer {
        padding: 30px 20px;
    }
    
    /* Decorative elements adjustments for mobile */
    .decoration {
        display: none;
    }
}

/* Small mobile devices (up to 480px) */
@media (max-width: 480px) {
    .logo-text {
        font-size: 28px;
    }
    
    .header-middle {
        font-size: 32px;
    }
    
    .main-content {
        margin-top: 160px;
        padding: 15px;
    }
    
    .hero-text h1 {
        font-size: 28px;
    }
    
    .image-box.large {
        max-width: 250px;
        height: 300px;
    }
    
    .image-box.small.overlay {
        width: 120px;
        height: 150px;
        left: 5px;
        top: 40px;
    }
    
    .apply-now-container h1 {
        font-size: 1.5rem;
    }
    
    .apply-email {
        font-size: 1rem;
    }
    
    .accessorize-title {
        font-size: 20px;
    }
    
    .video-container-accessorize,
    .video-container-aldo {
        height: 200px;
    }
    
    nav {
        gap: 10px;
    }
    
    nav a {
        font-size: 12px;
    }
}

/* Landscape mobile orientation */
@media (max-width: 768px) and (orientation: landscape) {
    .main-content {
        margin-top: 120px;
    }
    
    .Apply-content {
        padding-top: 140px;
    }
    
    .accessorize-content,
    .aldo-content {
        padding-top: 80px;
    }
}

.logo-text img {
    background: transparent;
    mix-blend-mode: multiply;
    filter: drop-shadow(0 0 0 #f8f8f8); 
}


.image-item img {
width: 100%;
height: 400px; 
object-fit: cover;
object-position: center;
display: block;
transition: transform 0.3s ease;
}
.image-box img {
width: 100%;
height: 100%;
object-fit: cover;
object-position: center;
display: block;
}
.accessorize-image,
.accessorize-image1 {
width: 100%;
height: 450px; 
object-fit: cover;
object-position: center;
}








/* Header */
.brand-header {
    background: black;
    color: white;
    text-align: center;
    padding: 20px;
}

/* Hero Image */
.brand-hero img {
    width: 100%;
    /*max-height: 400px;*/
    object-fit: cover;
    margin-top:15px;
}

/* Sections */
section {
    padding: 30px 50px;
}

/* About */
.brand-about {
    background: white;
}

/* Stores */
.brand-stores {
    background: #eee;
}

.store {
    margin-bottom: 20px;
}

.store-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top:20px;
}

.brandTitle {
    margin-top: 100px;
    text-align: center
}

@media (max-width: 768px) { /* adjust 768px to your mobile breakpoint */
    .brandTitle {
        margin-top: 170px; /* increase margin for mobile */
    }
}



/*APPLY*/
.Apply-content {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: calc(100vh - 150px);
    padding-top: 100px;
    margin: 0 auto;
    width: 100%;
    font-family: 'Montserrat', sans-serif;
    color: #333;
}

.apply-now-container {
    max-width: 600px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin: 0 auto;
}


    .apply-now-container h1 {
        font-size: 3rem;
        margin-bottom: 1.5rem;
        font-weight: 900;
        font-family: 'Montserrat', sans-serif;
        color: #333;
    }

.apply-text {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    white-space: nowrap;
    font-family: 'Montserrat', sans-serif;
    color: #333;
}

.apply-email {
    font-size: 1.2rem;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
    margin-bottom: 2rem;
    font-family: 'Montserrat', sans-serif;
    color: #333;
}

    .apply-email:hover {
        color: #555;
        text-decoration: underline;
    }


.job-opening-section {
    text-align: center;
    padding: 20px 30px;
}

    .job-opening-section .job-title {
        font-size: 18px;
        color: #000;
        letter-spacing: 1px;
        margin-bottom: 20px;
        white-space: nowrap;
        font-family: 'Montserrat', sans-serif;
        color: #333;
    }

    .job-opening-section strong {
        font-weight: bold;
        color: #000;
        display: block;
        margin-bottom: 10px;
        font-family: 'Montserrat', sans-serif;
        color: #333;
    }

    .job-opening-section .job-list {
        list-style: none;
        padding: 0;
        margin: 10px 0;
        color: #000;
        font-family: 'Montserrat', sans-serif;
        color: #333;
    }

        .job-opening-section .job-list li {
            margin: 5px 0;
        }

    .job-opening-section .job-email {
        color: #000;
        font-weight: bold;
        text-decoration: none;
        font-family: 'Montserrat', sans-serif;
        color: #333;
    }

.job-opening-section .job-email:hover {
    color: #555;
    text-decoration: underline;
}

.apply-options {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 40px;
    margin: 60px 0;
    padding: 0 20px;
    flex-wrap: nowrap;
}

.apply-option {
    width: 500px;
    text-align: center;
    padding: 10px;
}

    .apply-option p a {
        text-decoration: none;
        font-family: 'Montserrat', sans-serif;
        font-weight: bold;
        color: #333;
    }

        .apply-option p a:hover {
            text-decoration: underline;
        }

.apply-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

/* ==========================
   Mobile Adjustments for Apply Section
   ========================== */
@media (max-width: 576px) {
    .Apply-content {
        margin-top:50px;
    }

    .apply-text,
    .job-opening-section .job-title {
        white-space: normal; /* allow text to wrap */
        word-wrap: break-word; /* ensures long words break if needed */
        overflow-wrap: anywhere;
        margin-top: 20px; /* increase top spacing on mobile */
        font-size: 1.1rem; /* optional: slightly smaller for mobile */
    }

    .apply-now-container {
        padding: 1rem; /* reduce padding on small screens */
    }
}




/* ==========================
   Global Styles
   ========================== */
body, p {
    font-family: 'Montserrat', sans-serif;
    color: #333;
    line-height: 1.5;
}

p {
    margin: 8px 0;
    font-size: 1rem;
}

/* ==========================
   About Retail Group Section
   ========================== */
#about-retail-group {
    max-width: 1000px;
    margin: 100px auto 30px;
    padding: 0 15px;
}

/* ==========================
   Mission & Image Section
   ========================== */
#mission-section {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto 30px;
    padding: 0 15px;
    align-items: flex-start;
}

    #mission-section .about-image {
        flex: 0 0 450px;
        max-width: 450px;
    }

        #mission-section .about-image img {
            width: 100%;
            height: auto;
            border-radius: 4px;
        }

    #mission-section .about-section {
        flex: 1;
        min-width: 200px;
        font-size: 0.95rem;
    }

/* Divider */
.about-divider {
    height: 1px;
    background: #ccc;
    border: none;
    margin: 25px 0;
}

/* ==========================
   Contact & Map Section
   ========================== */
#contact-map {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto 30px;
    padding: 0 15px;
    align-items: flex-start;
}

    #contact-map .map-container {
        flex: 0 0 450px;
        max-width: 450px;
    }

        #contact-map .map-container iframe {
            width: 100%;
            aspect-ratio: 16 / 9;
            border: 0;
            border-radius: 4px;
        }

    #contact-map .contact-info {
        flex: 1;
        min-width: 200px;
        font-size: 0.95rem;
    }

        #contact-map .contact-info a {
            color: #333;
            text-decoration: none;
        }

            #contact-map .contact-info a:hover {
                text-decoration: underline;
            }

@media (max-width: 992px) {
    #contact-map {
        flex-direction: column;
        gap: 10px;
    }

        #contact-map .map-container {
            flex: 1 1 auto;
            width: 100%;
            max-width: 100%;
            margin: 0;
        }

            #contact-map .map-container iframe {
                border-radius: 4px;
                display: block;
            }

        #contact-map .contact-info {
            width: 100%;
            max-width: 100%;
            margin-top: 0; /* remove extra spacing above contact info */
        }

    #mission-section {
        flex-direction: column; /* stack image and text vertically */
        gap: 10px; /* similar to your contact-map spacing */
        padding: 0 15px; /* keep horizontal padding */
    }

        #mission-section .about-image {
            flex: 1 1 auto; /* allow it to grow/shrink */
            width: 100%; /* full width */
            max-width: 100%; /* prevent overflow */
            margin: 0; /* remove any extra spacing */
        }

            #mission-section .about-image img {
                width: 100%; /* scale image */
                height: auto;
                border-radius: 4px;
                display: block; /* same as map iframe */
            }

        #mission-section .about-section {
            width: 100%;
            max-width: 100%;
            margin-top: 0; /* remove extra spacing above text */
        }
}

@media (max-width: 576px) {

    #about-retail-group {
        margin-top: 150px;
    }

    #mission-section .about-image {
        max-width:100%;
    }

    #contact-map {
        flex-direction: column; /* stack map and contact info */
        gap: 5px; /* minimal vertical gap */

        margin-bottom: 20px; /* reduce extra spacing */
        align-items: stretch; /* make items shrink to container width */
    }

        #contact-map .map-container {
            flex: 1 1 auto;
        }

            #contact-map .map-container iframe {
                border-radius: 4px;
                display: block;
            }

        #contact-map .contact-info {
            width: 100%;
            max-width: 100%;
            margin-top: 0; /* remove extra spacing above contact info */
        }
}
