/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body Styling */
body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    background-color: #0a192f; /* Dark Blue background */
    color: #ccd6f6; /* Light Blue text */
    line-height: 1.8;
    overflow-x: hidden;
}

/* Header Styling */
.header {
    width: 100%;
    padding: 20px 0;
    background: #112240;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.navbar {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.navbar a {
    color: #ccd6f6;
    text-decoration: none;
    font-size: 1.2rem;
    padding: 10px 15px;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.navbar a:hover {
    background-color: #64ffda; /* Light Green on hover */
    color: #0a192f; /* Dark Blue text */
}

/* About Section Styling */
.about-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px 20px;
    min-height: 100vh;
}

.container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
}

.content {
    max-width: 600px;
}

.content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #64ffda;
}

.content p {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.buttons {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.btn {
    padding: 10px 20px;
    font-size: 1.2rem;
    color: #0a192f;
    background: #64ffda;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s ease;
    cursor: pointer;
}

.btn:hover {
    background: #4db6ac; /* Slightly darker shade on hover */
}

/* Image Styling */
.image {
    max-width: 400px;
    margin-left: 20px;
}

.image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

/* Footer Styling */
.footer {
    text-align: center;
    padding: 20px;
    background: #112240;
    color: #64ffda;
}

.footer p {
    font-size: 1rem;
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
        align-items: center;
    }

    .image {
        margin-bottom: 20px;
    }

    .content h1 {
        font-size: 2.5rem;
    }

    .content p {
        font-size: 1rem;
    }

    .buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        text-align: center;
    }
}
