* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #000;
    color: #fff;
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.main {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.logo {
    max-width: 80%;
    height: auto;
}

.footer {
    width: 100%;
    text-align: center;
}

.divider {
    width: 100%;
    height: 1px;
    background-color: #fff;
    margin-bottom: 15px;
}

.footer-content {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding-bottom: 20px;
}

.footer-content a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
}

.footer-content a:hover {
    text-decoration: underline;
}

/* Responsive */

@media (max-width: 768px) {
    .logo {
        max-width: 90%;
    }
.footer-content {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .logo {
        max-width: 95%;
    }

    .footer-content a {
        font-size: 13px;
    }
}


.content-page {
    max-width: 800px;
    margin: auto;
    padding: 60px 30px;
}

.content-page h1 {
    margin-bottom: 20px;
}

.content-page p {
    margin-bottom: 15px;
    line-height: 1.6;
}

.back-link {
    display: inline-block;
    margin-top: 20px;
    color: #fff;
    text-decoration: none;
}

.back-link:hover {
    text-decoration: underline;
}

/* Responsive */

@media (max-width: 768px) {
    .logo {
        max-width: 90%;
    }

    .footer-content {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .logo {
        max-width: 95%;
    }

    .footer-content a {
        font-size: 13px;
    }
}
