/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Figtree', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fafafa;
}

/* Container */
.container {
    max-width: 600px;
    margin: 0 auto;
    padding: 2rem;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* Header */
.header {
    margin-bottom: 1rem;
}

.logo {
    text-align: center;
}

.logo-image {
    width: 15rem;
    height: 15rem;
}

/* Main content */
.main-content {
    text-align: center;
    width: 100%;
}

.company-name {
    font-size: 1.125rem;
    font-weight: 400;
    color: #231F20;
    margin: 0;
    line-height: 1.5;
    letter-spacing: normal;
}

.info-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    margin-top: 2rem;
}

.address {
    font-size: 1.125rem;
    color: #231F20;
    line-height: 1.5;
    margin: 0;
}

.contact-email {
    font-size: 1.125rem;
    color: #231F20;
    line-height: 1.5;
    margin: 0;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-bottom-color 0.2s ease;
}

.contact-email:hover {
    border-bottom-color: #231F20;
}

/* Responsive design */
@media (max-width: 768px) {
    .container {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .company-name,
    .address,
    .contact-email {
        font-size: 1rem;
    }
} 