:root {
    --primary-color: #333;
    --secondary-color: #666;
    --accent-color: #0066cc;
    --background-color: #fff;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Georgia', serif;
    background-image: url('../images/index-background.jpg');
    background-size: cover;
    background-attachment: fixed;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

header {
    width: 100%;
    background: transparent;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo img {
    height: 150px;
}

.top-nav {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.contact-btn {
    background: #333;
    color: white;
    padding: 0.5rem 1rem;
    text-decoration: none;
    border-radius: 5px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding: 2rem 0;
}

.service-card {
    background: rgba(255, 255, 255, 0.675);
    padding: 1rem;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.service-card img {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 5px;
    object-fit: cover;
    display: block;
    margin: 0 auto;
}

.service-card h2 {
    margin: 1rem 0;
    color: var(--primary-color);
}

.price {
    font-weight: bold;
    color: var(--secondary-color);
}

.description {
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Link styles grouped together */
.visit-link,
.contact-link,
.more-info-link {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    margin-top: 1rem;
}