/* General Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    background-color: #f9fafb;
    color: #333;
    padding-top: 60px;
}

/* Header and Navigation */
.header {
    background-color: #ffffff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.menu-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #00695c;
}

.menu-links a {
    margin-left: 1.5rem;
    text-decoration: none;
    color: #444;
    transition: color 0.3s ease;
}

.menu-links a:hover {
    color: #00695c;
}

/* Hero Section */
.cover {
    background: linear-gradient(rgba(0, 105, 92, 0.6), rgba(0, 105, 92, 0.6)), url('http://www.wondercraft.co.za/images/cover_image.jpeg') no-repeat center center/cover;
    text-align: center;
    padding: 100px 20px;
    color: #fff;
}

.cover-title {
    font-size: 3rem;
    font-weight: 700;
}

/* Content Sections */
.content {
    max-width: 900px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #004d40;
}

.content p {
    margin-bottom: 1rem;
    font-size: 1rem;
}

/* Feature Section */
.feature {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: center;
    margin-top: 2rem;
}

.feature-image {
    max-width: 400px;
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.feature-text {
    flex: 1;
    min-width: 250px;
}

.feature-text h3 {
    color: #00796b;
    margin-bottom: 0.5rem;
}

/* Footer */
.footer {
    background-color: #004d40;
    colour: #fff;
    text-align: centre;
    padding: 1rem 0;
    font-size: 0.9rem;
}