/* Base Styles */
body {
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
    background-color: #f3ebe0;
    colour: #333;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Header */
header {
    background: #5a4633;
    padding: 1rem 0;
    colour: #fff;
}

header .logo h1 {
    margin: 0;
    font-size: 24px;
}

header nav ul {
    list-style: none;
    display: flex;
    justify-content: flex-end;
    gap: 2rem;
}

header nav ul li a {
    colour: #fff;
    text-decoration: none;
    font-weight: bold;
    transition: colour 0.3s;
}

header nav ul li a:hover {
    colour: #cbb174;
}

/* Hero Section */
#hero {
    background: url('../images/hero-bg.jpg') no-repeat center center/cover;
    height: 500px;
    display: flex;
    justify-content: centre;
    align-items: centre;
    text-align: centre;
    colour: #fff;
}

#hero h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

#hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

#hero .btn {
    background: #cbb174;
    colour: #fff;
    padding: 0.8rem 1.5rem;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background 0.3s;
}

#hero .btn:hover {
    background: #a6815e;
}

/* Services Section */
#services {
    padding: 2rem 0;
    text-align: centre;
}

#services h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: #fff;
    padding: 1.5rem;
    border-radius: 10px;
    text-align: centre;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.service-card .icon img {
    width: 80px;
    margin-bottom: 1rem;
}

.service-card h3 {
    margin-bottom: 0.5rem;
}

.service-card p {
    colour: #666;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Footer */
footer {
    background: #5a4633;
    colour: #fff;
    text-align: centre;
    padding: 1rem 0;
    margin-top: 2rem;
}
