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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #40473d;
    background-color: #f8f7f4;
}

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

/* Header */
header {
    background: #a87a64;
    color: white;
    padding: 40px 0;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 80px;
}

header h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: -1px;
    text-align: left;
    line-height: 1.1;
}

.header-logo {
    max-height: 120px;
    width: auto;
    object-fit: contain;
}

/* Who We Are Section */
.who-we-are-section {
    padding: 60px 0 30px 0;
    background: white;
    text-align: center;
}

.who-we-are-section h2 {
    font-size: 3rem;
    color: #c57f97;
    margin-bottom: 30px;
}

.who-we-are-section p {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #40473d;
}

/* Business Sections */
.businesses-section {
    padding: 30px 0 60px 0;
    background: white;
}

.businesses-section .container {
    max-width: 700px;
}

.two-column-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.business-column {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.logo-container {
    width: 100%;
    max-width: 300px;
    height: 150px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.business-logo {
    max-width: 100%;
    max-height: 100%;
    height: auto;
    object-fit: contain;
}

.services {
    margin-bottom: 20px;
    width: 100%;
}

.services h3 {
    font-size: 1.5rem;
    color: #c57f97;
    margin-bottom: 20px;
}

.services ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: left;
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #c57f97;
    border-right: 4px solid #c57f97;
}

.services li {
    padding-left: 25px;
    position: relative;
    line-height: 1.6;
}

.services li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #c57f97;
    font-weight: bold;
    font-size: 1.1rem;
}

.contact-heading {
    font-size: 1.5rem;
    color: #c57f97;
    margin-bottom: 20px;
    text-align: center;
}

.contact-section {
    margin-bottom: 30px;
    width: 100%;
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #c57f97;
    border-right: 4px solid #c57f97;
    text-align: left;
}

.contact-section p {
    margin: 8px 0;
}

.contact-link {
    color: #40473d;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.contact-link:hover {
    color: #c57f97;
}

.book-now-button {
    display: inline-block;
    background: #c57f97;
    color: white;
    padding: 15px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    margin-top: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.book-now-button:hover {
    background: #a87a64;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(197, 127, 151, 0.4);
}

/* Location Section */
.location-section {
    padding: 60px 0;
    background: #a87a64;
    color: white;
}

.location-section h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    text-align: center;
    color: white;
}

.location-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: start;
}

.location-images {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.map-placeholder,
.building-placeholder {
    background: #f8f7f4;
    border-radius: 8px;
    overflow: hidden;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-placeholder img,
.building-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.location-address {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 8px;
}

.location-address h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: white;
}

.location-address p {
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Footer */
footer {
    background: #a87a64;
    color: white;
    padding: 30px 0;
    text-align: center;
}

footer p {
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-content {
        gap: 30px;
    }

    header h1 {
        font-size: 2rem;
        text-align: left;
    }

    .header-logo {
        max-height: 90px;
    }

    .two-column-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .location-section h2 {
        font-size: 2rem;
    }

    .location-content {
        grid-template-columns: 1fr;
    }

    .location-images {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    header {
        padding: 30px 0;
    }

    .header-content {
        gap: 15px;
    }

    header h1 {
        font-size: 1.5rem;
    }

    .header-logo {
        max-height: 60px;
    }

    .businesses-section,
    .location-section {
        padding: 40px 0;
    }

    .location-section h2 {
        font-size: 1.8rem;
    }

    .logo-container {
        max-width: 250px;
    }
}
