* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    text-wrap: pretty;
}

body {
    background-color: #f0f0f0;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
    padding: 1.5rem;
}

.main-container {
    background-color: #d9e3e4;
    width: 100%;
    max-width: 1000px;
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

header {
    text-align: center;
    padding: 1.5rem;
    border-bottom: 1px solid #ccc;
}

header img {
    max-width: 120px;
    height: auto;
    margin-bottom: 1rem;
    border-radius: 50%;
    border: none;
}

header h2 {
    color: #428ea8;
    font-size: 3rem;
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    padding-bottom: 25px;
}

header p {
    color: #fff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    line-height: 2;
    font-size: 1.2rem;
    font-weight: 400;
    margin: 0.5rem 0;
    background: rgba(66, 142, 168, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 5px;
    text-align: center;
}

header .art-process {
    background: linear-gradient(135deg, rgba(66, 142, 168, 0.3), rgba(131, 185, 204, 0.3));
    border: 1px solid #83b9cc;
    color: #fff;
    font-style: normal;
    font-size: 1rem;
    font-weight: 400;
    padding: 0.75rem 1.5rem;
    margin: 0.75rem auto;
    border-radius: 12px;
    text-align: center;
    line-height: 2;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    box-shadow: 0 4px 12px rgba(66, 142, 168, 0.3);
    max-width: 60%;
}

.content-section {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 1.5rem 0;
    align-items: center;
}

.info-box {
    background-color: #fff;
    padding: 1rem;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    max-width: 90%;
    text-align: left;
    color: #072539;
}

.info-box .title-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.info-box h3 {
    font-size: 1.5rem;
    color: #83b9cc;
    margin: 0;
}

.info-box p.image-links {
    display: flex;
    align-items: center;
    margin: 0;
    position: relative;
}

.info-box p.image-links a img {
    width: 32px;
    height: 32px;
    margin: 0 8px;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    object-fit: cover;
    position: relative;
    z-index: 1;
}

.info-box p.image-links a {
    position: relative;
}

a {
    color: #83b9cc;
}

.info-box p.image-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, rgba(66, 142, 168, 0.3), rgba(131, 185, 204, 0.3));
    border-radius: 50%;
    z-index: 0;
}

.info-box p.image-links img {
    width: 32px;
    height: 32px;
    margin: 0 8px;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    object-fit: cover;
    position: relative;
    z-index: 1;
}

.info-box p.image-links:not(.title-row p) {
    position: relative;
}

.info-box p.image-links:not(.title-row p)::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, rgba(66, 142, 168, 0.3), rgba(131, 185, 204, 0.3));
    border-radius: 50%;
    z-index: 0;
}

.info-box p {
    font-size: 1rem;
    line-height: 1.6;
    margin: 0.5rem 0;
    text-align: left;
}

.info-box span {
    font-size: 0.55rem;
}

.image-container {
    max-width: 100%;
    overflow: hidden;
}

.image-container img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

footer {
    text-align: center;
    color: #666;
    font-size: 1rem;
    padding: 1.5rem;
    border-top: 1px solid #ccc;
}

footer a {
    color: #83b9cc;
    text-decoration: none;
    margin: 0 0.5rem;
}

footer a:hover {
    text-decoration: underline;
}

/* Mobile (<600px) */
@media (max-width: 600px) {
    .main-container {
        padding: 1rem;
    }
    header img {
        max-width: 100px;
    }
    header h2 {
        font-size: 2.4rem;
    }
    .info-box {
        padding: 0.8rem;
    }
    .info-box .title-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    .info-box h3 {
        font-size: 1.2rem;
    }
    .info-box p.image-links {
        justify-content: flex-start;
        margin: 0;
    }
    .info-box p.image-links a img {
        width: 28px;
        height: 28px;
        margin: 0 6px;
        border-radius: 50%;
        box-shadow: 0 2px 3px rgba(0, 0, 0, 0.2);
        object-fit: cover;
        z-index: 1;
    }
    .info-box p.image-links a::before {
        width: 28px;
        height: 28px;
        background: linear-gradient(135deg, rgba(66, 142, 168, 0.3), rgba(131, 185, 204, 0.3));
        border-radius: 50%;
        z-index: 0;
    }
    .info-box p.image-links img {
        width: 28px;
        height: 28px;
        margin: 0 6px;
        border-radius: 50%;
        box-shadow: 0 2px 3px rgba(0, 0, 0, 0.2);
        object-fit: cover;
        z-index: 1;
    }
    .info-box p.image-links:not(.title-row p)::before {
        width: 28px;
        height: 28px;
        background: linear-gradient(135deg, rgba(66, 142, 168, 0.3), rgba(131, 185, 204, 0.3));
        border-radius: 50%;
        z-index: 0;
    }
    .info-box p {
        font-size: 0.9rem;
        text-align: left;
    }
    .image-container img {
        max-width: 100%;
    }
    footer {
        font-size: 0.9rem;
        padding: 0.8rem;
    }
    header .art-process {
        font-size: 0.85rem;
        padding: 0.5rem 1rem;
        margin: 0.5rem auto;
        border-radius: 10px;
        background: linear-gradient(135deg, rgba(66, 142, 168, 0.3), rgba(131, 185, 204, 0.3));
        border: 1px solid #83b9cc;
        text-align: center;
        font-style: normal;
        color: #fff;
        line-height: 2;
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
        box-shadow: 0 4px 12px rgba(66, 142, 168, 0.3);
        max-width: 85%;
    }
}

/* Tablet (600px–900px) */
@media (min-width: 600px) and (max-width: 900px) {
    .main-container {
        padding: 1.5rem;
    }
    header img {
        max-width: 140px;
    }
    header h2 {
        font-size: 2.7rem;
    }
    .info-box {
        padding: 1rem;
    }
    .info-box .title-row {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    .info-box h3 {
        font-size: 1.4rem;
    }
    .info-box p.image-links {
        margin: 0;
    }
    .info-box p.image-links a img {
        width: 30px;
        height: 30px;
        margin: 0 7px;
        border-radius: 50%;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.25);
        object-fit: cover;
        z-index: 1;
    }
    .info-box p.image-links a::before {
        width: 30px;
        height: 30px;
        background: linear-gradient(135deg, rgba(66, 142, 168, 0.3), rgba(131, 185, 204, 0.3));
        border-radius: 50%;
        z-index: 0;
    }
    .info-box p.image-links img {
        width: 30px;
        height: 30px;
        margin: 0 7px;
        border-radius: 50%;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.25);
        object-fit: cover;
        z-index: 1;
    }
    .info-box p.image-links:not(.title-row p)::before {
        width: 30px;
        height: 30px;
        background: linear-gradient(135deg, rgba(66, 142, 168, 0.3), rgba(131, 185, 204, 0.3));
        border-radius: 50%;
        z-index: 0;
    }
    .info-box p {
        font-size: 1rem;
        text-align: left;
    }
    .image-container img {
        max-width: 100%;
    }
    footer {
        font-size: 0.95rem;
    }
    header .art-process {
        font-size: 0.95rem;
        padding: 0.6rem 1.2rem;
        border-radius: 11px;
        background: linear-gradient(135deg, rgba(66, 142, 168, 0.3), rgba(131, 185, 204, 0.3));
        border: 1px solid #83b9cc;
        margin: 0.75rem auto;
        text-align: center;
        font-style: normal;
        color: #fff;
        line-height: 2;
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
        box-shadow: 0 4px 12px rgba(66, 142, 168, 0.3);
        max-width: 80%;
    }
}

/* Desktop (>900px) */
@media (min-width: 900px) {
    .main-container {
        padding: 2rem;
    }
    header img {
        max-width: 160px;
    }
    header h2 {
        font-size: 3rem;
    }
    .info-box {
        padding: 1rem;
    }
    .info-box .title-row {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    .info-box h3 {
        font-size: 1.5rem;
    }
    .info-box p.image-links {
        margin: 0;
    }
    .info-box p.image-links a img {
        width: 32px;
        height: 32px;
        margin: 0 8px;
        border-radius: 50%;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
        object-fit: cover;
        z-index: 1;
    }
    .info-box p.image-links a::before {
        width: 32px;
        height: 32px;
        background: linear-gradient(135deg, rgba(66, 142, 168, 0.3), rgba(131, 185, 204, 0.3));
        border-radius: 50%;
        z-index: 0;
    }
    .info-box p.image-links img {
        width: 32px;
        height: 32px;
        margin: 0 8px;
        border-radius: 50%;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
        object-fit: cover;
        z-index: 1;
    }
    .info-box p.image-links:not(.title-row p)::before {
        width: 32px;
        height: 32px;
        background: linear-gradient(135deg, rgba(66, 142, 168, 0.3), rgba(131, 185, 204, 0.3));
        border-radius: 50%;
        z-index: 0;
    }
    .info-box p {
        font-size: 1rem;
        text-align: left;
    }
    .image-container img {
        max-width: 100%;
    }
    footer {
        font-size: 1rem;
        padding: 1.2rem;
    }
    header .art-process {
        font-size: 1rem;
        padding: 0.75rem 1.5rem;
        border-radius: 12px;
        background: linear-gradient(135deg, rgba(66, 142, 168, 0.3), rgba(131, 185, 204, 0.3));
        border: 1px solid #83b9cc;
        margin: 0.75rem auto;
        text-align: center;
        font-style: normal;
        color: #fff;
        line-height: 2;
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
        box-shadow: 0 4px 12px rgba(66, 142, 168, 0.3);
        max-width: 60%;
    }
}
