/* General Body Styles */
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #121212;
    color: #e0e0e0;
    line-height: 1.6;
}

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

/* Header */
header {
    text-align: center;
    padding: 40px 20px;
    background-color: #1f1f1f;
    border-bottom: 1px solid #333;
}

.logo {
    max-width: 150px;
    margin-bottom: 20px;
}

header h1 {
    margin: 0;
    font-size: 2.5em;
    color: #ffffff;
    font-weight: 700;
}

.tagline {
    font-size: 1.2em;
    color: #a0a0a0;
    margin-top: 10px;
}

/* Sections */
section {
    padding: 60px 20px;
    border-bottom: 1px solid #252525;
}

section:last-of-type {
    border-bottom: none;
}

h2 {
    text-align: center;
    font-size: 2em;
    color: #ffffff;
    margin-bottom: 40px;
    font-weight: 600;
}

/* About Us Section */
#about p {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1em;
}

/* Vision & Market Section */
.vision-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
}

@media (min-width: 768px) {
    .vision-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.vision-item h3 {
    font-size: 1.5em;
    color: #ffffff;
    margin-bottom: 15px;
}

/* Portfolio Section */
.portfolio-note {
    text-align: center;
    font-style: italic;
    color: #a0a0a0;
    margin-bottom: 40px;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
}

@media (min-width: 768px) {
    .portfolio-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.portfolio-item {
    background-color: #1f1f1f;
    padding: 30px;
    border-radius: 8px;
    border: 1px solid #333;
    text-align: left;
}

.portfolio-item h3 {
    font-size: 1.5em;
    color: #ffffff;
    margin-bottom: 15px;
    text-align: center;
}

.portfolio-item ul {
    padding-left: 20px;
    list-style-position: outside;
}

.portfolio-item li {
    margin-bottom: 15px;
}

.early-development {
    font-style: italic;
    text-align: center;
    margin-top: 20px;
    color: #a0a0a0;
}



/* Contact & Legal Section */
#contact {
    text-align: center;
}

#contact p {
    margin: 10px 0;
    font-size: 1.1em;
}

#contact a {
    color: #4e9af1;
    text-decoration: none;
}

#contact a:hover {
    text-decoration: underline;
}

/* Footer */
footer {
    background-color: #1f1f1f;
    color: #a0a0a0;
    text-align: center;
    padding: 20px;
    font-size: 0.9em;
}

footer a {
    color: #4e9af1;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

footer p {
    margin: 5px 0;
}
