* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    color: #333;
    background-color: #ffffff;
    line-height: 1.6;
}

/* Header & Navigation */
header {
    background-color: #fff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.header-top {
    background-color: #f9faf9;
    padding: 10px 0;
    text-align: left;
    font-size: 12px;
}

.header-top .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.language-switcher {
    display: inline-block;
}

.language-switcher a {
    color: #333;
    text-decoration: none;
    margin-right: 15px;
    font-size: 12px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.language-switcher a img {
    vertical-align: middle;
    border: 1px solid #ddd;
}

.language-switcher a:hover {
    color: #666;
}

/* Contact Button in Header */
.contact-button {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #d32f2f;
    text-decoration: none;
    font-size: 13px;
    font-weight: bold;
    padding: 6px 12px;
    border: 2px solid #d32f2f;
    border-radius: 5px;
    transition: all 0.3s;
    position: absolute;
    right: 20px;
}

/* Contact Button - move to left when Arabic is active */
html[lang="ar"] .contact-button {
    right: auto;
    left: 20px;
}

.contact-button:hover {
    background-color: #d32f2f;
    color: white;
}

.contact-button svg {
    flex-shrink: 0;
}

/* Footer Contact Button - Dezenter */
.footer-contact-button {
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    background-color: #666 !important;
    color: white !important;
    padding: 8px 16px !important;
    border-radius: 4px !important;
    text-decoration: none !important;
    font-weight: normal !important;
    font-size: 14px !important;
    transition: background-color 0.3s !important;
}

.footer-contact-button:hover {
    background-color: #555 !important;
}

.header-main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    height: auto;
    width: auto;
    max-height: none;
}

nav {
    padding: 10px 20px;
    border-radius: 5px;
}

.header-main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    height: auto;
    width: auto;
    max-height: none;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
    margin-right: 180px;
}

nav ul li {
    position: relative;
}

nav ul li a {
    color: #333;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s;
    padding: 8px 15px;
    display: block;
    border-radius: 3px;
    text-transform: uppercase;
}

nav ul li a:hover {
    background-color: #c41e3a;
    color: #fff;
    text-decoration: none;
}

nav ul li a.active {
    background-color: #c41e3a;
    color: #fff;
}

/* Dropdown Menu */
nav ul li ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #a01828;
    min-width: 480px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    padding: 10px;
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s;
}

nav ul li:hover > ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5px;
    opacity: 1;
}

nav ul li ul li {
    display: block;
}

nav ul li ul li:nth-child(3) {
    grid-column: 1 / 2;
}

nav ul li ul li:nth-child(4) {
    grid-column: 2 / 3;
}

nav ul li ul li:nth-child(5) {
    grid-column: 1 / 2;
}

nav ul li ul li a {
    display: block;
    padding: 10px 20px;
    color: #fff;
    font-size: 13px;
    white-space: nowrap;
}

nav ul li ul li a:hover {
    background-color: #8a1520;
    color: #fff;
}

/* Hero Section */
.hero {
    background-color: #f9faf9;
    padding: 80px 20px;
    text-align: center;
}

.hero .container {
    max-width: 900px;
    margin: 0 auto;
}

.hero h1 {
    font-family: 'Times New Roman', serif;
    font-size: 36px;
    color: #333;
    margin-bottom: 30px;
    font-weight: normal;
}

.hero p {
    font-size: 18px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

.hero .highlight {
    font-style: italic;
    color: #666;
    font-weight: bold;
}

/* Services Section */
.services {
    padding: 60px 20px;
    background-color: #fff;
}

.services .container {
    max-width: 1200px;
    margin: 0 auto;
}

.services h2 {
    font-family: 'Times New Roman', serif;
    font-size: 32px;
    color: #333;
    margin-bottom: 40px;
    text-align: center;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.team-grid-main {
    grid-template-columns: repeat(2, 1fr);
}

.team-grid-secondary {
    grid-template-columns: repeat(3, 1fr);
}

.team-container {
    display: grid;
    gap: 30px;
    margin-bottom: 30px;
}

/* First row: 2 columns for Christian and Christina */
.team-container:first-of-type {
    grid-template-columns: repeat(2, 1fr);
}

/* Second row: 3 columns for the other team members */
.team-container:last-of-type {
    grid-template-columns: repeat(3, 1fr);
}

.team-member-card {
    background-color: #f9faf9;
    padding: 30px;
    border-radius: 5px;
}

.team-member-card h3 {
    margin-bottom: 0;
    margin-top: 0;
    padding: 0;
    line-height: 1;
}

.team-member-card > p {
    margin-top: -5px;
    margin-bottom: 20px;
    padding: 0;
    line-height: 1;
}

.team-member-card p strong {
    font-size: 18px;
    font-weight: 700;
}

.team-preview {
    display: block;
}

.team-full-text {
    display: none;
}

.read-more-btn {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 25px;
    background-color: #c41e3a;
    color: white !important;
    text-decoration: none;
    border-radius: 3px;
    font-size: 14px;
    transition: all 0.3s;
    cursor: pointer;
}

.read-more-btn:hover {
    background-color: #a01828;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(196, 30, 58, 0.3);
}

.service-card {
    background-color: #f9faf9;
    padding: 30px;
    border-radius: 5px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.service-card h3 {
    font-family: 'Times New Roman', serif;
    font-size: 24px;
    color: #666;
    margin-bottom: 15px;
}

.service-card p {
    color: #555;
    font-size: 16px;
    line-height: 1.6;
}

.service-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
}

.team-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 20px;
    display: block;
    border: 3px solid #c41e3a;
}

/* Contact Section */
.contact {
    background-color: #f9faf9;
    padding: 60px 20px;
}

.contact .container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.contact h2 {
    font-family: 'Times New Roman', serif;
    font-size: 32px;
    color: #333;
    margin-bottom: 30px;
}

.contact-info {
    background-color: transparent;
    padding: 40px 20px;
    border-radius: 5px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 20px;
    box-shadow: none;
    border: none;
    min-width: 700px;
    text-align: left;
}

.contact-info-left {
    display: flex;
    flex-direction: column;
}

.contact-info-right {
    display: flex;
    flex-direction: column;
}

.contact-info {
    background-color: transparent;
    padding: 40px 20px;
    border-radius: 5px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 20px;
    box-shadow: none;
    border: none;
    min-width: 700px;
    text-align: left;
}

.contact-info-left {
    display: flex;
    flex-direction: column;
}

.contact-info-right {
    display: flex;
    flex-direction: column;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
}

.contact-left {
    display: flex;
    flex-direction: column;
}

.contact-right {
    display: flex;
    flex-direction: column;
}

.appointment-notice {
    font-style: italic;
    color: #d32f2f;
}

.mb-5 {
    margin-bottom: 5px;
}

@media (max-width: 768px) {
    .contact-info {
        min-width: auto !important;
        width: 100% !important;
        padding: 20px 10px !important;
        grid-template-columns: 1fr !important;
        gap: 20px !important;
        text-align: center !important;
    }

    .contact-info-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
        text-align: center !important;
    }

    .contact-info > div {
        flex-direction: column !important;
        gap: 10px !important;
    }

    /* Mobile: Hide contact number text in header, show only icon */
    .contact-button .contact-number {
        display: none;
    }

    .contact-button {
        padding: 8px;
        min-width: 40px;
        justify-content: center;
        position: absolute;
        right: 10px;
    }

    .header-top .container {
        position: relative;
    }

    .language-switcher {
        margin-right: 50px;
    }
}

.contact-info p {
    font-size: 16px;
    color: #555;
    margin-bottom: 10px;
}

.contact-info strong {
    color: #666;
}

/* Footer */
footer {
    background-color: #f5f5f5;
    color: #333;
    padding: 20px;
}

footer .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

footer p {
    font-size: 13px;
    margin-bottom: 5px;
    line-height: 1.4;
    color: #333;
}

footer nav {
    margin-top: 10px;
}

footer nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

footer nav ul li a {
    color: #333;
    text-decoration: none;
    font-size: 13px;
}

footer nav ul li a:hover {
    color: #c41e3a;
}

/* Services List Hover Effects */
.services-list li {
    transition: all 0.3s ease;
    padding: 8px;
    border-radius: 5px;
}

.services-list li:hover {
    background-color: #f5f5f5;
    transform: translateX(5px);
    color: #c41e3a;
}

.services-list li:hover img {
    transform: scale(1.2);
    transition: transform 0.3s ease;
}

/* SecureMail Button Hover */
.securemail-button {
    transition: all 0.3s ease;
}

.securemail-button:hover {
    background-color: #a01830 !important;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(196, 30, 58, 0.3);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #333;
    color: #fff;
    padding: 20px;
    text-align: center;
    font-size: 14px;
    z-index: 9999;
}

.cookie-banner button {
    background-color: #666;
    color: #fff;
    border: none;
    padding: 10px 30px;
    margin-left: 20px;
    cursor: pointer;
    border-radius: 3px;
    font-size: 14px;
}

.cookie-banner button:hover {
    background-color: #555;
}

.cookie-banner.hidden {
    display: none;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.6);
}

.modal-content {
    background-color: #fefefe;
    margin: 5% auto;
    padding: 40px;
    border: 1px solid #888;
    width: 90%;
    max-width: 900px;
    max-height: 80vh;
    overflow-y: auto;
    border-radius: 5px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.modal-content p strong {
    font-size: 18px;
    font-weight: 700;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 2px solid #666;
    padding-bottom: 15px;
}

.modal-header h2 {
    color: #666;
    margin: 0;
}

.close {
    color: #aaa;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
}

.close:hover,
.close:focus {
    color: #000;
}

/* Responsive */
/* Desktop: Hide mobile text, show desktop text */
.mobile-text {
    display: none;
}
.desktop-text {
    display: inline;
}

/* Mobile Menu Toggle (Hamburger) */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: all 0.3s;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

@media (max-width: 768px) {
    /* Mobile: Hide desktop text, show mobile text */
    .mobile-text {
        display: inline;
    }
    .desktop-text {
        display: none;
    }

    /* Mobile: Logo auf 80px begrenzen */
    .logo img {
        height: 80px;
        width: auto;
        max-height: 80px;
    }

    .header-main {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 10px 15px !important;
    }

    header nav ul {
        display: none;
        position: fixed;
        top: 100px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        gap: 3px;
        text-align: center;
        margin-right: 0;
        padding: 15px;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
        z-index: 999;
    }

    header nav ul.active {
        display: flex;
    }

    .mobile-menu-toggle {
        display: flex;
        order: 2;
        flex-shrink: 0;
    }

    nav {
        order: 3;
        width: 100%;
    }

    header nav ul li a {
        font-size: 11px !important;
        padding: 4px 10px !important;
        text-transform: uppercase;
    }

    .logo {
        order: 1;
        flex-shrink: 0;
    }

    .logo img {
        height: 40px !important;
    }

    .hero h1 {
        font-size: 24px;
        padding: 0 20px;
    }

    .hero p {
        font-size: 16px;
        padding: 0 20px;
    }

    .hero .container {
        padding: 20px;
    }

    .service-grid {
        grid-template-columns: 1fr !important;
    }

    /* Team container auf mobile = KEIN GRID, nur block */
    .team-container {
        display: block !important;
    }

    .team-member-card {
        display: flex !important;
        flex-direction: column !important;
        width: 100% !important;
        max-width: 100% !important;
        padding: 20px !important;
        margin-bottom: 15px !important;
        float: none !important;
        min-height: 200px !important;
    }

    /* Mobile: Team-Karten mit Akkordeon-Funktionalität */
    .team-member-card {
        border: 1px solid #e0e0e0;
        background-color: #fff;
        cursor: pointer;
        min-height: auto !important;
        transition: all 0.3s ease;
    }

    .team-member-card:hover {
        border-color: #c41e3a;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }

    .team-preview {
        display: block !important;
    }

    .team-full-text {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-out;
        padding: 0 !important;
        margin: 0 !important;
    }

    .team-full-text.active {
        max-height: 2000px;
        padding: 20px 0 !important;
        transition: max-height 0.5s ease-in;
    }

    .team-member-card h3 {
        font-size: 20px !important;
    }

    .team-preview p {
        font-size: 14px !important;
        line-height: 1.6 !important;
        margin: 10px 0 !important;
    }

    .read-more-btn {
        font-size: 13px !important;
        padding: 6px 15px !important;
        display: inline-block !important;
    }

    /* Akkordeon-Pfeil für Mobile Team-Karten */
    .team-member-card .team-preview::after {
        content: "▼";
        font-size: 12px;
        color: #c41e3a;
        float: right;
        transition: transform 0.3s;
        margin-top: -20px;
    }

    .team-member-card.active .team-preview::after {
        transform: rotate(180deg);
    }

    /* Team photos auf mobile */
    .team-photo {
        width: 120px !important;
        height: 120px !important;
        margin: 15px auto !important;
        display: block !important;
    }

    /* Bulletpoints auf mobile anpassen */
    .services-list {
        grid-template-columns: repeat(2, 1fr) !important;
        padding: 0 15px !important;
        gap: 10px !important;
        text-align: left !important;
    }

    .services-list li {
        font-size: 11px !important;
        line-height: 1.4 !important;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }

    .services-list li img {
        width: 12px;
        height: 12px;
        flex-shrink: 0;
    }

    /* FAQ Images auf mobile */
    .faq-step-image {
        max-width: 100% !important;
    }

    /* Footer auf mobile */
    footer {
        padding: 15px 10px !important;
    }

    footer p {
        font-size: 12px !important;
    }

    /* Header padding */
    .header-top {
        padding: 8px 0 !important;
    }

    .header-top .container {
        padding: 0 10px !important;
        display: flex !important;
        justify-content: center !important;
    }

    .language-switcher {
        display: flex !important;
        gap: 8px !important;
    }

    .language-switcher a {
        font-size: 10px !important;
        margin-right: 0 !important;
        gap: 3px !important;
    }

    .language-switcher a img {
        width: 16px !important;
        height: auto !important;
    }

    .language-switcher a span {
        display: none !important;
    }

    /* Team photos auf mobile */
    .team-photo {
        width: 120px !important;
        height: 120px !important;
    }

    /* Modal auf mobile */
    .modal-content {
        width: 95%;
        padding: 20px;
        margin: 10% auto;
    }
}

/* FAQ Accordion Styles */
.faq-container {
    max-width: 900px;
    margin: 50px auto 0;
    text-align: left;
}

.faq-title {
    font-family: 'Times New Roman', serif;
    font-size: 28px;
    color: #333;
    margin-bottom: 30px;
    text-align: center;
}

.faq-item {
    margin-bottom: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    background-color: #fff;
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border-color: #c41e3a;
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
    font-weight: 500;
    color: #333;
    transition: background-color 0.3s;
}

.faq-question:hover {
    background-color: #f9faf9;
}

.faq-question::after {
    content: "▼";
    font-size: 12px;
    color: #c41e3a;
    transition: transform 0.3s;
}

.faq-question.active::after {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding: 0 20px;
}

.faq-answer.active {
    max-height: 3000px;
    padding: 0 20px 20px;
    transition: max-height 0.5s ease-in;
}

.faq-answer p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
}

.faq-answer strong {
    color: #333;
    display: block;
    margin-top: 15px;
    margin-bottom: 5px;
}

.faq-answer ul {
    margin-left: 20px;
    margin-bottom: 15px;
}

.faq-answer li {
    color: #555;
    margin-bottom: 8px;
}

/* FAQ Images */
.faq-step-image {
    width: 100%;
    max-width: 700px;
    height: auto;
    margin: 15px auto;
    display: block;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* Utility Classes - Security: remove inline styles */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.mt-2 {
    margin-top: 2rem;
}

.mt-15 {
    margin-top: 15px;
}

.mt-20 {
    margin-top: 20px;
}

.mt-25 {
    margin-top: 25px;
}

.mt-30 {
    margin-top: 30px;
}

.mb-10 {
    margin-bottom: 10px;
}

.mb-15 {
    margin-bottom: 15px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-25 {
    margin-bottom: 25px;
}

.mb-40 {
    margin-bottom: 40px;
}

.mb-2px {
    margin-bottom: 2px;
}

.margin-0 {
    margin: 0;
}

.color-333 {
    color: #333;
}

.color-555 {
    color: #555;
}

.color-666 {
    color: #666;
}

.color-999 {
    color: #999;
}

.color-red {
    color: #c41e3a;
}

.font-14 {
    font-size: 14px;
}

.font-16 {
    font-size: 16px;
}

.font-18 {
    font-size: 18px;
}

.font-20 {
    font-size: 20px;
}

.font-24 {
    font-size: 24px;
}

.font-32 {
    font-size: 32px;
}

.font-times {
    font-family: 'Times New Roman', serif;
}

.display-none {
    display: none;
}

.section-hidden {
    display: none !important;
}

.display-flex {
    display: flex;
}

.display-inline-block {
    display: inline-block;
}

.bg-f9faf9 {
    background-color: #f9faf9;
}

.bg-f5f5f5 {
    background-color: #f5f5f5;
}

.padding-60-20 {
    padding: 60px 20px;
}

.padding-40-20-20 {
    padding: 40px 20px 20px;
}

.max-width-900 {
    max-width: 900px;
    margin: 0 auto;
}

.max-width-600 {
    max-width: 600px;
    margin: 0 auto;
}

.max-width-1200 {
    max-width: 1200px;
    margin: 0 auto;
}

.grid-1col {
    grid-template-columns: 1fr;
}

.no-decoration {
    text-decoration: none;
}

/* SecureMail Button - moved from inline */
.securemail-button {
    display: inline-block;
    background-color: #c41e3a;
    color: #fff;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 16px;
}

.securemail-button:hover {
    background-color: #a01828;
}

/* Services List - moved from inline */
.services-list {
    font-size: 16px;
    color: #555;
    line-height: 2.2;
    list-style: none;
    padding: 0 0 0 80px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    text-align: left;
}

.services-list img {
    vertical-align: middle;
    margin-right: 8px;
}

/* Footer Flex Nav */
.footer-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding: 0;
    margin: 0;
    list-style: none;
    flex-wrap: wrap;
}

.footer-nav a {
    color: #333;
    text-decoration: none;
    font-size: 14px;
}

/* Modal Heading Styles */
.modal-h4-grey {
    color: #666;
    margin-top: 20px;
    margin-bottom: 10px;
}

.modal-h4-red {
    color: #c41e3a;
    margin-top: 20px;
    margin-bottom: 15px;
    font-size: 18px;
}

.modal-p-555 {
    color: #555;
}

/* Additional utility classes for remaining inline styles */
.font-20-mb-25 {
    font-size: 20px;
    margin-bottom: 25px;
}

.mt-25-font-16 {
    margin-top: 25px;
    font-size: 16px;
}

.footer-address-line {
    margin: 0 0 5px 0;
    color: #333;
}

.footer-address-last {
    margin: 0 0 2px 0;
    color: #333;
}

.footer-disclaimer {
    margin: 0;
    font-size: 13px;
    color: #666;
}

.footer-timestamp {
    margin-top: 20px;
    color: #555;
    font-size: 12px;
    font-style: italic;
}

.securemail-warning {
    font-size: 13px;
    color: #c41e3a;
    margin-top: 10px;
    padding: 10px;
    background-color: #fff3cd;
    border-left: 4px solid #ffc107;
    border-radius: 4px;
}

.contact-icons-flex {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 15px;
}

.section-team-hidden {
    background-color: #f9faf9;
    display: none;
    padding: 60px 20px;
}
