:root {
    --text-primary: #333333;
    --text-secondary: #555555;
    --link-color: #1a9fb9;
    --font-family: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-family);
    color: var(--text-primary);
    background-color: #fafafa;
    background-image: url('assets/mobile_bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    min-height: 100vh;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

@media (min-width: 768px) {
    body {
        background-image: url('assets/desktop_bg.jpg');
    }
}

.content-wrapper {
    padding: 20px 40px;
    max-width: 600px;
    width: 100%;
}

@media (min-width: 768px) {
    .content-wrapper {
        margin-left: 10%;
    }
}

.header {
    position: absolute;
    top: 40px;
    left: 40px;
    margin: 0;
}

@media (min-width: 768px) {
    .header {
        position: static;
        margin-bottom: 100px;
        margin-top: -140px;
    }
}

.logo {
    max-width: 140px;
    height: auto;
}

.title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #313131;
}

.description {
    font-size: 1.125rem;
    line-height: 1.5;
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 2.5rem;
}

.contact-info h2 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #313131;
}

.contact-item {
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
    font-weight: 600;
}

.contact-item .label {
    color: #313131;
    display: inline-block;
    width: 70px;
}

.link {
    color: var(--link-color);
    text-decoration: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
    display: inline-block;
}

.link:hover {
    opacity: 0.8;
}

.social-media {
    margin-top: 1rem;
    display: flex;
    align-items: center;
    font-size: 1.125rem;
    font-weight: 600;
}

.social-media .label {
    color: #313131;
    margin-right: 10px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    color: var(--link-color);
    transition: transform 0.2s ease, opacity 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-icon:hover {
    transform: translateY(-2px);
    opacity: 0.8;
}

.social-icon svg {
    width: 20px;
    height: 20px;
}

/* Animations */
.animate-fade-in-up {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: var(--delay, 0s);
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}