@charset "utf-8";
/* CSS Document */

/* Page container */
body {
    font-family: Georgia, "Times New Roman", serif;
    max-width: 760px;
    margin: 60px auto;
    padding: 40px 30px;
    line-height: 1.7;
    color: #222;
    background: #f5f5f5;
}

/* Framed content box */
.sitemap-box {
    background: #ffffff;
    padding: 30px 40px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

/* Heading */
h1 {
    font-size: 2rem;
    margin-bottom: 25px;
    letter-spacing: 0.4px;
    font-weight: normal;
    border-bottom: 1px solid #ddd;
    padding-bottom: 12px;
}

/* List styling */
ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

ul li {
    margin: 0;
    padding: 14px 0;
    border-bottom: 1px solid #e6e6e6;
}

ul li:last-child {
    border-bottom: none;
}

/* Links */
ul li a {
    color: #333;
    text-decoration: none;
    font-size: 1.15rem;
    transition: 
        padding-left 0.2s ease,
        color 0.2s ease;
}

ul li a:hover {
    padding-left: 8px;
    color: #000;
}
/* Intro text */
.intro {
    font-size: 1.1rem;
    margin-bottom: 25px;
    color: #444;
    line-height: 1.7;
}

/* Join callout box */
.join-box {
    margin-top: 35px;
    padding: 20px 25px;
    background: #f0f0f0;
    border-left: 4px solid #333;
    border-radius: 4px;
}

.join-box a {
    text-decoration: none;
    color: #000;
    font-size: 1.2rem;
    font-weight: bold;
    letter-spacing: 0.3px;
    transition: padding-left 0.2s ease;
}

.join-box a:hover {
    padding-left: 6px;
}
.center-join {
    text-align: center;
}
.join-box {
    margin-left: auto;
    margin-right: auto;
    max-width: 400px; /* optional */
}