* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
}

body {
    background-color: #1f1f1f;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 20px;
    font-family: Arial, Helvetica, sans-serif;
    color: #ffcc00;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    max-width: 900px;
    width: 100%;
}

h1 {
    font-size: clamp(2.5rem, 6vw + 1rem, 5rem);
    font-weight: bold;
    color: #ffcc00;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.contact-title {
    margin-top: 2rem;
}

.arrows-container {
    position: relative;
    width: 150px;
    height: 60px;
    margin: 0px auto 40px auto;
}

.arrow {
    position: absolute;
    font-size: 40px;
    color: #ffcc00;
    opacity: 0;
    animation: bounce 1.5s ease-in-out infinite;
}

.arrow-1 {
    left: 0%;
    transform: translateX(0%);
    animation-delay: 0s;
}

.arrow-2 {
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 0.2s;
}

.arrow-3 {
    left: 100%;
    transform: translateX(-100%); 
    animation-delay: 0.4s;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0) scale(1);
        opacity: 0;
    }
    20%, 80% {
        transform: translateY(20px) scale(1.1);
        opacity: 1;
    }
}

p.tel,
p.email {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #ffcc00;
}

p.tel a,
p.email a {
    color: #ffd700;
    transition: color 0.3s ease;
}

p.tel a:hover,
p.email a:hover {
    color: #fff;
}

@media (max-width: 600px) {
    .arrows-container {
        width: 100px;
        height: 50px;
        margin: 15px auto 30px auto;
    }

    .arrow {
        font-size: 25px;
    }

    .arrow-1 { left: 0%; transform: translateX(0%); }
    .arrow-2 { left: 50%; transform: translateX(-50%); }
    .arrow-3 { left: 100%; transform: translateX(-100%); }

    p.tel,
    p.email {
        font-size: 1.2rem;
    }
}

@media (max-width: 400px) {
    h1 {
        font-size: clamp(2rem, 8vw, 4rem);
    }
    .arrows-container {
        width: 80px;
    }
    .arrow {
        font-size: 20px;
    }
}