﻿        body {
            font-family: Arial, sans-serif;
            color: #333;
            max-width: 900px;
            margin: 0 auto;
            padding: 20px;
            background-color: #f4f4f4;
        }
        .container {
            background-color: #fff;
            border: 1px solid #ccc;
            padding: 20px;
        }

        header {
            border-bottom: 0px solid #ccc;
            padding-bottom: 10px;
            margin-bottom: 15px;
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
	  background-image: url("../logo/bg.jpg");
	  background-repeat: no-repeat;
	  background-size: contain;	/* scale to cover the header area */ 
					/*background-attachment: fixed;*/
	  height: 125px;
        }
        .header-left .logo-text {
            font-weight: bold;
		font-style: italic;
            font-size: 1.5em;
        }
        .header-left .subtitle {
            font-size: 1.4em;
            font-weight: bold;
            margin-top: 5px;
        }
        .header-right {
            font-size: 1.5em;
		font-style: italic;
            font-weight: bold;
        }
        nav {
            background-color: #5a2a5a;
            margin-bottom: 20px;
        }
        nav ul {
            list-style: none;
            margin: 0;
            padding: 0;
            display: flex;
        }
        nav li {
            border-right: 1px solid #fff;
        }
        nav a {
            display: block;
            color: white;
            padding: 10px 20px;
            text-decoration: none;
            font-weight: bold;
        }
        nav a.active {
            background-color: #3a1a3a;
        }
        nav a:hover {
            background-color: #4a204a;
        }
        h1 {
            color: #000000;
            font-size: 1.5em;
            font-style: italic;
            border-bottom: 0px solid #eee;
/*            padding-bottom: 1px;*/
        }
        h2 {
            color: #8c5a8c;
            font-size: 1.2em;
            border-bottom: 1px solid #eee;
            padding-bottom: 5px;
        }
        ul.content-list {
            list-style-type: none;
            padding-left: 0;
        }
        ul.content-list li {
            margin-bottom: 10px;
            position: relative;
            padding-left: 20px;
        }
        ul.content-list li::before {
            content: "▶";
            position: absolute;
            left: 0;
            color: #000;
            font-size: 0.8em;
            top: 2px;
        }
        .contact-box {
            background-color: #e5e5e5;
            border: 1px solid #bbb;
            max-width: 450px;
            margin: 40px auto;
            padding: 30px;
            line-height: 1.6;
        }
        .contact-box h2 {
            margin-top: 0;
            margin-bottom: 15px;
            font-size: 1.2em;
            color: #333;
        }
        footer {
            border-top: 1px solid #ccc;
            margin-top: 30px;
            padding-top: 15px;
            display: flex;
            justify-content: space-between;
            font-size: 0.9em;
        }
        .footer-left, .footer-right {
            line-height: 1.4;
        }
        .footer-right strong {
            display: inline-block;
            margin-bottom: 2px;
        }
