/* Reset / base */
* {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
}

body {
    min-height: 100vh;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
    background: linear-gradient(135deg, #0f172a, #1e293b);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 24px;
}

/* Prevent huge image overflow */
img {
    max-width: 100%;
    display: block;
}

/* Main card/container */
.container {
    width: 100%;
    max-width: 480px;
    text-align: center;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 32px 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

/* Logo */
.logo {
    width: 180px;
    height: auto;
    margin: 0 auto 20px;
}

/* Portrait image */
.second-image {
    width: 160px;
    height: 160px;
    object-fit: cover;
    border-radius: 50%;
    margin: 0 auto 24px;
    border: 3px solid #3b82f6;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.25);
}


/* Quote */
.quote {
    margin: 0 auto 28px;
    max-width: 360px;
    color: #cbd5e1;
    font-size: 1rem;
    line-height: 1.6;
}

/* Contact button */
.contact-btn {
    position: relative;
    width: 140px;
    height: 25px;
    border: none;
    border-radius: 12px;
    background: #3b82f6;
    color: white;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    overflow: hidden;
    transition: background 0.2s ease, transform 0.2s ease;
}

.contact-btn::before {
    content: "Contact Us";
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: opacity 0.2s ease;
}

.contact-btn::after {
    content: "info@qinsight.cc";
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.contact-btn:hover {
    background: #2563eb;
    transform: translateY(-1px);
}

.contact-btn:hover::before {
    opacity: 0;
}

.contact-btn:hover::after {
    opacity: 1;
}