/* --- SIMPLE RAW PAGE LAYOUT --- */
body {
    /* Updated to the official multi-stop Instagram linear gradient */
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    background-attachment: fixed;
    font-family: Arial, sans-serif; /* Your preferred Arial font family */
    color: #333333; /* Standard dark text color */
    margin: 40px; /* Your specified custom margin spacing */
    text-align: center;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 15px;
    box-sizing: border-box;
}

/* --- SIMPLE TEXT CLASSES (NO CARDS / NO BOXES) --- */
h1 {
    color: #423bcc; /* Your specified bluish-purple heading color */
    font-size: 2.2rem;
    margin-bottom: 10px;
}

p.subtitle {
    color: #333333;
    font-size: 1.2rem;
    margin-top: 0;
    margin-bottom: 30px;
}

/* --- CONTACT INFO STYLING --- */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
    font-size: 1.1rem;
    font-weight: bold;
    text-align: center;
}

/* Simple typography styling for anchor contact links */
.contact-info a {
    color: #423bcc;
    text-decoration: none;
    transition: opacity 0.2s;
}

.contact-info a:hover {
    text-decoration: underline;
    opacity: 0.8;
}

/* Standard minimalist layout back button link navigation */
.back-link {
    margin-top: 40px;
    display: inline-block;
    color: #333333;
    font-weight: bold;
    text-decoration: none;
    font-size: 0.9rem;
}
