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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1f2937;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    min-height: 100vh;
    overflow-x: hidden;
}

/* Main container */
.container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.content {
    text-align: center;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 4rem 3rem;
    box-shadow: 
        0 20px 25px -5px rgba(0, 0, 0, 0.1),
        0 10px 10px -5px rgba(0, 0, 0, 0.04);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    max-width: 650px;
    width: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.content:hover {
    /*transform: translateY(-5px);*/
    box-shadow: 
        0 25px 30px -5px rgba(0, 0, 0, 0.15),
        0 15px 15px -5px rgba(0, 0, 0, 0.06);
}

/* Logo styles */
.logo-container {
    /*margin-bottom: 2.5rem;*/
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.logo {
    max-width: 450px;
    height: auto;
    display: inline-block;
    /*filter: drop-shadow(0 4px 6px rgba(37, 99, 235, 0.1));*/
    transition: transform 0.3s ease;
}

.logo:hover {
    /*transform: scale(1.05);*/
}

/* Company name styles */
.company-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 2rem;
    letter-spacing: -0.025em;
    background: linear-gradient(135deg, #1e293b 0%, #2563eb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

/* Contact info styles */
.contact-info {
    /*margin-top: 2rem;*/
}

.email-link {
    display: inline-block;
    font-size: 1.125rem;
    font-weight: 500;
    color: #2563eb;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border: 2px solid #2563eb;
    border-radius: 12px;
    transition: all 0.3s ease;
    background: rgba(37, 99, 235, 0.05);
    position: relative;
    overflow: hidden;
}

.email-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.email-link:hover {
    background: #2563eb;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(37, 99, 235, 0.3);
}

.email-link:hover::before {
    left: 100%;
}

.email-link:active {
    transform: translateY(0);
}

/* Responsive design */
@media (max-width: 768px) {
    .container {
        padding: 1rem;
    }
    
    .content {
        padding: 3rem 2rem;
        border-radius: 16px;
        max-width: 550px;
    }
    
    .company-name {
        font-size: 1.125rem;
        margin-bottom: 1.5rem;
    }
    
    .logo {
        max-width: 350px;
    }
    
    .email-link {
        font-size: 1rem;
        padding: 0.625rem 1.25rem;
    }
}

@media (max-width: 480px) {
    .content {
        padding: 2rem 1.5rem;
        max-width: 450px;
    }
    
    .company-name {
        font-size: 1rem;
    }
    
    .logo {
        max-width: 280px;
    }
} 