:root {
    --bg-color: #f8fafc;
    --text-main: #0f172a;
    --text-muted: #475569;
    --accent-petrol: #910021;
    --card-bg: #ffffff;
    --border-color: #e2e8f0;

    --font-heading: 'Montserrat', sans-serif;
    --font-sans: 'Inter', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    background-color: var(--bg-color);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1,
h2,
h3 {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: -0.5px;
}

.accent {
    color: var(--accent-petrol);
    font-style: normal;
}

/* Navigation */
nav {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

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

.logo-img {
    height: 38px;
    width: auto;
}

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

.footer-logo-img {
    height: 32px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.85;
    transition: opacity 0.3s ease;
}

.footer-logo-img:hover {
    opacity: 1;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

nav a {
    text-decoration: none;
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

nav a:hover {
    color: var(--accent-petrol);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 10%;
    background:
        linear-gradient(to right, rgba(15, 23, 42, 0.85) 0%, rgba(15, 23, 42, 0.6) 50%, rgba(15, 23, 42, 0.4) 100%),
        url('./assets/hero-v3.jpg') center/cover no-repeat;
    position: relative;
    border-bottom: none;
}

.grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 100px 100px;
    z-index: 0;
    pointer-events: none;
}

.hero h1 {
    font-size: 5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    max-width: 900px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s forwards 0.2s cubic-bezier(0.2, 0.8, 0.2, 1);
    color: #f1f5f9;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
}

.hero p {
    font-size: 1.25rem;
    color: #cbd5e1;
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin-bottom: 3rem;
    font-weight: 400;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s forwards 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.btn {
    display: inline-block;
    padding: 1.1rem 3rem;
    background: var(--accent-petrol);
    color: #fff;
    position: relative;
    z-index: 1;
    border: 1px solid var(--accent-petrol);
    text-decoration: none;
    font-family: var(--font-heading);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1.5px;
    font-size: 0.85rem;
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s forwards 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.btn:hover {
    background: #b80029;
    border-color: #b80029;
    color: #fff;
    box-shadow: 0 10px 20px rgba(145, 0, 33, 0.35);
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Services */
.services {
    padding: 8rem 10%;
    position: relative;
    background-color: #ffffff;
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(15, 23, 42, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(15, 23, 42, 0.04) 1px, transparent 1px);
    background-size: 80px 80px;
    pointer-events: none;
}

/* Services Header */
.services-header {
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
    z-index: 1;
}

.services-label {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--accent-petrol);
    margin-bottom: 1.2rem;
    padding: 0.5rem 1.5rem;
    border: 1px solid rgba(145, 0, 33, 0.25);
}

.services .section-title {
    font-size: 3rem;
    margin-bottom: 2rem;
    text-align: center;
    text-transform: uppercase;
    color: var(--text-main);
}

.services .section-title .accent {
    color: var(--accent-petrol);
}

.services-header-line {
    width: 60px;
    height: 2px;
    background: var(--accent-petrol);
    margin: 0 auto;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 5rem;
    text-align: center;
    text-transform: uppercase;
    color: var(--text-main);
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.service-card {
    background: #fff;
    border: 1px solid var(--border-color);
    padding: 3rem 2.5rem 2.5rem;
    transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
    position: relative;
    overflow: hidden;
    cursor: default;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: var(--accent-petrol);
    transition: height 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(145, 0, 33, 0.04) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(145, 0, 33, 0.1);
    border-color: rgba(145, 0, 33, 0.15);
}

.service-card:hover::before {
    height: 100%;
}

.service-card:hover::after {
    opacity: 1;
}

/* Card Number */
.card-number {
    position: absolute;
    top: -8px;
    right: 12px;
    font-family: var(--font-heading);
    font-size: 5.5rem;
    font-weight: 700;
    color: rgba(145, 0, 33, 0.08);
    line-height: 1;
    pointer-events: none;
    transition: color 0.5s ease;
}

.service-card:hover .card-number {
    color: rgba(145, 0, 33, 0.15);
}

/* Card Icon */
.card-icon {
    width: 44px;
    height: 44px;
    color: var(--accent-petrol);
    margin-bottom: 1.8rem;
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.card-icon svg {
    width: 100%;
    height: 100%;
}

.service-card:hover .card-icon {
    transform: translateY(-3px);
}

/* Card Content */
.service-card h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--text-main);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.75;
    position: relative;
    z-index: 1;
}

/* Card Arrow */
.card-arrow {
    display: inline-block;
    margin-top: 1.5rem;
    font-size: 1.4rem;
    color: var(--accent-petrol);
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    position: relative;
    z-index: 1;
}

.service-card:hover .card-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* Services Responsive */
@media (max-width: 1100px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .services .section-title {
        font-size: 2.2rem;
    }

    .service-card {
        padding: 2.5rem 2rem 2rem;
    }

    .card-number {
        font-size: 4rem;
    }
}

/* Scroll Classes */
.visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.hidden {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

/* Vita */
.vita {
    padding: 8rem 10%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 5rem;
    background: #0f172a;
    border: none;
}

.vita-content {
    flex: 1;
}

.vita-content .section-title {
    text-align: left;
    margin-bottom: 1rem;
    color: #f1f5f9;
}

.vita-subtitle {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--accent-petrol);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 2rem;
}

.vita-subtitle {
    font-size: 0.95rem;
    letter-spacing: 1.5px;
}

.vita-text {
    font-size: 1.1rem;
    color: #94a3b8;
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

/* Vita Timeline */
.vita-timeline {
    margin-bottom: 2.5rem;
    padding-left: 1.5rem;
    border-left: 2px solid rgba(255, 255, 255, 0.1);
}

.timeline-item {
    position: relative;
    padding: 0 0 1.8rem 1.8rem;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -7px;
    top: 4px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--accent-petrol);
    border: 2px solid #0f172a;
}

.timeline-year {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--accent-petrol);
    margin-bottom: 0.3rem;
}

.timeline-content strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: #f1f5f9;
    margin-bottom: 0.2rem;
}

.timeline-content p {
    font-size: 0.9rem;
    color: #94a3b8;
    line-height: 1.5;
}

.vita-qual-title {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #f1f5f9;
    margin-bottom: 1rem;
}

.vita-qualifications {
    list-style: none;
}

.vita-qualifications li {
    margin-bottom: 0.8rem;
    color: #cbd5e1;
    font-weight: 500;
}

.vita-qualifications li span.accent {
    margin-right: 10px;
    font-weight: bold;
}

.vita-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.image-placeholder {
    width: 100%;
    max-width: 400px;
    aspect-ratio: 3 / 4;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    position: relative;
    font-family: var(--font-heading);
    font-weight: 600;
}

.image-placeholder::after {
    content: '';
    position: absolute;
    top: 15px;
    left: 15px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--accent-petrol);
    z-index: -1;
    transition: all 0.4s ease;
}

.vita:hover .image-placeholder::after {
    top: 20px;
    left: 20px;
}

/* Contact */
.contact {
    padding: 8rem 10%;
    background-color: var(--bg-color);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info {
    background: #ffffff;
    border: 1px solid var(--border-color);
    padding: 4rem;
    height: 100%;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.contact-heading {
    font-size: 1.8rem;
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 2rem;
    color: var(--text-main);
}

.contact-detail {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.contact-detail strong {
    color: var(--text-main);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    background: #ffffff;
    border: 1px solid var(--border-color);
    padding: 1.2rem;
    color: var(--text-main);
    font-family: var(--font-sans);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--accent-petrol);
    box-shadow: 0 0 0 3px rgba(145, 0, 33, 0.1);
}

/* Footer */
footer {
    background: #0f172a;
    color: #fff;
    padding: 4rem 10% 2rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
}

.footer-content .footer-logo {
    color: #fff;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    margin-left: 2rem;
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #fff;
}

.footer-bottom {
    text-align: center;
    color: #64748b;
    font-size: 0.8rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* =============================================
   BURGER MENU
   ============================================= */
.burger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 200;
    flex-direction: column;
    gap: 5px;
}

.burger span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--text-main);
    transition: all 0.3s ease;
    transform-origin: center;
}

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

.burger.active span:nth-child(2) {
    opacity: 0;
}

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

/* =============================================
   RESPONSIVE — TABLET (max 1024px)
   ============================================= */
@media (max-width: 1024px) {
    .hero {
        padding: 0 6%;
    }

    .hero h1 {
        font-size: 3.8rem;
    }

    .services {
        padding: 5rem 6%;
    }

    .services-header {
        margin-bottom: 3rem;
    }

    .vita {
        padding: 5rem 6%;
        flex-direction: column;
        gap: 3rem;
    }

    .vita-content .section-title {
        text-align: center;
    }

    .vita-image,
    .vita-content {
        width: 100%;
    }

    .contact {
        padding: 5rem 6%;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-info {
        padding: 2.5rem;
    }

    footer {
        padding: 3rem 6% 1.5rem;
    }
}

/* =============================================
   RESPONSIVE — MOBILE (max 768px)
   ============================================= */
@media (max-width: 768px) {
    /* Burger visible */
    .burger {
        display: flex;
    }

    /* Mobile Nav Overlay */
    nav ul {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(15, 23, 42, 0.97);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 0;
        padding: 0;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.4s ease;
        z-index: 150;
    }

    nav ul.open {
        opacity: 1;
        pointer-events: all;
    }

    nav ul li {
        list-style: none;
    }

    nav ul li a {
        display: block;
        padding: 1.2rem 2rem;
        font-size: 1.1rem;
        color: #f1f5f9 !important;
        letter-spacing: 2px;
        text-align: center;
        transition: color 0.3s ease;
    }

    nav ul li a:hover,
    nav ul li a.active {
        color: var(--accent-petrol) !important;
    }

    nav {
        padding: 1rem 5%;
    }

    .logo-img {
        height: 30px;
    }

    /* Hero Mobile */
    .hero {
        height: auto;
        min-height: 85vh;
        padding: 7rem 6% 4rem;
    }

    .hero h1 {
        font-size: 2.4rem;
        line-height: 1.15;
        margin-bottom: 1rem;
    }

    .hero p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .btn {
        padding: 0.9rem 2rem;
        font-size: 0.8rem;
        width: 100%;
        text-align: center;
    }

    /* Services Mobile */
    .services {
        padding: 4rem 5%;
    }

    .services-header {
        margin-bottom: 2.5rem;
    }

    .services .section-title {
        font-size: 1.8rem;
    }

    .services-label {
        font-size: 0.65rem;
        letter-spacing: 3px;
        padding: 0.4rem 1rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .service-card {
        padding: 2rem 1.5rem 1.5rem;
    }

    .card-number {
        font-size: 3.5rem;
        top: -4px;
        right: 8px;
    }

    .card-icon {
        width: 36px;
        height: 36px;
        margin-bottom: 1.2rem;
    }

    .service-card h3 {
        font-size: 1rem;
        letter-spacing: 1px;
    }

    .service-card p {
        font-size: 0.88rem;
    }

    .card-arrow {
        display: none;
    }

    /* Vita Mobile */
    .vita {
        padding: 4rem 5%;
    }

    .vita-content .section-title {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }

    .vita-subtitle {
        font-size: 0.8rem;
        text-align: center;
    }

    .vita-text {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }

    .timeline-item {
        padding: 0 0 1.5rem 1.4rem;
    }

    .timeline-content strong {
        font-size: 0.9rem;
    }

    .timeline-content p {
        font-size: 0.85rem;
    }

    .vita-qual-title {
        font-size: 0.9rem;
    }

    .vita-qualifications li {
        font-size: 0.88rem;
        margin-bottom: 0.6rem;
    }

    .image-placeholder {
        max-width: 280px;
        font-size: 0.75rem;
    }

    .image-placeholder::after {
        top: 10px;
        left: 10px;
    }

    /* Contact Mobile */
    .contact {
        padding: 4rem 5%;
    }

    .contact .section-title {
        font-size: 1.8rem;
        margin-bottom: 2.5rem;
    }

    .contact-info {
        padding: 2rem 1.5rem;
    }

    .contact-heading {
        font-size: 1.3rem;
        margin-bottom: 1.5rem;
    }

    .contact-detail {
        font-size: 0.95rem;
    }

    .contact-form input,
    .contact-form textarea {
        padding: 1rem;
        font-size: 0.9rem;
    }

    .contact-form {
        gap: 1rem;
    }

    /* Footer Mobile */
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
        margin-bottom: 2rem;
    }

    .footer-logo-img {
        height: 26px;
    }

    .footer-links a {
        margin: 0 0.8rem;
        font-size: 0.8rem;
    }

    .footer-bottom {
        font-size: 0.7rem;
    }

    footer {
        padding: 2.5rem 5% 1.5rem;
    }

    /* Section Title Global */
    .section-title {
        font-size: 2rem;
        margin-bottom: 3rem;
    }

    /* Page Hero Mobile */
    .page-hero {
        padding: 7rem 5% 3rem;
    }

    .page-hero h1 {
        font-size: 1.6rem;
        word-break: break-word;
        hyphens: auto;
    }

    /* Page Content Mobile */
    .page-content {
        padding: 2.5rem 5%;
    }

    .page-content h2 {
        font-size: 1.3rem;
    }

    .page-content h3 {
        font-size: 1rem;
        margin: 2rem 0 0.8rem;
    }

    .page-content p {
        font-size: 0.92rem;
    }

    .page-content ul li {
        font-size: 0.88rem;
    }

    .info-cards {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .info-card {
        padding: 1.8rem 1.5rem;
    }

    .accordion-header {
        padding: 1.2rem 1rem;
    }

    .accordion-header h2 {
        font-size: 0.95rem;
        word-break: break-word;
        hyphens: auto;
    }

    .accordion-icon {
        margin-left: 1rem;
        width: 20px;
        height: 20px;
    }

    .accordion-icon::before {
        width: 20px;
        top: 9px;
    }

    .accordion-icon::after {
        height: 20px;
        left: 9px;
    }

    .accordion-body-inner {
        padding: 0 1rem 1.5rem;
    }
}

/* =============================================
   RESPONSIVE — SMALL MOBILE (max 400px)
   ============================================= */
@media (max-width: 400px) {
    .hero h1 {
        font-size: 1.9rem;
    }

    .hero p {
        font-size: 0.9rem;
    }

    .services .section-title {
        font-size: 1.5rem;
    }

    .vita-content .section-title {
        font-size: 1.7rem;
    }

    .page-hero h1 {
        font-size: 1.4rem;
    }
}

/* =============================================
   SUBPAGE STYLES
   ============================================= */

/* Page Hero Banner */
.page-hero {
    padding: 10rem 10% 4rem;
    background: #0f172a;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(145, 0, 33, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(145, 0, 33, 0.06) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

.page-hero::after {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(145, 0, 33, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.page-hero-label {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--accent-petrol);
    margin-bottom: 1.2rem;
    padding: 0.4rem 1.2rem;
    border: 1px solid rgba(145, 0, 33, 0.3);
    position: relative;
    z-index: 1;
}

.page-hero h1 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    color: #f1f5f9;
    text-transform: uppercase;
    letter-spacing: -0.5px;
    line-height: 1.1;
    position: relative;
    z-index: 1;
}

.page-hero h1 .accent {
    color: var(--accent-petrol);
}

.page-hero-line {
    width: 60px;
    height: 2px;
    background: var(--accent-petrol);
    margin-top: 2rem;
    position: relative;
    z-index: 1;
}

/* Page Content */
.page-content {
    padding: 5rem 10%;
    background: var(--bg-color);
}

.page-content-inner {
    max-width: 900px;
}

.page-content h2 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-main);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--accent-petrol);
}

.page-content h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--accent-petrol);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 2.5rem 0 1rem;
}

.page-content p {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 1.2rem;
}

.page-content ul {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.page-content ul li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.6rem;
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.page-content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    background: var(--accent-petrol);
}

.page-content .content-divider {
    width: 100%;
    height: 1px;
    background: var(--border-color);
    margin: 3rem 0;
}

/* Info Cards Grid (for Baugenehmigung Verfahren) */
.info-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 2rem 0;
}

.info-card {
    background: #fff;
    border: 1px solid var(--border-color);
    padding: 2.5rem 2rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.info-card:hover {
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}

.info-card h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--accent-petrol);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1.5rem;
    padding-bottom: 0.8rem;
    border-bottom: 2px solid var(--border-color);
}

.info-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.info-card ul {
    margin-top: 0.5rem;
}

.info-card ul li {
    font-size: 0.9rem;
}

/* Accordion Sections (for Nachweise) */
.accordion-section {
    background: #fff;
    border: 1px solid var(--border-color);
    margin-bottom: 1rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
}

.accordion-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2rem 2.5rem;
    cursor: pointer;
    transition: background 0.3s ease;
    user-select: none;
}

.accordion-header:hover {
    background: rgba(145, 0, 33, 0.03);
}

.accordion-header h2 {
    font-size: 1.4rem;
    margin: 0;
    padding: 0;
    border: none;
}

.accordion-icon {
    width: 24px;
    height: 24px;
    position: relative;
    flex-shrink: 0;
    margin-left: 2rem;
}

.accordion-icon::before,
.accordion-icon::after {
    content: '';
    position: absolute;
    background: var(--accent-petrol);
    transition: transform 0.3s ease;
}

.accordion-icon::before {
    width: 24px;
    height: 2px;
    top: 11px;
    left: 0;
}

.accordion-icon::after {
    width: 2px;
    height: 24px;
    top: 0;
    left: 11px;
}

.accordion-section.open .accordion-icon::after {
    transform: rotate(90deg);
}

.accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.accordion-section.open .accordion-body {
    max-height: 2000px;
}

.accordion-body-inner {
    padding: 0 2.5rem 2.5rem;
}

/* Impressum */
.impressum-content {
    max-width: 600px;
}

.impressum-content .contact-label {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-petrol);
    margin-top: 2rem;
    margin-bottom: 0.5rem;
}

/* Subpage Responsive */
@media (max-width: 900px) {
    .info-cards {
        grid-template-columns: 1fr;
    }

    .page-hero h1 {
        font-size: 2.5rem;
    }

    .page-content {
        padding: 3rem 6%;
    }

    .accordion-header {
        padding: 1.5rem;
    }

    .accordion-body-inner {
        padding: 0 1.5rem 1.5rem;
    }
}