body{
    margin:0px;
    padding:0px;
    position: relative;
}
.main{
    background:#078271;
    width:100%;
    height:100vh;
    padding:30px;
    overflow: hidden;
}
.main h1{
    font-family: "Open Sans", sans-serif;
    font-size:50px;
    text-align: center;
    font-weight: bolder;
    color:#fff;
}
.main span{
    color:#ffe400;
}
.main img{
    width:80%;
    margin: 0 auto;
    display: block;
}
.overlay{
    width: 100%;
    height:100vh;
    position: absolute;
    background:rgba(0, 0, 0, 0.497);
    top: 0%;
    display: none;
}
.overlayWaper{
    font-family: sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 10px;
    width:400px;
    position: fixed;
    bottom: 0%;
    right:0%;
}
.cookie-modal {
    background-color: white;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    width: 100%;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.modal-header h2 {
    margin: 0;
    font-size: 1.5rem;
    color: #1a202c;
}

.close-button {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #4a5568;
}

.cookie-text {
    color: #333;
    line-height: 1.5;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.cookie-text a {
    color: #007bff;
    text-decoration: none;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    justify-content: flex-end; /* Align buttons to the right */
}

.accept-button {
    background-color: #1a202c;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.9rem;
}

.preferences-button {
    background-color: #e2e8f0;
    color: #333;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.9rem;
}
.FEATUREDIN{
    width:80%;
    margin: 0 auto;
}
.FEATUREDIN img{
    width:400px;
}
.main h4{
    color: #e2e8f0;
    font-size:50px;
    font-weight: bold;
    text-align: center;
    margin-top:30px;
    margin-bottom:30px;
}
.fcontent{
    width:80%;
    text-align: left;
    font-size:25px;
    margin: 0 auto;
    padding:20px;
    background: #fff;
    font-weight:bold ;
    margin-top:30px;
}
/* Responsive adjustments */
@media (max-width: 600px) {
    .main {
        background: #078271;
        width: 100%;
        height: 100vh;
        overflow: hidden;
        padding:0px;
        padding-top: 30px;

    }
    .fcontent{
        width:100%;
        text-align: left;
        font-size:5vw;
        margin: 0 auto;
        padding:20px;
        background: #fff;
        font-weight:bold ;
        margin-top:30px;
    }
    .main h1 {
        font-family: "Open Sans", sans-serif;
        font-size: 7.9vw;
        text-align: center;
        font-weight: bolder;
        color: #fff;
    }
    .main h4{
        font-size: 6vw;
        margin-top:20px;
        margin-bottom: 20px;
    }
    .main img {
        width: 100%;
        margin: 0 auto;
        display: block;
    }
    .overlayWaper {
        font-family: sans-serif;
        display: flex;
        justify-content: center;
        align-items: center;
        margin:0px;
        width: 100%;
        position: fixed;
        bottom: 0%;
    }
        
    .cookie-modal {
        margin: 0px;
    }

    .modal-header h2 {
        font-size: 1.2rem;
    }
    .modal-header {
        margin-bottom: 6px;
    }

    .close-button {
        font-size: 20px;
    }

    .cookie-text {
        font-size:10px;
        margin-bottom: 6px;
    }

    .cookie-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 0px;
    }

    .cookie-buttons button {
        margin-bottom: 10px;
    }
}