.catsitting-container {
    background-color: #fef2cf; /* Same color as the header background */
    padding: 20px;
    border-radius: 0; /* Optional: Removes rounded corners */
    width: 100%; /* Makes the container take full width */
    margin: 0 auto; /* Centers the container */
}

/* .catsitting-container {
    background-color: #fef2cf; 
    padding: 20px;
    width: 100%;
    margin: 0 auto;
} */

.service-card {
    background-color: #ffd2d2; /* Light pink background */
    color: #333;
    border-radius: 15px; /* Rounded corners */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-title {
    font-weight: bold;
    font-size: 1.25rem;
    margin-bottom: 15px;
    color: #333;
}

.service-card p {
    color: #555;
    font-size: 1rem;
    margin-bottom: 20px;
}

.price-tag {
    background-color: #d7c0ef; /* Purple color for the price tag */
    color: #444444;
    font-weight: bold;
    border-radius: 20px;
    padding: 10px 20px;
    text-transform: uppercase;
    font-size: 0.9rem;
    margin-top: auto;
}

.booking-form-container {
    background-color: #ffd2d2; /* Background color */
    padding: 30px;
    border-radius: 10px;
    width: 100%;
    max-width: 500px; /* Set a max-width to make it narrower */
    margin: 0 auto; /* Center the container */
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    font-family: 'Montserrat', sans-serif;
}

.booking-form-container h3 {
    font-weight: bold;
    font-size: 2rem;
    margin-bottom: 20px;
}

.form-control {
    border-radius: 5px; /* Slight rounding on input fields */
    font-weight: bold; /* Bold text in input fields */
    color: #333;
    background-color: #f0f8ff; /* Light background color for inputs */
}

.booking-form-container .btn-outline-primary {
    width: 100%;
    max-width: 300px;
    font-weight: bold;
    color: #0044cc;
    border-color: #0044cc;
}

.booking-form-container .btn-outline-primary:hover {
    background-color: #0044cc;
    color: #fff;
}

h3{
    font-family: 'Gagalin', sans-serif;
}

.emphasis-button {
    background-color: #d7c0ef; /* Light purple background */
    color: #333; /* Text color */
    padding: 10px 20px;
    border-radius: 30px; /* Rounded corners for a button effect */
    font-weight: bold;
    font-size: 1rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Subtle shadow */
    display: inline-block;
    text-align: center;
    transition: background-color 0.3s ease, transform 0.2s ease;
    cursor: pointer;
}

.emphasis-button:hover {
    background-color: #c2a7f2; /* Darker purple on hover */
    transform: translateY(-2px); /* Slight lift on hover */
}

.emphasis-button span {
    text-transform: uppercase;
}
p{
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 14px;

}
