body {
    font-family: 'Helvetica', sans-serif;
    line-height: 1.6;
    color: #F8F0E5;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background-color: #3C2A21;
}

.container {
    background-color: #3C2A21;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
}

.logo-container {
    width: 200px;
    height: 200px;
    margin: 0 auto;
    border-radius: 50%;
    overflow: hidden;
}

.logo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

h1 {
    color: #FFF;
    text-align: center;
}

.tagline {
    text-align: center;
    font-style: italic;
    color: #F2E3C9;
}

.summary {
    text-align: justify;
    margin-bottom: 20px;
    color: #F8F0E5;
}

.buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
}

.button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    background-color: #E49B5D;
    border-radius: 50%;
    transition: background-color 0.3s, transform 0.3s;
    overflow: hidden;
}

.button:hover {
    background-color: #5F8D93;
    transform: scale(1.1);
}

.button img {
    width: 60%;
    height: 60%;
    object-fit: contain;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    transition: transform 0.3s;
}

.social-links a:hover {
    transform: scale(1.1);
}

.social-links img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.footer {
    text-align: center;
    margin-top: 30px;
    font-size: 0.9em;
    color: #F2E3C9;
}

.email-link {
    color: #F2E3C9;
    text-decoration: none;
}

.email-link:hover {
    color: #E49B5D;
    text-decoration: underline;
}
