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

body {
    font-family: 'Roboto', sans-serif;
    color: #333;
}

/* Header Styles */
header {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1000;
}



.logo {
    text-align: center;
    padding: 20px 0;
}

.logo h1 {
    font-size: 48px;
    /* Increased size for prominence */
    font-weight: bold;
    color: white;
    /* Changed to white for better contrast on dark bg if needed, or keep dark if header is white */
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    /* Added shadow for readability */
}

/* Hero Section Styles */
.hero-section {
    height: 100vh;
    background-color: #2c3e50;
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('backery.png');
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
}

.hero-content {
    max-width: 800px;
    padding: 20px;
}

.hero-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #fca311;
    /* Orange/Gold color for the heading */
    font-weight: 700;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #eee;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.btn-whatsapp-hero {
    background-color: #25d366;
    color: white;
    padding: 12px 25px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 4px;
    font-size: 16px;
    text-transform: uppercase;
}

.btn-phone {
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
    display: flex;
    align-items: center;
}

.btn-phone i {
    margin-right: 10px;
}

/* Service Section Styles */
.service-section {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f0f4f8;
    /* Light pastel blue-ish background similar to reference */
    padding: 80px 10%;
    gap: 50px;
    flex-wrap: wrap;
    /* For responsiveness */
}

.service-content {
    flex: 1;
    min-width: 300px;
}

.service-content h2 {
    font-size: 32px;
    color: #0d1b2a;
    /* Dark blue */
    margin-bottom: 20px;
    font-weight: 700;
}

.service-content p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 30px;
}

.service-buttons {
    display: flex;
    align-items: center;
    gap: 20px;
}

.btn-whatsapp-service {
    background-color: #25d366;
    color: white;
    padding: 10px 25px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 4px;
    text-transform: uppercase;
    font-size: 14px;
}

.btn-phone-service {
    color: #333;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    display: flex;
    align-items: center;
}

.btn-phone-service i {
    margin-right: 10px;
    color: #ff6b35;
}

.service-image {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
    overflow: hidden;
    /* Key for cropping */
    border-radius: 12px;
    /* Smooth corners */
    max-height: 600px;
    /* Increased to show more of the image (knees) */
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Cover the container */
    object-position: center;
    transform: scale(1.1);
    /* Reduced zoom to show more context */
    border-radius: 12px;
}

@media (max-width: 768px) {
    .service-section {
        flex-direction: column-reverse;
        /* Image on top on mobile if desired, or standard column */
        text-align: center;
        padding: 50px 20px;
    }

    .service-buttons {
        justify-content: center;
    }
}

/* Footer Styles */
footer {
    background-color: #0d1b2a;
    /* Dark background */
    color: white;
    padding: 60px 10% 20px;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column {
    flex: 1;
    min-width: 250px;
}

.footer-column h3 {
    font-size: 20px;
    margin-bottom: 25px;
    font-weight: 700;
    color: white;
}

.footer-phone {
    display: block;
    color: #fca311;
    /* Orange accent */
    font-size: 22px;
    font-weight: bold;
    text-decoration: none;
    margin-bottom: 20px;
}

.footer-phone i {
    margin-right: 10px;
}

.btn-whatsapp-footer {
    display: inline-block;
    background-color: #25d366;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 4px;
    text-transform: uppercase;
    font-size: 14px;
    margin-top: 10px;
    width: 100%;
    text-align: center;
}

.hours-list {
    list-style: none;
}

.hours-list li {
    font-size: 16px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    color: #ccc;
}

.hours-list li i {
    margin-right: 15px;
    color: #fca311;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    font-size: 12px;
    color: #777;
}

@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
    }

    .footer-column {
        text-align: center;
    }

    .hours-list li {
        justify-content: center;
    }
}