
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background: #000;
    color: #fff;
}

header {
    background: #001f3f;
    color: #fff;
    padding: 1rem 0;
    text-align: center;
}

h1 {
    margin: 0;
}

main {
    padding: 1rem;
}

section {
    margin-bottom: 1rem;
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    display: flex;
    gap: 1rem;
    align-items: center;
}

/* Use IDs for specific section backgrounds */
section#about {
    background: #333;
}

section#projects {
    background: #000;
}

section#contact {
    background: #333;
}

.content {
    flex: 1;
}

.image {
    flex: 1;
}

.project-image {
    background-color: transparent;
}

img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.form-group {
    margin-bottom: 1rem;
}

label {
    display: block;
    margin-bottom: 0.5rem;
}

input[type="text"],
input[type="email"],
textarea {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid #ccc;
    border-radius: 4px;
}

button, .play-store-link {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: #0074D9;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
    font-size: 1rem;
    text-align: center;
}

button:hover, .play-store-link:hover {
    background: #001f3f;
}

@media (max-width: 768px) {
    section {
        flex-direction: column;
    }
}
