body {
    margin: 0;
    font-family: 'Verdana', sans-serif;
    overflow-x: hidden;
    background-color: #ffffff;
}

.header {
    background: #ffffff;
    padding: 1rem;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    width: 100%;
}

.logo {
    height: 40px;
    width: auto;
    object-fit: contain;
    margin-left: 1rem;
}

/* ✅ New: top-right small italic text */
.header-note {
    margin-left: auto;
    font-size: 0.85rem;
    font-style: italic;
    color: #333;
    padding-right: 8rem;
    transform: translateY(4px);
}

.quadrant {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 1rem;
    width: 100%;
    min-height: 90vh;
    padding: 1rem;
    box-sizing: border-box;
}

.quadrant > div {
    align-self: stretch;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    box-sizing: border-box;
}

/* Text quadrant content */
.text-quadrant .text-content {
    width: 90%;
    height: 90%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}

.text-content h1 {
    font-size: 4rem;
    font-weight: bold;
    color: black;
    margin: 0 0 1px 0;
    transform: scaleX(1.15);
    transform-origin: left;
}

.text-content h2 {
    font-size: 0.9rem;
    font-style: italic;
    font-weight: normal;
    color: black;
    margin: 0 0 20px 0;
    transform: scaleX(1.1);
    transform-origin: left;
}

.text-content p {
    font-size: 1.15rem;
    font-weight: normal;
    color: black;
    margin: 0;
    transform: scaleX(1.05);
    transform-origin: left;
}

/* Image quadrant */
.image-quadrant label {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.image-quadrant img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
    z-index: 1;
}

/* Enlarge mechanism */
.enlarge-checkbox {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    pointer-events: none;
}

.enlarged-image {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    justify-content: center;
    align-items: center;
    z-index: 999;
}

.enlarged-image img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

.enlarge-checkbox:checked ~ img,
.enlarge-checkbox:checked ~ .enlarged-image {
    display: flex;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .quadrant {
        width: 100%;
    }

    .text-content h1 {
        font-size: 3rem;
        transform: scaleX(1.15);
    }

    .text-content h2 {
        font-size: 0.8rem;
        transform: scaleX(1.1);
    }

    .text-content p {
        font-size: 1rem;
        transform: scaleX(1.05);
    }
}

@media (max-width: 480px) {
    .quadrant {
        width: 100%;
    }

    .text-content h1 {
        font-size: 2.2rem;
        transform: scaleX(1.15);
    }

    .text-content h2 {
        font-size: 0.7rem;
        transform: scaleX(1.1);
    }

    .text-content p {
        font-size: 0.9rem;
        transform: scaleX(1.05);
    }

    .header-note {
        font-size: 0.75rem;
        padding-right: 0.75rem;
    }
}