* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    background-color: #0d1b2a;
    color: white;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 60px;
}
.content{
    @media (max-width:480px) {
    padding-bottom: 40px;
        
    }
}
header {
    text-align: center;
    padding: 40px 0;
}

.icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #48cae4;
    padding-top: 15px;
}

h1 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: #48cae4;
}

.subtitle {
    font-size: 1.1rem;
    opacity: 0.8;
    color: #a8c5ff;
    margin-bottom: 30px;
}

.team-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
}

.team-card {
    display: flex;
    background-color: #6c7a89;
    border-radius: 10px;
    overflow: hidden;
    width: 100%;
    max-width: 400px;
}

.member-image {
    width: 120px;
    height: 180px;
    object-fit: cover;
}

.member-info {
    padding: 20px;
    flex: 1;
}

.member-name {
    font-size: 1.3rem;
    color: #48cae4;
    margin-bottom: 5px;
    outline-color: black;

}

.member-title {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 15px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    font-size: 1.2rem;
    color: white;
    opacity: 0.7;
    transition: opacity 0.3s;
    text-decoration: none;
}

.social-icon:hover {
    opacity: 1;
}

.contact-form {
    background-color: #6c7a89;
    border-radius: 10px;
    padding: 30px;
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 20px;
}

label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

input,
textarea {
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    border: none;
    background-color: #4a5568;
    color: white;
    font-size: 0.95rem;
}

input::placeholder,
textarea::placeholder {
    color: #cbd5e0;
}

textarea {
    min-height: 150px;
    resize: vertical;
}

button {
    background-color: #48cae4;
    color: #0d1b2a;
    border: none;
    padding: 12px;
    border-radius: 5px;
    width: 100%;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

button:hover {
    background-color: #90e0ef;
}

.success-message {
    background-color: #10b981;
    padding: 10px;
    border-radius: 5px;
    margin-top: 20px;
    display: none;
}

.error-message {
    background-color: #ef4444;
    padding: 10px;
    border-radius: 5px;
    margin-top: 20px;
    display: none;
}

@media (max-width: 768px) {
    .team-cards {
        flex-direction: column;
        align-items: center;
    }
    
    .team-card {
        max-width: 350px;
    }
    
    h1 {
        font-size: 1.8rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
}