* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background: linear-gradient(135deg, #f5f7fa 0%, #e8ebf5 100%);
    color: #333;
    min-height: 100vh;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow-y: auto;
}

#particles-background {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
}

.container {
    max-width: 800px;
    margin: auto;
    background-color: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    animation: fadeIn 0.8s ease-out;
    flex-shrink: 0;
    width: calc(100% - 40px);
}

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

header {
    background: linear-gradient(to right, rgb(253, 174, 2), rgb(13, 26, 219));
    color: white;
    padding: 20px;
    position: relative;
    box-shadow: 0 4px 12px rgba(236, 72, 152, 0.2);
}

.back-button {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.3s ease;
}

.back-button:hover {
    transform: translateY(-50%) scale(1.15);
}

.back-button a {
    color: white;
    text-decoration: none;
    font-size: 1.5rem;
}

h1 {
    text-align: center;
    font-size: 1.6rem;
    margin-left: 30px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.icon-bath {
    display: inline-block;
    margin-right: 8px;
}

.content {
    padding: 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: stretch;
}

.dog-image {
    width: 40%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.dog-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.main-image {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 8px;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.main-image:hover {
    transform: scale(1.05);
}

.service-info {
    width: calc(60% - 30px);
    animation: slideIn 0.6s ease-out 0.2s both;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.service-description {
    margin-bottom: 25px;
    line-height: 1.7;
    background-color: #fbfbfb;
    padding: 15px;
    border-radius: 8px;
    border-left: 4px solid rgb(233, 145, 14);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

h2 {
    color: rgb(230, 190, 14);
    margin: 25px 0 15px;
    font-size: 1.4rem;
    font-weight: 600;
    position: relative;
    padding-bottom: 8px;
}

h2:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: rgb(248, 190, 1);
    border-radius: 2px;
}

ul {
    list-style-type: none;
    margin-left: 10px;
}

li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 25px;
    line-height: 1.5;
    transition: transform 0.2s ease;
}

li:hover {
    transform: translateX(5px);
}

li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: rgb(6, 21, 230);
    font-size: 1.2rem;
}

.price-item {
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 8px 12px;
    border-radius: 6px;
    margin-bottom: 8px;
    background-color: #ffffff;
    border: 1px solid #eaeaea;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.price-item:hover {
    background-color: #fef2f7;
    border-color: rgb(236, 72, 152, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(236, 72, 152, 0.1);
}

.price {
    font-weight: bold;
    color: #0400e9;
    float: right;
}

.price-note {
    font-size: 0.9rem;
    font-style: italic;
    color: #666;
    margin-top: 15px;
    padding: 10px;
    background-color: #f8f9fa;
    border-radius: 6px;
}

.booking {
    margin: 40px 0;
    text-align: center;
    animation: bounceIn 1s ease 0.4s both;
}

@keyframes bounceIn {
    0% {
        transform: scale(0.8);
        opacity: 0;
    }
    70% {
        transform: scale(1.05);
        opacity: 1;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

#book-button {
    background: linear-gradient(to right, rgb(233, 191, 6), rgb(231, 40, 15));
    color: white;
    border: none;
    padding: 14px 35px;
    font-size: 1.1rem;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(236, 72, 152, 0.4);
    font-weight: 600;
    letter-spacing: 0.5px;
}

#book-button:hover {
    background: linear-gradient(to right, rgb(224, 22, 15), rgb(15, 18, 216));
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(236, 72, 152, 0.5);
}

#book-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(236, 72, 152, 0.4);
}

.text-pink-500 {
    color: white;
    font-size: 1.2rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .container {
        margin: 10px auto;
        width: calc(100% - 20px);
    }

    .content {
        padding: 20px;
        gap: 20px;
        flex-direction: column;
    }

    .dog-image, .service-info {
        width: 100%;
        margin-left: 0;
    }

    .dog-image {
        margin-bottom: 20px;
    }

    .main-image {
        height: auto;
        object-fit: contain;
    }

    h1 {
        font-size: 1.3rem;
    }

    h2 {
        font-size: 1.2rem;
    }

    #book-button {
        padding: 12px 25px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .content {
        padding: 15px;
    }

    h1 {
        font-size: 1.1rem;
    }

    h2 {
        font-size: 1.2rem;
    }
}