* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Verdana, sans-serif;
}

body {
    background: linear-gradient(rgba(0, 27, 133, 0.043), rgba(131, 112, 255, 0.19)),
        url('Artemis2.jpg') no-repeat center center fixed;
    background-size: cover;
    color: #333;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

header {
    text-align: center;
    padding: 50px 20px 30px;
    max-width: 800px;
}

header h1 {
    font-size: 3.5rem;
    color: #ffffff;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
    text-shadow: 2px 2px 6px rgb(0, 0, 0), -1px -1px 0 rgba(0, 47, 255, 0.555);
}

.story-text {
    font-size: 1.1rem;
    color: #ffffff;
    line-height: 1.6;
    margin-bottom: 20px;
    text-shadow: 2px 2px 6px rgb(0, 0, 0);
}

.team-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 20px;
    flex-wrap: wrap;
    max-width: 1200px;
    width: 100%;
}

.card {
    background: rgba(255, 255, 255, 0.64);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    width: 320px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-15px);
    box-shadow: 0 15px 40px rgba(30, 58, 138, 0.2);
}

.profile-img {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 5px solid #003386;
    background-color: #e2e8f0;
}

.card h3 {
    font-size: 1.5rem;
    color: #1e293b;
    margin-bottom: 3px;
}

.card h4 {
    font-size: 1rem;
    color: #ffffff;
    margin-bottom: 10px;
    text-shadow: 2px 2px 5px rgb(0, 3, 49);
}

.button-group {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.btn {
    display: inline-block;
    padding: 10px 30px;
    background: #003386;
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.btn:hover {
    background: #2563eb;
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.4);
}

.btn1 {
    display: inline-block;
    padding: 10px 30px;
    background: transparent;
    color: #ffffff;
    background: #003386;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.btn1:hover {
    background: #2563eb;
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
}

.logo {
    position: absolute;
    top: 5px;
    right: 15px;
    width: 50px;
    height: auto;
    z-index: 1000;
}

@media (max-width: 768px) {
    header h1 {
        font-size: 2.5rem;
    }

    .card {
        width: 100%;
        max-width: 350px;
    }
}