body {
    margin: 0;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: #000;
    color: #fff;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    text-align: center;
}

.header {
    margin-bottom: 4rem;
}

.title {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.subtitle {
    color: #888;
    margin-bottom: 0.5rem;
}

.member-info {
    color: #666;
    margin-bottom: 3rem;
}

.main-heading {
    color: #0095ff;
    font-size: 2rem;
    margin-bottom: 2rem;
}

.description {
    color: #888;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.contact {
    margin-bottom: 3rem;
}

.button {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    margin: 0 1rem;
    background-color: #0095ff;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.button:hover {
    background-color: #0077cc;
}

.services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 10px;
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #fff;
}

.service-description {
    color: #888;
}

.footer {
    margin-top: 4rem;
    color: #666;
    font-size: 0.9rem;
}
