/* Reset and Base Styles */
body, html {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #fff;
    scroll-behavior: smooth;
}

/* 1. Header Logic: Verhoogd met 40% (120px * 1.4 = 168px) */
.header-container {
    position: sticky;
    top: 0;
    width: 100%;
    height: 168px; 
    background-color: white;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* 2. Logo Wrapper */
.logo-wrapper {
    display: flex;
    gap: 60px; /* Iets meer ruimte tussen de logo's */
    align-items: center;
}

.logo-link {
    display: block;
    transition: transform 0.3s ease;
}

.logo-img {
    height: 84px; /* Verhoogd met 40% (60px * 1.4 = 84px) */
    width: auto;
    display: block;
}

.logo-link:hover img {
    transform: scale(1.05);
}

/* 4. Layout & Content Area */
.content-area {
    padding: 60px 20px;
}

.text-table {
    margin: 0 auto;
    width: 90%;
    max-width: 800px;
    border-collapse: collapse;
}

.text-table td {
    text-align: left;
    line-height: 1.8;
    color: #333;
}

/* 5. Typography & Press Release Styling */
h1 {
    font-size: 1.6rem;
    margin-bottom: 30px;
    line-height: 1.3;
}

h2 {
    text-transform: uppercase;
    text-decoration: underline;
    font-family: Arial, sans-serif; 
    font-size: 1.2rem;
    letter-spacing: 1px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #000;
    text-underline-offset: 6px;
}

p {
    font-family: Arial, sans-serif;
    font-size: 1rem;
    line-height: 1.75;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    text-align: justify;
}

/* Lead Paragraph Styling */
/*/ p:first-of-type {
    font-size: 1rem;
    color: #000;
}

/* Quotes */
.quote-text {
    font-family: Arial, sans-serif;
    font-size: 1rem;
    font-style: italic;
    line-height: 1.6;
    color: #333;
    display: block;
    margin: 10px 0 20px 40px;
    border-left: 4px solid #000;
    padding-left: 20px;
}

.quote-author {
    font-family: Arial, sans-serif;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    color: #000;
}

/* Contact & Footer */
.press-release-end {
    display: block;
    text-align: center;
    font-size: 0.75rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #999;
    margin: 50px 0;
}

.press-release-end::before,
.press-release-end::after {

    vertical-align: middle;

}

a {
    color: #000000;
    text-decoration: underline;
}

/* 6. Responsive Settings */
@media (max-width: 768px) {
    .logo-wrapper {
        gap: 20px;
    }
    .logo-img {
        height: 50px;
    }
    .header-container {
        height: 120px;
    }
}
/* --- Identical PDF Contact Layout --- */
.press-contact-container {
    padding: 80px 0;
    background-color: #fff;
}

.press-contact-table {
    margin: 0 auto;
    width: 80%;
    max-width: 800px; /* Maintains the white space on left/right */
    border-collapse: collapse;
    font-family: Arial, sans-serif; /* Standard PDF font */
}

/* "CONTACTPERSONEN" Header  */
.press-label {
    font-weight: bold;
    font-size: 16px;
    padding-bottom: 30px;
    color: #000;
}

/* Department Labels (Uppercase as per PDF)  */
.contact-dept {
    font-weight: bold;
    font-size: 14px;
    padding-top: 25px;
    text-transform: uppercase;
    color: #000;
    letter-spacing: 0.5px;
}

/* Name, Phone, and Email [cite: 23, 24, 25] */
.contact-details {
    font-size: 14px;
    line-height: 1.5;
    padding-bottom: 10px;
    color: #333;
	text-align: left;
}

.contact-details a {
    color: inherit;
    text-decoration: underline;
}

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

/* Responsive adjustment for mobile */
@media (max-width: 600px) {
    .press-contact-table {
        width: 90%;
    }
}