body, html {
    font-family: 'Poppins', sans-serif;
    background-color: #BA6248;
    color: #000000;
    margin: 0;
    width: 100%;
    height: 100%;
    padding: 0;
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: auto 0.5fr 0;
    grid-column-gap: 0;
    grid-row-gap: 0;
    height: 100%;
    min-height: 100%;
    overflow-x: hidden;
}

/* Hero Section Styles */
.hero-section-background {
    grid-area: 1 / 1 / 2 / 6;
    background-image: url('images/koortibwebp.webp');
    background-size: cover;
    background-position: top center;
    text-align: center;
    height: 100%;
    min-height: 700px;
}

.hero-images-left {
    grid-area: 1 / 1 / 2 / 4;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    padding-bottom: 150px;
}

.hero-images-right {
    grid-area: 1 / 4 / 2 / 6;
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
    padding-bottom: 150px;
}

.koorti {
    height: 16.5%;
    width: auto;
}

.koorti-number {
    height: 70%;
    width: auto;
    margin-bottom: 23px;
    margin-left: 40px;
}

.hero-images img {
    width: 200px;
    height: auto;
}

/* Colums */

.content-section {
    grid-area: 2 / 1 / 3 / 4;
    background-color: #FFFFFF;
    position: relative;
}

.content-section-box {
    background-color: #FFFFFF;
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    padding: 64px;
    top: -100px;
    width: 100%;
    position: absolute;
}

.map-section {
    grid-area: 2 / 4 / 3 / 6;
    background-color: #EB9D78;
    display: flex;
    justify-content: center;
    background-image: url('images/map.webp');
    background-size: cover;
    background-position: top center;
    align-items: center;
    width: 100%;
    padding: 64px;
}

/* Content */

.content-section {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-end;
    font-weight: 300;
}

a {
    color: #BA6248;
}

/* Mobile Layout */

@media (max-width: 768px) {
    .grid-container {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        height: 100%;
        justify-content: center;
        position: relative;
    }

    .content-section {
        width: 100%;
    }

    .map-section {
        width: 100%;
        min-height: 20%;
        background-position-y: 100px;
    }

    .hero-section-background {
        height: 100%;
        width: 100%;
    }

    .hero-images-left {
        position: absolute;
        left: 0;
        top: 10%;
        width: 100%;
        padding-left: 32px;
        justify-content: flex-start;

    }

    .hero-images-right {
        position: absolute;
        width: 100%;
        left: 0;
        top: 20%;
        justify-content: flex-start;
    }
    .content-section-box {
        background-color: #FFFFFF;
        display: flex;
        justify-content: center;
        align-items: center;
        top: -100px;
        width: 100%;
        padding: 48px;
    }
}

@media (max-width: 1280px) {
    .koorti {
        height: 70px;
        max-width: 90%;
    }

    .koorti-number {
        height: 300px;
    }
}