/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: #f4f6f8;
    color: #333333;
    line-height: 1.6;
    padding: 20px;
}

/* Page Layout Container */
.site-container {
    max-width: 800px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

/* Header & Central Logo Styles */
.main-header {
    text-align: center;
    border-bottom: 2px solid #eef2f5;
    padding-bottom: 30px;
    margin-bottom: 30px;
}

.logo-container {
    margin-bottom: 25px;
}

.logo {
    max-width: 250px;
    height: auto;
    display: inline-block;
}

.main-title {
    font-size: 2rem;
    color: #1a365d; /* Professional deep blue */
    margin-bottom: 15px;
    font-weight: 700;
}

.tagline {
    font-size: 1.15rem;
    color: #4a5568;
    margin-bottom: 10px;
    font-weight: 500;
}

.location-statement {
    font-size: 1rem;
    color: #718096;
}

/* Shared Section Styles */
.section-title {
    font-size: 1.35rem;
    color: #2b6cb0;
    margin-bottom: 15px;
    border-bottom: 1px solid #e2e8f0;
    padding-bottom: 5px;
}

/* Contact Styles */
.contact-section {
    margin-bottom: 35px;
}

.contact-details p {
    margin-bottom: 8px;
    font-size: 1rem;
}

.contact-details a {
    color: #2b6cb0;
    text-decoration: none;
}

.contact-details a:hover {
    text-decoration: underline;
}

/* Services Styles */
.services-section {
    margin-bottom: 40px;
}

.services-list {
    list-style-type: none;
}

.services-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    font-size: 1rem;
    color: #2d3748;
}

.services-list li::before {
    content: "•";
    color: #2b6cb0;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
}

/* Footer Styles */
.main-footer {
    text-align: center;
    border-top: 1px solid #e2e8f0;
    padding-top: 20px;
    font-size: 0.9rem;
    color: #718096;
}

.privacy-link {
    color: #718096;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 8px;
}

.privacy-link:hover {
    color: #2b6cb0;
    text-decoration: underline;
}

.copyright {
    font-size: 0.85rem;
}

/* Responsive adjustments for mobile devices */
@media (max-width: 600px) {
    .site-container {
        padding: 20px;
    }
    
    .main-title {
        font-size: 1.6rem;
    }
}
