body {
    background: linear-gradient(135deg, #d9151b 0%, #a01015 100%);
    min-height: 100vh;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.hero-section {
    padding: 60px 0 40px;
    text-align: center;
    color: white;
}

.hero-logo {
    max-width: 300px;
    margin-bottom: 30px;
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.1));
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.hero-subtitle {
    font-size: 1.25rem;
    opacity: 0.95;
    margin-bottom: 50px;
}

.organisations-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 60px;
}

.org-card {
    background: white;
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    color: inherit;
    border: 3px solid transparent;
}

.org-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.15);
    border-color: #d9151b;
    text-decoration: none;
}

.org-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #d9151b 0%, #a01015 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: white;
    font-weight: bold;
}

.org-name {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 10px;
}

.org-arrow {
    color: #d9151b;
    font-size: 1.5rem;
    margin-top: 10px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.org-card:hover .org-arrow {
    opacity: 1;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .org-card {
        margin-bottom: 20px;
    }
}

