.adaptive-info-page {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #fffaf0;
    color: #34495e;
    margin: 0;
    padding: 2rem;
}

.adaptive-container {
    max-width: 800px;
    margin: auto;
    background: #ffffff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.adaptive-h2 {
    color: #e67e22;
    margin-bottom: 1rem;
    font-size: 2rem;
}

.adaptive-p {
    line-height: 1.6;
    font-size: 1.1rem;
}

.adaptive-ul {
    padding-left: 1.4rem;
    margin-top: 1rem;
}

.adaptive-ul li {
    margin-bottom: 0.6rem;
}

.adaptive-button-container {
    margin-top: 2.5rem;
    text-align: center;
}

.adaptive-home-button {
    background-color: #e67e22;
    color: white;
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.adaptive-home-button:hover {
    background-color: #cf711c;
}