body {
    background-color: #000000;
    color: #000000;
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    padding: 20px;
    box-sizing: border-box;
}

.section-title {
    color: #000000;
    font-size: 22px;
    font-weight: bold;
    margin: 25px 0 15px;
    padding: 0 15px;
    position: relative;
    text-align: center;
    width: 100%;
}

.section-title:before, 
.section-title:after {
    content: "";
    display: inline-block;
    width: 30%;
    height: 1px;
    background: #e7e7e7;
    position: relative;
    vertical-align: middle;
}

.section-title:before {
    right: 15px;
    margin-left: -50%;
}

.section-title:after {
    left: 15px;
    margin-right: -50%;
}

.content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    max-width: 800px;
    padding: 30px;
    border-radius: 10px;
    background-color: #e7e7e7;
    box-shadow: 0 4px 8px #ffffff;
}

.main-logo {
    max-width: 350px;
    width: 100%;
    margin-bottom: 20px;
}

.service-logo {
    max-width: 200px;
    width: 100%;
    margin: 15px 0;
    height: auto;
    transition: transform 0.3s ease;
}

.service-logo:hover {
    transform: scale(1.05);
}

.link-button {
    color: #ff6b00;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    padding: 12px 20px;
    border: 2px solid #ff6b00;
    border-radius: 8px;
    transition: all 0.3s ease;
    margin: 10px 0;
    width: 280px;
    max-width: 100%;
    display: inline-block;
    line-height: 1.4;
}

.link-button:hover {
    background-color: #ff6b00;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px #ff6b00;
}

.link-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 20px 5px;
    width: 100%;
}

hr {
    border: none;
    border-top: 2px dotted #000000;
    width: 60%;
    margin: 20px auto;
    opacity: 0.5;
}

@media (max-width: 600px) {
    .content {
        padding: 20px;
    }
    .section-title {
        font-size: 18px;
    }
    .section-title:before, 
    .section-title:after {
        width: 20%;
    }
    .main-logo {
        max-width: 280px;
    }
    .service-logo {
        max-width: 180px;
    }
    .link-button {
        width: 240px;
        font-size: 15px;
        padding: 10px 15px;
    }
}