﻿body {
    padding-top: 10vh;
    background-color: #fff;
    overflow-x: hidden;
}

.info-page {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
}

.info-page > div {
    flex: 1;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 50%;
}

.info-page img {
    width: 500px;
    height: 500px;
    object-fit: cover;
    object-position: center;
    border-radius: 50%;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.info-page img:hover {
    transform: translateY(-6px);
    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.15),
        0 35px 80px rgba(0, 0, 0, 0.18),
        0 60px 120px rgba(0, 0, 0, 0.15);
}

.info-page > div:first-child {
    order: 1;
}

.info-page > img {
    order: 2;
}

.info-page h1 {
    font-size: 36px;
    color: #333;
    margin-bottom: 20px;
}

.info-page p {
    font-size: 18px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.arenda__main-text {
    font-style: italic;
    width: 100%;
}

.how-we-work {
    margin-top: 60px;
    padding: 60px 20px;
    background: radial-gradient(circle at top left, #606060, #404040);
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    border-top: 2px solid #BFA315;
    border-bottom: 2px solid #BFA315;
    box-shadow: inset 0 0 30px rgba(0,0,0,0.1);
}

.how-we-work h2 {
    text-align: center;
    font-size: 24px;
    color: #fff;
    margin-bottom: 50px;
}

.steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 40px;
}

.step {
    width: 45%;
    margin-bottom: 20px;
    padding: 30px;
    background: #f9f9f9;
    box-shadow: 0 2px 5px rgba(196, 196, 196, 0.4);
}

.step__num {
    font-family: 'Comic Sans MS', cursive;
    font-size: 30px;
    color: #BFA315;
    margin-bottom: 15px;
}

.step h3 {
    font-size: 20px;
    color: #333;
    margin-bottom: 15px;
}

.step__text {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

.arenda__list {
    list-style: none;
    padding-left: 0;
}

.arenda__list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    font-size: 16px;
    color: #666;
}

.arenda__list li::before {
    content: "";
    position: absolute;
    top: 7px;
    left: 0;
    width: 10px;
    height: 10px;
    background-color: #fff9e6;
    border-radius: 20%;
}

.arenda__footer-text {
    margin-top: 40px;
    text-align: center;
    color: #666;
    font-family: italic;
    padding: 10px 20px;
    border-radius: 20px;
    border-left: 4px solid #BFA315;
    border-right: 4px solid #BFA315;
    font-size: 20px;
    font-style: italic;
}

@media (max-width: 992px) {
    hr {
        display: none;
    }

    .info-page {
        flex-direction: column;
        align-items: center;
        padding: 0 20px;
    }

    .info-page > div {
        max-width: 100%;
        padding: 40px 20px;
    }

    .info-page img {
        display: none;
    }

    .info-page h1 {
        font-size: 28px;
    }

    .info-page p,
    .arenda__main-text {
        font-size: 16px;
    }

    .steps {
        flex-direction: column;
        align-items: center;
    }

    .step {
        width: 100%;
        padding: 20px;
        margin-bottom: 20px;
    }

    .arenda__footer-text {
        font-size: 18px;
        margin: 30px 15px;
    }
}

@media (max-width: 480px) {
    .info-page > div {
        padding: 30px 15px;
    }

    .how-we-work {
        padding: 40px 15px;
    }

    .step__num {
        font-size: 26px;
    }

    .step h3 {
        font-size: 18px;
    }

    .step__text {
        font-size: 15px;
    }

    .arenda__footer-text {
        font-size: 16px;
        padding: 10px;
    }
}
