* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    display: flex;
    flex-direction: column;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
    font-family: 'Book Antiqua', serif;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
}

header {
    background: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    padding: 1.5rem;
    font-size: 18px;
    flex-wrap: wrap;
}

nav p {
    font-weight: 600;
    font-size: 24px;
    color: #2c3e50;
    margin-right: auto;
    padding-left: 1rem;
}
nav p.subtitle {
    font-size: 16px;
    flex: 1;
}

nav a {
    text-decoration: none;
    color: #555;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 4px;
}

nav a:hover {
    color: white;
    background: #6b8e7f;
}

section {
    background: white;
    margin: 1.5rem;
    padding: 3rem 2rem;
    border-radius: 8px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    width: calc(100% - 3rem);
    scroll-margin-top: 150px;
}

h2 {
    font-size: 32px;
    color: #2c3e50;
    margin-bottom: 2rem;
    text-align: center;
    border-bottom: 2px solid #6b8e7f;
    padding-bottom: 1rem;
}

.text {
    text-align: justify;
    margin: 1.5rem 0;
    font-size: 16px;
    line-height: 1.8;
}

ul {
    text-align: left;
    list-style: none;
    margin: 2rem 0;
}

li {
    margin: 1.2rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 16px;
    line-height: 1.6;
}

li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #6b8e7f;
    font-weight: bold;
    font-size: 18px;
}

.contact {
    text-align: center;
    font-weight: 600;
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

section p {
    font-size: 16px;
    margin: 0.5rem 0;
}

/* Contact section styling */
section:last-child p {
    margin: 0.8rem 0;
}

section:last-child p:first-of-type {
    font-weight: 600;
    font-size: 18px;
    color: #2c3e50;
    margin-top: 1rem;
}

/* Responsive design */
@media (max-width: 768px) {
    nav {
        padding: 1rem;
        gap: 0;
    }
    
    nav p {
        margin-right: 0;
        width: 100%;
        text-align: center;
        padding-left: 0;
    }
    nav p.subtitle {
        margin-bottom: 0.5rem;
        flex: unset;
    }
    
    h2 {
        font-size: 24px;
    }
    
    section {
        margin: 1rem;
        padding: 2rem 1.5rem;
        width: calc(100% - 2rem);
    }
    
    nav a {
        font-size: 16px;
    }
}