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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #f8f9fa;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
}

.container {
    text-align: center;
    max-width: 800px;
    padding: 2rem;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    position: relative;
}

.language-toggle {
    position: absolute;
    top: 20px;
    right: 20px;
}

#languageBtn {
    background: #d2691e;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(210, 105, 30, 0.3);
}

#languageBtn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(210, 105, 30, 0.4);
    background: #b8860b;
}

.content {
    margin-top: 2rem;
}

.logo-container {
    margin-bottom: 3rem;
}

.logo {
    max-width: 200px;
    height: auto;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
    transition: transform 0.3s ease;
}

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

.text-content h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #d2691e;
    margin-bottom: 1rem;
}

.text-content h2 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #8b4513;
    margin-bottom: 1.5rem;
}

.text-content p {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

#tagline {
    font-weight: 600;
    color: #8b4513;
    font-size: 1.3rem;
}

#description {
    font-size: 1.1rem;
    color: #666;
    font-style: italic;
}

.contact-info {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e0e0e0;
}

#contactText {
    font-size: 1rem;
    color: #666;
    margin-bottom: 0.5rem;
}

#emailLink {
    color: #d2691e;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

#emailLink:hover {
    color: #b8860b;
    text-decoration: underline;
}

/* Responsive design */
@media (max-width: 768px) {
    .container {
        margin: 1rem;
        padding: 1.5rem;
    }
    
    .text-content h1 {
        font-size: 2.5rem;
    }
    
    .text-content h2 {
        font-size: 1.5rem;
    }
    
    .text-content p {
        font-size: 1rem;
    }
    
    .logo {
        max-width: 150px;
    }
    
    .language-toggle {
        position: relative;
        top: 0;
        right: 0;
        margin-bottom: 1rem;
    }
}

@media (max-width: 480px) {
    .text-content h1 {
        font-size: 2rem;
    }
    
    .text-content h2 {
        font-size: 1.3rem;
    }
    
    .logo {
        max-width: 120px;
    }
} 