/* contact-style.css */

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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: #333333;
    background-color: #f8f9fa;
    padding: 40px 20px;
}

.contact-container {
    max-width: 650px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

/* Back to Home Button Styling */
.back-home-wrapper {
    margin-bottom: 25px;
}

.btn-back-home {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    font-weight: 500;
    color: #495057;
    background-color: #e9ecef;
    padding: 8px 16px;
    border-radius: 6px;
    text-decoration: none;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.btn-back-home:hover {
    background-color: #dee2e6;
    color: #212529;
    text-decoration: none;
}

.btn-back-home svg {
    display: block;
}

h1 {
    font-size: 2.5rem;
    color: #111111;
    margin-bottom: 15px;
    font-weight: 700;
}

.support-intro {
    font-size: 1.05rem;
    color: #495057;
    margin-bottom: 35px;
}

/* High-contrast, completely static text block for the email display */
.email-display-card {
    background-color: #111111;
    color: #ffffff;
    padding: 30px;
    border-radius: 6px;
    text-align: center;
    margin-bottom: 35px;
}

.card-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #868e96;
    margin-bottom: 8px;
}

.card-email {
    font-family: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
    font-size: 1.5rem;
    font-weight: bold;
    color: #38bdf8; 
    user-select: all; /* Easy for users to double-click and copy text */
    margin-bottom: 8px;
}

.card-note {
    font-size: 0.85rem;
    color: #adb5bd;
}

/* Guidelines section typography */
.info-box h2 {
    font-size: 1.2rem;
    color: #212529;
    margin-bottom: 15px;
}

.info-box ul {
    margin-left: 20px;
}

.info-box li {
    margin-bottom: 10px;
    font-size: 1rem;
    color: #495057;
}

