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

body {
    font-family: 'Roboto', sans-serif;
    background-color: #121212; /* Dark background similar to the reference site */
    color: #ffffff; /* White text for contrast */
    line-height: 1.6;
}

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

.header {
    text-align: center;
    margin-bottom: 40px;
}

.header h1 {
    font-size: 2.5em;
    color: #00FFAB; /* Vibrant green accent color */
}

.header p {
    font-size: 1.2em;
    color: #AAAAAA; /* Lighter gray for the subtitle */
}

.main-content {
    margin-bottom: 40px;
}

.services, .technologies {
    margin-bottom: 20px;
}

.services h2, .technologies h2 {
    font-size: 1.8em;
    color: #00FFAB; /* Use the same vibrant color for headings */
    margin-bottom: 10px;
}

ul {
    list-style: none;
    padding: 0;
}

ul li {
    background: #1E1E1E; /* Darker background for list items */
    margin-bottom: 10px;
    padding: 10px;
    border-left: 5px solid #00FFAB; /* Accent color border */
}

.footer {
    text-align: center;
    padding: 10px;
    background: #1E1E1E; /* Footer background */
    color: #AAAAAA; /* Lighter text color */
}
