*{
    font-family: 'Segoe UI', sans-serif;
    color: #693104;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    /*background: linear-gradient(to bottom, #FFE7BA, #FFCF86);*/
    background-image: url('bg-image.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: 105%;
    margin: 0;
}

main{
    max-width: 1200px;
    margin: auto;
    padding: 60px 30px;
    float: right;
    margin-right: 250px;
}

h1{
    font-size: 48px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
}

#textContent {
    max-width: 700px;
    padding: 30px;
    font-size: 18px;
}

#textContent h1 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
}

#textContent .big {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 25px;
}

#textContent ul.features {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

#textContent ul.features li {
    padding: 8px 0;
    position: relative;
}

#textContent ul.features li::before {
    content: "✔";
    margin-right: 10px;
    color: #924c0b;
    font-weight: bold;
}

#textContent .btn-box {
    background: #ffe5c2;
    padding: 25px;
    margin-top: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: inset 0 0 20px rgba(0,0,0,0.05);
    height: 200px;
}

#textContent .btn-box a {
    background: #a3550d;
    border: none;
    color: white;
    font-size: 18px;
    padding: 12px 25px;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
    text-decoration: none;
    position: relative;
    top: 20px;
}

#textContent .btn-box a:hover {
    background: #b36115;
    transform: scale(1.05);
}

#map_box{
    margin-top: 40px;
    display: flex;
    background: #fff3d1;
    padding: 30px;
    border-radius: 6px;
    gap: 30px;
    flex-wrap: wrap;
    box-shadow: 0 0 25px rgba(0,0,0,0.1);
}

#drozdzowka{
    height: 100vh;
    position: fixed;
}

footer{
    height: 90px;
    width: 100%;
    background-color: #753807;
    display: flex;
    justify-content: center;
    gap: 4rem;
    clear: both;
    align-items: center;
    position: absolute;
    bottom: 0;
}

footer p{
    color: white;
}

::-webkit-scrollbar {
    width: 10px;
    transition: 0.3s ease-in-out;
}

::-webkit-scrollbar-track {
    background: linear-gradient(to bottom, #FFE7BA, #FFCF86);
}

::-webkit-scrollbar-thumb {
    background: #9E4E09;
    transition: 0.3s ease-in-out;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: #9e4f09ec;
}

@media (max-width: 992px) {
    main {
        margin-right: 0;
        padding: 40px 20px;
        float: none;
    }
    #textContent {
        margin-left: 0;
        max-width: 100%;
        padding: 10px;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 30px;
    }
    #textContent h1 {
        font-size: 26px;
    }
    #drozdzowka {
        width: 50%;
        opacity: 0.25;
        right: -50px;
    }
    footer {
        width: 100%;
        gap: 2rem;
    }
}

@media (max-width: 600px) {
    #drozdzowka {
        display: none;
    }
    main {
        padding: 20px;
    }
    #textContent {
        font-size: 16px;
        padding: 0;
    }
    .btn-box {
        padding: 18px;
    }
    .btn-box button {
        width: 100%;
    }
}