* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #f5f5f5;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo h2 {
    font-size: 24px;
    color: #4CAF50;
    display: inkine-block;
}

.paw-icon {
    height: 40px;
    vertical-align: middle;
    margin-left: 10px;
}

.contact {
    text-align: right;
}

.contact p {
    margin: 5px 0;
}

.phone-number, .email a {
    font-size: 18px;
    color: #4CAF50;
    font-weight: bold;
}

.content {
    text-align: center;
}

.images {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.cat-image, .dog-image {
    width: 48%;
    height: auto;
    border-radius: 10px;
}

h1 {
    font-size: 32px;
    color: #4CAF50;
    margin-bottom: 10px;
}

.tagline {
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
}

.services {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.services li {
    font-size: 18px;
    color: #333;
    padding-left: 25px;
    margin-bottom: 8px;
    position: relative;
}

.services li::before {
    content: '\2713';
    color: #4CAF50;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
    transform: translateY(25%);
}

.services h2 {
    font-size: 28px;
    color: #4CAF50;
    margin-bottom: 20px;
}

.services ul {
    list-style: none;
    text-align: left;
}
