@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #374151;
}

.QC-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.QC-content-wrapper {
    width: 100%;
    max-width: 64rem;
    margin: 0 auto;
}

.QC-card {
    background: white;
    border-radius: 0.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
    overflow: hidden;
}

.QC-main-card {
    border: 2px solid #bfdbfe;
    background: linear-gradient(to right, #eff6ff, #dbeafe);
}

.QC-card-header {
    text-align: center;
    padding: 2rem 1.5rem;
}

.QC-alert-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    background: #dbeafe;
    border-radius: 50%;
    margin-bottom: 1rem;
}

.QC-alert-triangle {
    width: 2rem;
    height: 2rem;
    color: #2563eb;
}

.QC-card-title {
    font-size: 1.875rem;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.QC-card-description {
    font-size: 1.125rem;
    color: #4b5563;
    /*    max-width: 32rem;*/
    margin: 0 auto;
}

.QC-card-content {
    padding: 0 1.5rem 2rem;
    text-align: center;
}

.QC-expiry-notice {
    background: #dbeafe;
    border: 1px solid #bfdbfe;
    border-radius: 0.5rem;
    padding: 1rem;
    margin-bottom: 1.5rem;
}

.QC-expiry-text {
    color: #1e40af;
    font-weight: 500;
}

.QC-renew-button {
    background: linear-gradient(to right, #3b82f6, #1e40af);
    color: white;
    padding: 0.75rem 2rem;
    font-size: 1.125rem;
    font-weight: 600;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

    .QC-renew-button:hover {
        background: linear-gradient(to right, #2563eb, #1d4ed8);
        box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
        transform: translateY(-1px);
    }

.QC-grid {
    display: grid;
    /*    gap: 2rem;*/
}

@media (min-width: 768px) {
    .QC-grid-md-2 {
        grid-template-columns: repeat(1, 1fr);
    }
}

.QC-contact-section {
    padding: 1.5rem;
}

.QC-section-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.QC-contact-item {
    display: flex;
    align-items: flex-start;
    gap: .75rem;
    margin-bottom: .5rem;
    padding: 0.5rem;
    border-radius: 0.5rem;
    transition: background-color 0.2s ease;
}

    .QC-contact-item:hover {
        background: #f9fafb;
    }

.QC-contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    background: #eff6ff;
    border-radius: 50%;
    transition: background-color 0.2s ease;
}

.QC-contact-item:hover .QC-contact-icon {
    background: #dbeafe;
}

.QC-contact-info {
    flex: 1;
}

.QC-contact-label {
    font-weight: 500;
    color: #1f2937;
    margin-bottom: 0.25rem;
}

.QC-contact-value {
    color: #4b5563;
    text-decoration: none;
    transition: color 0.2s ease;
    display: block;
    font-size:14px;
}

    .QC-contact-value b {
        font-weight: 600;
    }

    .QC-contact-value:hover {
        color: #2563eb;
    }

.QC-social-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1rem;
}

.QC-social-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .25rem;
    padding: .5rem;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    text-decoration: none;
    color: #4b5563;
    transition: all 0.3s ease;
}

    .QC-social-link:hover {
        border-color: #d1d5db;
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
        color: #1f2937;
    }

.QC-social-icon {
    width: 1.25rem;
    height: 1.25rem;
    transition: color 0.2s ease;
    object-fit: contain;
}

.QC-facebook:hover .QC-social-icon {
    color: #1877f2;
}

.QC-twitter:hover .QC-social-icon {
    color: #1da1f2;
}

.QC-linkedin:hover .QC-social-icon {
    color: #0077b5;
}

.QC-instagram:hover .QC-social-icon {
    color: #e4405f;
}

.QC-youtube:hover .QC-social-icon {
    color: #ff0000;
}

.QC-social-label {
    font-size: 0.875rem;
    font-weight: 500;
}

.QC-support-card {
    background: linear-gradient(to right, #eff6ff, #dbeafe);
    border: 1px solid #bfdbfe;
}

.QC-support-content {
    padding: 2rem;
    text-align: center;
}

.QC-support-title {
    font-size: 1.25rem;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 1rem;
}

.QC-support-description {
    color: #4b5563;
    max-width: 32rem;
    margin: 0 auto 1.5rem;
}

.QC-separator {
    height: 1px;
    background: #e5e7eb;
    margin: 1.5rem 0;
}

.QC-support-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    font-size: 0.875rem;
    color: #6b7280;
}

    .QC-support-features span::before {
        content: "• ";
    }

.QC-icon {
    width: 1.5rem;
    height: 1.5rem;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}
