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

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: linear-gradient(135deg, #8BA2E9 0%, #D0D5E5 50%, #E6E9CC 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    color: #333;
}

.container {
    width: 100%;
    max-width: 650px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.card {
    background: linear-gradient(135deg, #1E3FA6 0%, #7D7D7A 100%);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 64px 48px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    text-align: center;
    width: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.2);
}

.logo {
    width: 160px;
    height: 160px;
    margin: 0 auto 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeInDown 0.6s ease-out;
}

.logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

h1 {
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
    animation: fadeInDown 0.6s ease-out 0.1s backwards;
}

.tagline {
    font-size: 16px;
    color: #D96F4D;
    font-weight: 500;
    margin-bottom: 28px;
    animation: fadeInDown 0.6s ease-out 0.2s backwards;
}

.about {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 36px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInDown 0.6s ease-out 0.3s backwards;
}

.section {
    margin-bottom: 36px;
    animation: fadeInDown 0.6s ease-out 0.4s backwards;
}

.section:last-of-type {
    margin-bottom: 0;
}

h2 {
    font-size: 16px;
    font-weight: 600;
    color: #D96F4D;
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.language-pairs {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.language-pairs p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
}

.services-line {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
}

.contact-icons {
    display: flex;
    gap: 16px;
    justify-content: center;
    animation: fadeInDown 0.6s ease-out 0.5s backwards;
}

.contact-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.25);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.contact-icon:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.35);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.contact-icon svg {
    flex-shrink: 0;
}

footer {
    color: rgba(255, 255, 255, 0.9);
    font-size: 12px;
    text-align: center;
    animation: fadeInDown 0.6s ease-out 0.6s backwards;
}

footer p {
    text-shadow: none;
}

@media (max-width: 480px) {
    .card {
        padding: 40px 28px;
    }

    h1 {
        font-size: 26px;
    }

    .tagline {
        font-size: 14px;
    }

    .about {
        font-size: 14px;
    }

    .logo {
        width: 120px;
        height: 120px;
    }

    h2 {
        font-size: 15px;
    }

    .language-pairs p,
    .services-line {
        font-size: 14px;
    }

    .contact-icon {
        width: 48px;
        height: 48px;
    }
}
