:root {
    --primary-color: #0a8095; /* Deep Teal/Cyan */
    --secondary-color: #f7b731; /* Accent Gold/Orange */
    --text-color: #333;
    --light-bg: #f8fcff; /* New, softer, near-white background for About section */
    --logo-bg: #fff; /* Reverted to white for logo container background */
    --max-width: 1100px;
}

/* Basic Reset and Typography */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #fff;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Header and Navigation */
header {
    background: #fff; /* Changed to White */
    color: var(--primary-color); /* Changed text color for better contrast on white */
    padding: 10px 0;
    border-bottom: 5px solid var(--secondary-color);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-placeholder {
    /* Set to 163x50 for the newwebsite.png logo */
    height: 50px; 
    width: 163px;
    background: var(--logo-bg); /* Changed back to White */
    padding: 0; 
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5em;
    font-weight: bold;
    color: var(--primary-color);
    border-radius: 4px;
}

.logo-placeholder img {
    max-height: 100%;
    width: auto;
}

nav ul {
    list-style: none;
    display: flex;
}

nav ul li a {
    color: var(--primary-color); /* Menu text color matches website theme */
    text-decoration: none;
    padding: 10px 15px;
    display: block;
    transition: background-color 0.3s;
}

nav ul li a:hover {
    background-color: var(--light-bg); /* Use light background on hover */
}

/* Main Content Sections */
section {
    padding: 60px 0;
}

#about {
    /* Uses the soft background color */
    background: var(--light-bg); 
}

h2 {
    text-align: center;
    margin-bottom: 40px;
    color: var(--primary-color);
    font-size: 2.5em;
    border-bottom: 2px solid var(--secondary-color);
    display: inline-block;
    padding-bottom: 5px;
    width: 100%;
}

.about-content p strong {
    color: var(--primary-color);
}

/* Imprints Section */
#imprints {
    background: #fff;
}

.imprint-grid {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
    text-align: center;
}

.imprint-card {
    flex: 1;
    min-width: 280px;
    max-width: 45%;
    padding: 30px;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}

.imprint-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.imprint-card h3 {
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-size: 1.8em;
}

.imprint-logo-placeholder {
    height: 100px;
    width: 100px;
    background-color: var(--light-bg); 
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.imprint-logo-placeholder img {
    max-height: 90%; 
    max-width: 90%;
    height: auto;
    width: auto;
}

/* Footer/Contact */
footer {
    background: var(--primary-color);
    color: #fff;
    padding: 40px 0 20px;
    font-size: 0.9em;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.footer-section h4 {
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-size: 1.1em;
}

.footer-section a {
    color: #fff;
    text-decoration: none;
}

.footer-section a:hover {
    text-decoration: underline;
}

.copyright {
    text-align: center;
    padding-top: 20px;
}

/* Responsiveness */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        text-align: center;
    }

    nav ul {
        padding-top: 10px;
        justify-content: center;
    }

    nav ul li a {
        padding: 10px 10px;
    }

    .imprint-grid {
        flex-direction: column;
        gap: 20px;
    }

    .imprint-card {
        max-width: 100%;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .logo-placeholder {
        margin-bottom: 10px;
    }
}