* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Cormorant Garamond', Georgia, serif;
    background-color: #F5F2EB;
    color: #3d3d2e;
    line-height: 1.6;
    min-height: 100vh;
}

.page-container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
}

header {
    margin-bottom: 80px;
}

.icon {
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
}

.logo-icon {
    width: 128px;
    height: 128px;
    filter: brightness(0) saturate(100%) invert(20%) sepia(8%) saturate(1234%) hue-rotate(37deg) brightness(95%) contrast(91%);
}

.logo {
    font-size: 9rem;
    font-weight: 400;
    color: #3d3d2e;
    margin-bottom: 15px;
    letter-spacing: -1px;
}

.tagline {
    font-size: 1.5rem;
    color: #3d3d2e;
    font-weight: 300;
    font-style: italic;
}

main {
    margin-top: 40px;
}

.headline {
    font-size: 1.5rem;
    font-weight: 400;
    color: #3d3d2e;
    margin-bottom: 40px;
}

.contact-emails {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-emails a {
    color: #3d3d2e;
    text-decoration: underline;
    font-size: 1rem;
    transition: opacity 0.2s ease;
}

.contact-emails a:hover {
    opacity: 0.7;
}

footer {
    padding: 40px 20px;
    border-top: 1px solid rgba(61, 61, 46, 0.2);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    text-align: left;
}

.footer-section {
    font-size: 0.95rem;
    line-height: 1.8;
}

.footer-logo {
    font-size: 1.2rem;
    font-weight: 400;
}

.footer-section p {
    margin-bottom: 4px;
    color: #3d3d2e;
}

.footer-section a {
    color: #3d3d2e;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.footer-section a:hover {
    opacity: 0.7;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .logo {
        font-size: 3.5rem;
    }

    .tagline {
        font-size: 1.2rem;
    }

    .headline {
        font-size: 1.3rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .logo-icon {
        width: 96px;
        height: 96px;
    }
}
