
        body {
            font-family: 'Palatino Linotype', 'Book Antiqua', Palatino, serif;
            line-height: 1.6;
            color: #333;
            background-color: #f5f1e6;
            margin: 0;
            padding: 0;
        }
        .container {
            max-width: 1000px;
            margin: 0 auto;
            padding: 0 20px;
        }
        main {
            padding-top: 80px;
            padding-bottom: 40px;
        }
        h1 {
            color: #5d2e0d;
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 30px;
            border-bottom: 3px double #8b4513;
            padding-bottom: 15px;
        }
        h2 {
            color: #8b4513;
            font-size: 1.8rem;
            margin-top: 40px;
            border-left: 5px solid #8b4513;
            padding-left: 15px;
        }
        .section-nav {
            background-color: #e9e1cc;
            padding: 15px;
            border-radius: 5px;
            margin-bottom: 30px;
            border: 1px solid #c9b991;
        }
        .section-nav ul {
            list-style-type: none;
            padding: 0;
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }
        .section-nav li {
            margin-bottom: 8px;
        }
        .section-nav a {
            color: #5d2e0d;
            text-decoration: none;
            font-weight: bold;
            padding: 5px 10px;
            border-radius: 3px;
            transition: background-color 0.3s;
        }
        .section-nav a:hover {
            background-color: #d3c7a7;
            text-decoration: underline;
        }
        .effective-date {
            text-align: center;
            font-style: italic;
            margin-bottom: 30px;
            color: #666;
        }
        p {
            margin-bottom: 20px;
            text-align: justify;
        }
        .section {
            margin-bottom: 40px;
            background-color: #fff;
            padding: 20px;
            border-radius: 5px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }
        ul {
            padding-left: 25px;
        }
        li {
            margin-bottom: 10px;
        }
    