@import url('https://fonts.googleapis.com/css2?family=Jockey+One&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Jockey One', sans-serif;
    background-color: #000;
    color: #ccc;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

.container {
    max-width: 1200px;
    text-align: center;
    position: relative;
}

.back-button {
    position: absolute;
    top: 20px;
    left: 20px;
    display: inline-block;
    background-color: #333;
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-family: 'Jockey One', sans-serif;
    font-size: 1rem;
    transition: background-color 0.3s;
}

.back-button i {
    color: white;
    margin-right: 8px;
}

.back-button:hover {
    background-color: #555;
}

.header {
    margin-bottom: 10px;
}

.logo {
    width: 150px;
    height: auto;
    margin-bottom: 2px;
}

.services-title {
    margin-bottom: 30px;
}

.services-title h2 {
    font-family: 'Jockey One', sans-serif;
    font-size: 40px;
    color: #000;
    background-color: #ccc;
    padding: 10px;
    border-radius: 10px;
}

.services-title p {
    font-family: 'Jockey One', sans-serif;
    font-size: 24px;
    color: #ccc;
    background-color: #000;
    padding: 10px;
    display: inline-block;
    border-radius: 5px;
    margin: 10px 0;
}

.packages {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.package {
    font-family: 'Jockey One', sans-serif;
    background-color: #ccc;
    color: #000;
    padding: 20px;
    border-radius: 10px;
    width: 30%;
    opacity: 0;
    transform: translateY(50px);
    animation: slideIn 2s forwards;
    margin-bottom: 20px;
}

.package:nth-child(1) {
    animation-delay: 0.2s;
}

.package:nth-child(2) {
    animation-delay: 0.7s;
}

.package:nth-child(3) {
    animation-delay: 1.5s;
}

@keyframes slideIn {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.package:hover {
    transform: scale(1.1);
    transition: transform 0.4s ease;
}

.package h3 {
    font-family: 'Jockey One', sans-serif;
    font-size: 28px;
    color: #000;
    margin-bottom: 20px;
    padding: 10px 0;
    line-height: 1.7;
    letter-spacing: 1.5px;
    border-bottom: 2px solid #888;
    text-align: center;
}

.package ul {
    list-style-type: none;
}

.package ul li {
    font-family: 'Jockey One', sans-serif;
    font-size: 16px;
    margin-bottom: 10px;
    line-height: 1.6;
}

@media screen and (max-width: 1024px) {
    .package {
        width: 45%;
    }

    .back-button {
        font-size: 0.9rem;
    }

    .services-title h2 {
        font-size: 36px;
    }

    .services-title p {
        font-size: 22px;
    }
}

@media screen and (max-width: 768px) {
    .packages {
        flex-direction: column;
        align-items: center;
    }

    .package {
        width: 80%;
    }

    .back-button {
        font-size: 0.85rem;
    }

    .services-title h2 {
        font-size: 32px;
    }

    .services-title p {
        font-size: 20px;
    }
}

@media screen and (max-width: 480px) {
    .package {
        width: 90%;
    }

    .back-button {
        font-size: 0.8rem;
        padding: 6px 12px;
    }

    .services-title h2 {
        font-size: 28px;
    }

    .services-title p {
        font-size: 18px;
    }

    .package h3 {
        font-size: 24px;
    }

    .package ul li {
        font-size: 14px;
    }
}
