:root {
    --primary-color: #1a1a1a;
    --text-color: #333;
    --transition-duration: .3s;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #fff;
    min-height: 100vh;
}

.container {
    width: 100%;
    max-width: 1200px;
    padding: 2rem;
    margin: 0 auto;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.logo-section {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.logo-container {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 2px minmax(0, 1fr);
    column-gap: 4rem;
    align-items: center;
    width: min(900px, 100%);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.logo-link {
    transition: transform var(--transition-duration) ease-in-out;
    display: flex;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
    padding: 0;
    position: relative;
    z-index: 1;
    box-sizing: border-box;
}

.logo-link:first-child {
    justify-content: flex-end;
    padding-right: 2rem;
}

.logo-link:last-child {
    justify-content: flex-start;
    padding-left: 2rem;
}

.divider {
    width: 2px;
    height: 150px;
    background-color: #e0e0e0;
}

.logo-link:hover {
    transform: scale(1.05);
}

.brand-logo {
    height: 150px;
    width: auto;
    object-fit: contain;
    filter: none;
}

.company-info {
    text-align: center;
    padding: 2rem 0;
    animation: fadeIn 1s ease-in-out;
}

.company-logo {
    max-width: 200px;
    height: auto;
    margin-bottom: 1.5rem;
    filter: none;
}

.company-description {
    font-size: .9rem;
    color: #888;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.company-description p {
    margin: .4rem 0;
}

footer {
    text-align: center;
    margin-top: 2rem;
    color: #666;
    font-size: .9rem;
    padding-bottom: 1rem;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .container {
        padding: 1.5rem;
        justify-content: space-between;
    }
    .logo-section {
        flex: none;
        margin: 2rem 0;
        height: 300px;
    }
    .logo-container {
        position: absolute;
        display: flex;
        flex-direction: column;
        gap: 3rem;
        width: 100%;
    }
    .logo-link {
        width: 100%;
        padding: 0;
        justify-content: center;
    }
    .logo-link:first-child,
    .logo-link:last-child {
        justify-content: center;
        padding: 0;
    }
    .divider {
        width: 60%;
        height: 2px;
        position: static;
        transform: none;
        margin: 0;
        background-color: #f0f0f0;
    }
    .brand-logo {
        height: 100px;
        width: auto;
    }
    .company-logo {
        max-width: 180px;
        margin-bottom: 1rem;
    }
    .company-info {
        padding: 1rem 0;
    }
    .company-description {
        font-size: .85rem;
        padding: 0 1rem;
        line-height: 1.5;
    }
    .company-description p {
        margin: .3rem 0;
    }
    footer {
        margin-top: 1.5rem;
        padding-bottom: .5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 1rem;
    }
    .logo-section {
        margin: 1.5rem 0;
        height: 250px;
    }
    .brand-logo {
        height: 80px;
    }
    .company-logo {
        max-width: 150px;
    }
    .company-description {
        font-size: .8rem;
    }
} 
