* {
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    transition: all 100ms linear;
    box-sizing: border-box;
  }

body {
    margin: 0;
    padding: 0;
}

.landing-header {
    background: #2d3436;
    padding: 1rem;
}

.landing-header nav {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    color: #fff;
    font-size: 2rem;
    margin: 0;
    cursor: pointer;
}

.hero {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), 
                url('Images/moniepoint\ pos.png');
    background-size: cover;
    background-position: center;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

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

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.cta-button {
    display: inline-block;
    background: #0984e3;
    color: white;
    padding: 1rem 2rem;
    border-radius: 5px;
    text-decoration: none;
    transition: background 0.3s ease;
}

.cta-button:hover {
    background: #0873c4;
}

.landing-footer {
    background: #2d3436;
    color: white;
    text-align: center;
    padding: 1rem;
    margin-top: 4rem;
}