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

body {
    font-family: 'Press Start 2P', system-ui; /* Pixel-like Google Font */
    font-weight: 400;
    font-style: normal;
    background-color: black;
    color: white;
}

header {
    display: flex;
    justify-content: space-between;
    padding: 10px 20px;
    background: #111;
}

.logo {
    color: limegreen;
    font-size: 24px;
}

nav ul {
    list-style: none;
    display: flex;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    color: cyan;
    text-decoration: none;
}

#main-banner {
    text-align: center;
    padding: 50px 10px;
    background: linear-gradient(to right, magenta, blue);
    color: white;
}

section {
    padding: 20px;
    border-top: 2px solid grey;
}

footer {
    text-align: center;
    padding: 10px 0;
    background: #222;
    color: grey;
}

footer a {
    color: limegreen;
}
#columns {
    display: flex;            /* Enables Flexbox */
    justify-content: space-between; /* Distributes space evenly between the columns */
    padding: 20px;
}

.column {
    flex: 1;                  /* Ensures each column takes equal space */
    padding: 10px;            /* Padding inside each column */
    border: 1px solid #ccc;   /* Optional border for clarity */
    margin: 0 10px;           /* Space between columns */
}

.service {
    margin-top: 10px;         /* Space above each service section */
    background: navy;     /* Light background for service sections */
    padding: 10px;            /* Padding inside service sections */
    border: 1px solid #ddd;   /* Border for service sections */
}



