@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700&display=swap');

:root {
    --primary: #008080;
    --primary-dark: #006666;
    --secondary: #001a33;
    --accent: #00d2d3;
    --white: #ffffff;
    --light-bg: #f8fafc;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

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

body {
    font-family: 'Outfit', sans-serif;
    background: var(--light-bg);
    color: var(--secondary);
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 2rem;
    width: 100vw;
    overflow-x: hidden;
}

.container {
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Logo */
.logo-container {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.main-logo {
    width: 100%;
    max-width: 600px;
    height: auto;
    display: block;
}

/* Support Section */
.support {
    width: 100%;
    text-align: center;
}

.support h2 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: var(--secondary);
    font-weight: 600;
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 400px));
    gap: 2rem;
    width: 100%;
    justify-content: center;
}

.support-card {
    padding: 2.5rem;
    border-radius: 20px;
    background: var(--white);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e1e8ed;
    text-align: left;
    box-shadow: var(--shadow);
}

.support-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.support-card i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1rem;
    display: block;
}

.support-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
}

.support-card p {
    color: #64748b;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.link-arrow {
    display: flex;
    align-items: center;
    color: var(--primary);
    text-decoration: none;
    font-weight: 700;
    gap: 0.5rem;
    font-size: 0.95rem;
}

.link-arrow:hover {
    color: var(--primary-dark);
}

/* Footer */
footer {
    margin-top: 3rem;
    text-align: center;
    width: 100%;
}

footer p {
    opacity: 0.5;
    font-size: 0.8rem;
}

/* Responsive */
@media (max-width: 768px) {
    .support-grid {
        grid-template-columns: 1fr;
    }

    .main-logo {
        max-width: 300px;
    }
}