body {
    font-family: 'Manrope', Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #faf7f3;
    color: #333;
    line-height: 1.6;
}

header {
    background-color: #744425;
    color: white;
    padding: 1rem;
    position: relative;
}

.logo {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
}

.logo img {
    height: 50px;
    width: auto;
}

nav {
    display: flex;
    justify-content: center;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

nav a {
    color: white;
    text-decoration: none;
    padding: 0.5rem;
}

nav a:hover {
    color: #ca9d69;
}

.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    margin-left: auto;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 5px 0;
    transition: 0.3s;
}

main {
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    min-height: 60vh;
}

section {
    background-color: #fff;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

#hero {
    text-align: center;
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

#hero img {
    max-width: 200px;
    border-radius: 50%;
    margin-top: 1rem;
}

h1, h2 {
    color: #341b0d;
}

ul {
    list-style: none;
    padding: 0;
}

li {
    margin-bottom: 0.5rem;
}

footer {
    background-color: #744425;
    color: white;
    text-align: center;
    padding: 1rem;
    margin-top: 2rem;
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
    }
    nav ul {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #744425;
        padding: 1rem 0;
        box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    }
    nav ul.show {
        display: flex;
    }
    nav li {
        margin: 0.5rem 0;
    }
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

.tile {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #333;
    background-color: #fff;
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid #ddd;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: transform 0.2s;
    max-width: 250px;
}

.tile:hover {
    transform: translateY(-5px);
}

.tile img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-bottom: 0.5rem;
}

.tile span {
    text-align: center;
    font-weight: bold;
}

@media (min-width: 1200px) {
    .tile {
        flex-direction: row;
        align-items: center;
        text-align: left;
    }
    .tile img {
        margin-bottom: 0;
        margin-right: 1rem;
    }
    .tile span {
        text-align: left;
    }
}

@media (max-width: 480px) {
    .tile {
        padding: 0.5rem;
    }
    .tile img {
        width: 60px;
        height: 60px;
    }
    .tile span {
        font-size: 0.9rem;
    }
}

.product-tile {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    padding: 1rem;
    margin-bottom: 1rem;
    transition: transform 0.2s;
}

.product-tile:hover {
    transform: translateY(-2px);
}

.product-tile img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-right: 1rem;
    flex-shrink: 0;
}

.product-tile .content {
    flex: 1;
}

.product-tile h3 {
    color: #341b0d;
    margin-top: 0;
}

.product-tile ul {
    margin: 0.5rem 0;
    padding-left: 1.5rem;
}

.product-tile li {
    margin-bottom: 0.25rem;
}

@media (max-width: 768px) {
    .product-tile {
        flex-direction: column;
        align-items: center;
        padding: 1rem 5%;
    }
    .product-tile .content {
        text-align: left;
    }
    .product-tile h3 {
        text-align: center;
    }
    .product-tile img {
        margin-right: 0;
        margin-bottom: 0.5rem;
    }
}