/* Basic styling for text-only version */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 20px;
    background-color: #f5f1eb;
}

header {
    margin-bottom: 30px;
    text-align: center;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-direction: row;
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 10px;
    }
}

.logo {
    width: 200px;
    height: auto;
}

.header-text {
    text-align: center;
}

header h1 {
    margin: 0;
    font-size: 2.5em;
}

.tagline {
    font-size: 1.1em;
    color: #666;
    margin: 10px 0;
}

.service-area {
    font-size: 1em;
    color: #888;
    margin: 5px 0;
}

main {
    max-width: 800px;
    margin: 0 auto;
    background-color: white;
    padding: 30px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

section {
    margin-bottom: 40px;
}

section h2 {
    border-bottom: 2px solid #333;
    padding-bottom: 10px;
    margin-top: 0;
}

#servicesList {
    list-style-type: none;
    padding: 0;
}

#servicesList li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

#servicesList li:last-child {
    border-bottom: none;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
}

.contact-item {
    padding: 15px;
    background-color: #f9f9f9;
    border-left: 4px solid #333;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background-color: #f0f0f0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.contact-item h3 {
    margin-top: 0;
}

.contact-item a {
    color: #0066cc;
    text-decoration: none;
    font-weight: bold;
}

.contact-item a:hover {
    text-decoration: underline;
}

footer {
    text-align: center;
    color: #666;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #ddd;
}

/* Email obfuscation using CSS Display None */
.obfuscate {
    display: none;
}
