@font-face {
    font-family: 'Aharonic';
    src: url('fonts/AHARONICLM-BOOK.TTF') format('truetype');
}

@font-face {
    font-family: 'Avital Web';
    src: url('fonts/AVITLWM.TTF') format('truetype');
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Aharonic', sans-serif;
    background: url('images/background.jpg') no-repeat center center fixed;
    background-size: cover;
    color: #fff;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    overflow-x: hidden;
}

.logo-area {
    margin-bottom: 50px;
}

.logo {
    max-width: 250px;
    width: 100%;
}

.client {
    width: 90%;
    max-width: 800px;
    padding: 30px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border: 2px solid #0000FF;
    color: #241262;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-sizing: border-box;
}

h1 {
    font-size: 2rem;
    color: #241262;
    font-family: 'Aharonic', sans-serif;
}

h3 {
    font-size: 1.5rem;
    color: #0000FF;
    font-family: 'Avital Web', sans-serif;
    margin-top: 10px;
}

.btn {
    padding: 18px 45px;
    font-size: 1.5rem;
    font-weight: bold;
    background-color: #0000FF;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    text-align: center;
    display: inline-block;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    margin: 20px auto;
}

.client .btn {
    display: block;
    margin: 20px auto;
}

.btn:hover {
    background-color: #241262;
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

@media screen and (max-width: 768px) {
    .client {
        padding: 25px;
    }

    h1 {
        font-size: 1.8rem;
    }

    h3 {
        font-size: 1.3rem;
    }

    .btn {
        padding: 15px 35px;
        font-size: 1.2rem;
    }

    .logo {
        max-width: 200px;
    }
}

@media screen and (max-width: 480px) {
    .client {
        padding: 15px;
    }

    h1 {
        font-size: 1.6rem;
    }

    h3 {
        font-size: 1.2rem;
    }

    .btn {
        padding: 12px 30px;
        font-size: 1rem;
    }

    .logo {
        max-width: 180px;
    }
}

.small-note {
    font-size: 0.9rem;
    color: #666;
    margin-top: 10px;
}

.alt-link {
    color: #0000FF;
    text-decoration: none;
}

.alt-link:hover {
    text-decoration: underline;
    color: #241262;
}