:root {
    --primary: #0a0a0a;
    --secondary: #707070;
    --accent: #5e5e5e;
    --background: #ffffff;
    --highlight: #f3f3f3;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--background);
    color: var(--primary);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 1.6;
    padding: 2rem;
}

.container {
    max-width: 900px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.logo {
    margin-bottom: 4rem;
    opacity: 0;
    animation: fadeIn 0.8s ease forwards;
}

.logo h1 {
    padding-left: 0.3em;
    font-weight: 700;
    font-size: 1.8rem;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: var(--primary);
    background-color: #ADD1FD;
    user-select: none;
}

.content {
    margin-bottom: 4rem;
    max-width: 600px;
    opacity: 0;
    animation: fadeIn 0.8s ease 0.3s forwards;
}

.content h2 {
    font-weight: 600;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.content p {
    font-weight: 400;
    font-size: 1.1rem;
    color: var(--secondary);
    line-height: 1.8;
}

.contact {
    margin-bottom: 4rem;
    opacity: 0;
    animation: fadeIn 0.8s ease 0.6s forwards;
}

.contact p {
    font-size: 1rem;
    color: var(--secondary);
    margin-bottom: 1.2rem;
}

.email-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--primary);
    color: var(--background);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 1px;
    border-radius: 50px;
    transition: var(--transition);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.email-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
    background-color: #000;
}

.services {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    margin-bottom: 5rem;
    opacity: 0;
    animation: fadeIn 0.8s ease 0.9s forwards;
}

.service {
    position: relative;
    padding: 0 0.5rem;
}

.service span {
    font-size: 0.95rem;
    color: var(--secondary);
    font-weight: 400;
    transition: var(--transition);
}

.service::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--primary);
    transition: var(--transition);
}

.service:hover::after {
    width: 100%;
}

.service:hover span {
    color: var(--primary);
}

.footer {
    margin-top: auto;
    opacity: 0;
    animation: fadeIn 0.8s ease 1.2s forwards;
}

.footer p {
    font-size: 0.85rem;
    color: var(--secondary);
    font-weight: 400;
}

.social-links {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.social-links a {
    color: var(--secondary);
    font-size: 1.1rem;
    transition: var(--transition);
}

.social-links a:hover {
    color: var(--primary);
}

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

@media (max-width: 768px) {
    .services {
        flex-direction: column;
        gap: 1.5rem;
    }

    .content h2 {
        font-size: 2rem;
    }

    .logo h1 {
        font-size: 1.5rem;
        letter-spacing: 4px;
    }
}