/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    color: #fff;
    background-color: #000;
}

/* Header & Navigation */
header {
    background: #111;
    padding: 15px 0;
    box-shadow: 0px 2px 5px rgba(255, 255, 255, 0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1000px;
    margin: auto;
    padding: 0 20px;
}

nav h1 a {
    text-decoration: none;
    color: #fff;
    font-size: 24px;
    font-weight: bold;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
    padding: 0;
}

nav ul li {
    display: inline;
}

nav ul li a {
    text-decoration: none;
    color: #fff;
    font-weight: bold;
}

/* About Section */
.about {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px 20px;
    max-width: 1000px;
    margin: auto;
}

.text-content {
    flex: 1;
    padding-right: 40px;
}

.text-content h2 {
    font-size: 32px;
    margin-bottom: 10px;
}

.text-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.buttons {
    display: flex;
    gap: 15px;
}

.btn {
    text-decoration: none;
    background: #fff;
    color: #000;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 16px;
    transition: 0.3s;
}

.btn:hover {
    background: #ccc;
}

/* Image Section */
.image-content {
    flex: 1;
    text-align: center;
}

.image-content img {
    width: 100%;
    max-width: 400px;
    border-radius: 10px;
    object-fit: cover;
}

/* Social Icons (Below Image) */
.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 15px;
}

.social-icons img {
    width: 30px;
    height: 30px;
    transition: 0.3s;
}

.social-icons img:hover {
    opacity: 0.7;
}

/* Footer */
footer {
    text-align: center;
    padding: 15px 0;
    background: #111;
    box-shadow: 0px -2px 5px rgba(255, 255, 255, 0.1);
    margin-top: 50px;
}
