﻿body {
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0;
    font-family: 'MTC-FuturaNewBook';
    min-height: 100vh;
    background-color: #fcfcfc;
}


.wrapper {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

    .wrapper.layout-content {
        flex: 1 0 auto;
        align-content: center;
    }

    .wrapper.footer {
        flex-shrink: 0;
    }


.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    margin-left: 1rem;
    margin-right: 1rem;
}

#person-svg {
    width: 18px;
}

.header-actions {
    display: flex;
    gap: 0.5rem;
}

footer {
    border-top: 1px solid #A9A9A9;
}

.footer-content {
    padding-bottom: 1rem;
    padding-top: 0.5rem;
    margin-left: 1rem;
    margin-right: 1rem;
    justify-content: space-between;
}

.footer-safe-zone {
    color: #A9A9A9;
    align-items: center;
    gap: 0.5rem;
}

.footer-options {
    align-items: center;
    gap: 1rem;
}

    .footer-options a {
        text-decoration: none;
        color: #ccc;
        font-weight: 500;
        transition: color 0.3s ease;
    }

        .footer-options a:hover {
            color: #333; 
        }

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        gap: 1rem;
    }

    .footer-options {
        justify-content: center;
        flex-wrap: wrap;
    }

    .footer-safe-zone {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .service-form {
        flex-direction: column;
    }
}


.ads-cards {
    align-items: center;
}

@media (max-width: 768px) {
    .ads-cards img {
        width: 32px;
    }
}
