
:root {
    --primary: #7FC6B2;
    --secondary: #B3DFDA;
    --white: #FFFFFF;
    --dark: #1A7F7F;
    --black: #000000;
}

body {
    font-family: Arial, sans-serif;
    background-color: var(--white);
    color: var(--dark);
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

h1 {
    margin-bottom: 20px;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.navbar {
    width: 100%;
    background-color: var(--white);
    color: var(--dark);
    padding: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo img {
    height: 50px;
    width: auto;
}

.container {
    max-width: 600px;
    width: 90%;
    margin: 2rem auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: var(--secondary);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.profile {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 2rem;
}

.profile-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background-color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--primary);
    margin-bottom: 1rem;
}
.profile-img img {
    max-width: 80%;
    max-height: 80%; 
    object-fit: contain;
}

.profile-name {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.profile-description {
    font-size: 1rem;
    text-align: center;
    color: var(--black);
    margin-bottom: 1rem;
    max-width: 400px;
}

.links {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 1rem;
}

.link {
    background-color: var(--primary);
    color: var(--white);
    padding: 1rem;
    border-radius: 8px;
    text-decoration: none;
    text-align: center;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.link:hover {
    background-color: var(--dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}

.link i {
    margin-right: 0.5rem;
    font-size: 1.2rem;
}

.links li {
    margin: 20px 0;
}

.links a {
    text-decoration: none;
    color: var(--white);
    background-color: var(--dark);
    padding: 10px 20px;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.links a:hover {
    background-color: var(--primary);
}

.map-container {
    width: 100%;
    height: 250px;
    margin: 1rem 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

footer {
    margin-top: auto;
    padding: 1rem;
    text-align: center;
    color: var(--dark);
    font-size: 0.9rem;
    width: 100%;
    background-color: var(--white);
    border-top: 1px solid var(--secondary);
}

@media (max-width: 768px) {
    .container {
        width: 95%;
    }
}