* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #000;
    color: #888;
    font-family: 'Georgia', serif;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Subtle geometric background pattern */
body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(45deg, transparent 49%, rgba(255,255,255,0.02) 50%, transparent 51%),
        linear-gradient(-45deg, transparent 49%, rgba(255,255,255,0.02) 50%, transparent 51%);
    background-size: 100px 100px, 100px 100px;
    background-position: 0 0, 50px 50px;
    z-index: 1;
}

.container {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 40px;
}
.logo{
    overflow: hidden;
}

.logo-crop {
    overflow: hidden;
    width: auto;
    height: 225px;
    overflow: hidden;
}

.logo-crop img {
    /* max-width: 100%; */
    height: 300px;
    max-height: 100%;
    object-fit: contain;
}

.company-name {
    font-size: 24px;
    color: #666;
    margin-bottom: 10px;
    letter-spacing: 3px;
    font-weight: normal;
}

.company-name span{
    font-size: 24px;
    color: #989797;
    margin-bottom: 10px;
    letter-spacing: 3px;
    font-weight: normal;
}

.tagline {
    font-size: 25px;
    color: #555;
    margin-bottom: 40px;
    font-style: italic;
    letter-spacing: 1px;
}

.tagline span{
    font-size: 22px;
    color: #989797;
    margin-bottom: 40px;
    font-style: normal;
    letter-spacing: 1px;
}

.services {
    font-size: 16px;
    color: #a09e9e;
    line-height: 1.8;
    margin-bottom: 40px;
    letter-spacing: 0.5px;
}

.disclaimer {
    font-size: 14px;
    color: #535353;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact {
    font-size: 16px;
    color: #444;
    letter-spacing: 1px;
}

.contact a{
    text-decoration: underline;
}

.email {
    color: #555;
    text-decoration: none;
    transition: color 0.3s ease;
}

.email:hover {
    color: #777;
}

.location {
    margin-top: 5px;
    font-size: 14px;
    color: #333;
}

/* Subtle animations */
.logo {
    animation: fadeInScale 2s ease-out;
}

.company-name, .tagline {
    animation: fadeInUp 1.5s ease-out 0.5s both;
}

.services {
    animation: fadeInUp 1.5s ease-out 1s both;
}

.disclaimer, .contact {
    animation: fadeInUp 1.5s ease-out 1.5s both;
}

@keyframes fadeInScale {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive design */
@media (max-width: 768px) {
    .logo {
        font-size: 80px;
    }
    
    .company-name {
        font-size: 20px;
    }
    
    .tagline {
        font-size: 18px;
    }
    
    .services {
        font-size: 14px;
    }
    
    .container {
        padding: 20px;
    }
    
}

@media (max-width: 480px) {
    .container {
        padding: 8px;
        max-width: 100vw;
    }

    .logo img, .logo-crop img {
        max-width: 100vh;
        height: auto;
        display: block;
        margin: 0 auto;
    }

    .logo{
        position: relative;
        overflow: hidden;
        height: 200px;
        width: 100%;
    }
    
    .logo-crop{
        position: relative;
        overflow: hidden;
        width: 100%;
        margin: 0 auto;
        display: flex;
        justify-content: center;
    }
    
    .logo-crop img{
        position: absolute;
        height: 250px;
        width: auto;
        object-fit: cover;
        object-position: center;
    }

    .company-name, .company-name span {
        font-size: 1.6rem;
        letter-spacing: 1px;
    }
    .tagline, .tagline span {
        font-size: 1.4rem;
        letter-spacing: 0.5px;
    }
    .services, .disclaimer, .contact {
        font-size: 0.85rem;
        text-align: center;
        margin-bottom: 45px;
    }
    .disclaimer {
        max-width: 95vw;
    }
    .location {
        font-size: 0.9rem;
    }
}

@media (max-width: 800px) and (max-height: 500px) {
    .container {
        padding: 4px;
        max-width: 98vw;
    }
    .logo, .logo-crop {
        height: 100px;
        min-height: 80px;
    }
    .logo-crop img {
        height: 120px;
        width: auto;
        position: static;
    }
    .company-name, .company-name span {
        font-size: 1.1rem;
    }
    .tagline, .tagline span {
        font-size: 1rem;
    }
    .services, .disclaimer, .contact {
        font-size: 0.8rem;
        margin-bottom: 18px;
    }
}