/* Global Reset / Basic Styles */
body {
    font-family: 'Courier New', Courier, monospace;
    background-color: #222222; /* Toned-down dark gray background */
    color: #66ff66; /* Softer green terminal text */
    margin: 0;
    padding: 0;
    line-height: 1.5;
    font-size: 16px;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.main-content {
    flex-grow: 1;
}

.container {
    max-width: 760px;
    margin: 0 auto; /* Center the content, no border here */
    padding: 15px;
    box-sizing: border-box;
}

/* Headings */
h1 {
    font-size: 2.2em;
    margin-top: 0;
    margin-bottom: 15px;
    text-align: left;
    text-transform: uppercase;
    color: #44ffff; /* Softer cyan for main highlights */
    border-bottom: 1px solid #44ffff;
    padding-bottom: 5px;
}

h2 {
    font-size: 1.8em;
    margin-top: 30px;
    margin-bottom: 15px;
    text-align: left;
    text-transform: uppercase;
    color: #ffff66; /* Softer yellow for section titles */
    border-bottom: 1px solid #ffff66;
    padding-bottom: 5px;
}

h3 {
    font-size: 1.4em;
    margin-top: 15px;
    margin-bottom: 8px;
    text-align: left;
    text-transform: uppercase;
    color: #44ffff; /* Softer cyan for sub-headings */
}

/* Header */
header {
    background-color: #1a1a1a; /* Slightly darker header */
    color: #66ff66;
    padding: 10px 0;
    border-bottom: 1px solid #44ff44; /* Green border for consistency */
    text-align: center;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    border: none;
    margin: 0 auto;
    padding: 0 15px;
}

header a {
    color: #66ff66;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    text-transform: uppercase;
    white-space: nowrap;
}
header a:hover {
    color: #ffff66; /* Yellow hover */
}

header nav {
    margin-top: 5px;
}
header nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

header nav a {
    font-size: 0.9em;
    color: #44ffff; /* Cyan for nav */
}
header nav a:hover {
    color: #ffff66;
}

/* Sections */
section {
    background-color: #111111; /* Very dark gray for sections */
    border: 1px solid #44ff44; /* Single green border */
    padding: 30px 20px;
    margin: 20px auto;
    max-width: 760px;
    box-sizing: border-box;
}

section p {
    margin-bottom: 1em;
    font-size: 1em;
    color: #66ff66; /* Green text */
}

section ul {
    list-style: none; /* Remove default list bullets */
    padding-left: 0; /* Remove default padding */
    margin-bottom: 1em;
}
section ul li::before {
    content: '- '; /* Add custom bullet */
    color: #ffff66; /* Yellow bullet */
    font-weight: bold;
}
section ul li {
    margin-bottom: 0.5em;
    color: #66ff66;
}

/* Buttons */
.button {
    display: inline-block;
    background-color: #000;
    color: #ffff66; /* Yellow text */
    border: 1px solid #44ff44; /* Green border */
    padding: 10px 20px;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 1em;
    cursor: pointer;
    text-align: center;
    white-space: nowrap;
    transition: background-color 0.05s, color 0.05s, border-color 0.05s;
}

.button:hover {
    background-color: #44ff44; /* Green background on hover */
    color: #000;
    border-color: #000;
}
.button:active {
    background-color: #ffff66; /* Yellow on active */
    color: #000;
    border-color: #000;
}

/* Service Cards */
.service-grid {
    display: block;
    margin-top: 20px;
}

.service-card {
    background-color: #1a1a1a; /* Darker background for cards */
    border: 1px solid #ffff66; /* Yellow border */
    padding: 15px;
    margin-bottom: 15px;
    text-align: left;
    color: #66ff66; /* Green text */
}
.service-card:last-child {
    margin-bottom: 0;
}
.service-card h3 {
    margin-top: 0;
    margin-bottom: 5px;
    text-align: left;
}
.service-card .icon-text {
    color: #ff66ff; /* Softer magenta for icon-like characters */
    font-weight: bold;
    margin-right: 8px;
}
.service-card p {
    font-size: 0.9em;
}

/* Form */
form {
    background-color: #1a1a1a; /* Dark background for form */
    border: 1px solid #44ffff; /* Cyan border */
    padding: 20px;
    margin-top: 20px;
    text-align: left;
}

form input[type="text"],
form input[type="email"],
form textarea {
    width: 100%;
    padding: 8px;
    border: 1px solid #44ff44; /* Green input border */
    background-color: #000000; /* Black input background */
    color: #ffff66; /* Yellow input text */
    margin-bottom: 10px;
    box-sizing: border-box;
    font-family: 'Courier New', Courier, monospace;
    font-size: 1em;
    resize: vertical;
}
form input[type="text"]:focus,
form input[type="email"]:focus,
form textarea:focus {
    outline: none;
    border-color: #ff66ff; /* Magenta focus outline */
    box-shadow: 0 0 0 1px #ff66ff;
}
form button[type="submit"] {
    margin-top: 10px;
    width: auto;
}

/* Footer */
footer {
    background-color: #1a1a1a;
    color: #66ff66;
    padding: 10px 0;
    text-align: center;
    border-top: 1px solid #44ff44; /* Green border for consistency */
    margin-top: 20px;
}

footer .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    border: none;
    margin: 0 auto;
    padding: 0 15px;
}

footer p {
    margin: 0;
    font-size: 0.8em;
    text-transform: uppercase;
}

footer div {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}
footer a {
    color: #44ffff; /* Cyan links */
    text-decoration: none;
    font-size: 0.8em;
    text-transform: uppercase;
}
footer a:hover {
    color: #ffff66;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    body { font-size: 14px; }
    h1 { font-size: 1.8em; }
    h2 { font-size: 1.5em; }
    h3 { font-size: 1.2em; }
    .container { padding: 10px; margin: 15px auto; }
    section { padding: 20px 10px; margin: 15px auto; }
    header .container { flex-direction: column; text-align: center; align-items: flex-start; }
    header a { text-align: left; width: 100%; margin-bottom: 5px;}
    header nav { width: 100%; }
    header nav ul { flex-direction: row; justify-content: center; gap: 8px; }
    .button { padding: 8px 15px; font-size: 0.9em; }
    .service-card { padding: 10px; }
    form { padding: 15px; }
}

@media (max-width: 480px) {
    header nav ul { flex-direction: column; align-items: flex-start; gap: 5px; }
    .service-card .icon-text { margin-right: 5px; }
}
