/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Georgia, 'Times New Roman', serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

/* Container for content width */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header styles */
header {
    padding: 40px 0;
    border-bottom: 1px solid #e0e0e0;
}

.site-header {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 20px;
}

.logo-text {
    font-size: 64px;
    font-weight: normal;
    font-family: Arial, sans-serif;
    letter-spacing: -3px;
}

.logo-c {
    position: relative;
}

.green-dot {
    color: #4CAF50;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-size: 24px;
}

.tagline {
    font-size: 18px;
    line-height: 1.3;
    font-family: Arial, sans-serif;
    font-weight: 300;
}

/* Navigation styles */
.main-nav {
    background-color: #fff;
    border-bottom: 1px solid #e0e0e0;
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.main-nav .container {
    max-width: 800px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav-menu {
    list-style: none;
    display: flex;
    gap: 0;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    display: inline-block;
}

.nav-menu a {
    display: block;
    padding: 12px 25px 3px 25px;
    text-decoration: none;
    color: #666;
    font-family: Arial, sans-serif;
    font-size: 13px;
    letter-spacing: 0.5px;
    transition: color 0.3s;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #333;
}

/* Main content styles */
.main-content {
    padding: 60px 0;
    min-height: 60vh;
}

article {
    max-width: 800px;
    margin: 0 auto;
}

h1 {
    font-size: 32px;
    font-weight: normal;
    margin-bottom: 40px;
    text-align: center;
    font-family: Georgia, serif;
}

h2 {
    font-size: 24px;
    font-weight: normal;
    margin-top: 40px;
    margin-bottom: 20px;
    font-family: Georgia, serif;
}

p {
    margin-bottom: 20px;
    text-align: justify;
    line-height: 1.8;
}

ul {
    margin-left: 30px;
    margin-bottom: 20px;
}

li {
    margin-bottom: 8px;
}

/* sections */
.sub-section {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid #e0e0e0;
}

/* Footer styles */
.site-footer {
    background-color: #f8f8f8;
    border-top: 1px solid #e0e0e0;
    padding: 30px 0;
    text-align: center;
    margin-top: 80px;
}

.site-footer p {
    text-align: center;
    margin-bottom: 10px;
    font-size: 14px;
    color: #666;
}

.footer-meta {
    font-size: 13px;
    color: #999;
}

.footer-meta a {
    color: #999;
    text-decoration: none;
}

.footer-meta a:hover {
    text-decoration: underline;
}

/* Links */
a {
    color: #4CAF50;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Responsive design */
@media (max-width: 768px) {
    .logo-text {
        font-size: 48px;
    }
    
    .tagline {
        font-size: 14px;
    }
    
    .nav-menu {
        flex-wrap: wrap;
    }
    
    .nav-menu a {
        padding: 10px 15px 2px 15px;
        font-size: 12px;
    }
    
    h1 {
        font-size: 28px;
    }
    
    article {
        padding: 0 10px;
    }
    
    p {
        text-align: left;
    }
}