/* Page-specific styles for /frontend-web/support/index.html (excluding shared rules) */

header {
    text-align: center;
    padding: 50px 20px 30px;
    background: white;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

main {
    flex: 1;
    max-width: 900px;
    margin: auto;
    padding: 60px 20px;
    text-align: center;
}

.hero h2 {
    font-size: 3em;
    font-weight: 800;
    color: #222;
    margin-bottom: 15px;
}
.hero p {
    font-size: 1.3em;
    color: #555;
    max-width: 700px;
    margin: 0 auto 50px;
    line-height: 1.6;
}

/* Contact card */
.contact-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    max-width: 600px;
    margin: auto;
}

.contact-card h3 {
    font-size: 1.8em;
    margin-bottom: 15px;
    color: #007BFF;
}

.contact-card p {
    font-size: 1.1em;
    margin-bottom: 25px;
    color: #555;
}

.contact-card a.button {
    display: inline-block;
    padding: 14px 30px;
    font-size: 1.1em;
    font-weight: bold;
    color: white;
    background-color: #007BFF;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 6px 12px rgba(0,123,255,0.2);
}
.contact-card a.button:hover {
    background-color: #0056b3;
    transform: translateY(-3px);
    box-shadow: 0 8px 16px rgba(0,123,255,0.3);
}

footer {
    background: #f9f9f9;
    text-align: center;
    padding: 25px;
    font-size: 0.9em;
    color: #666;
    border-top: 1px solid #eee;
}
