/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

/* Header */
header {
    background-color: #1f1f1f;
    color: white;
    padding: 20px;
    text-align: center;
}

nav a {
    color: white;
    text-decoration: none;
    margin: 0 15px;
    font-weight: bold;
}

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

/* Layout Sections */
.intro-section,
.about-section {
    padding: 40px;
    text-align: center;
}

/* Image Placeholder Box */
.image-placeholder {
    width: 300px;
    height: 200px;
    margin: 20px auto;
    border: 2px dashed #555;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #555;
}

/* About Page Image */
.profile-image img {
    max-width: 260px;
    height: auto;
    border-radius: 10px;
    margin-bottom: 20px;
}

/* Footer */
footer {
    background-color: #1f1f1f;
    color: white;
    padding: 15px;
    text-align: center;
    margin-top: 40px;
}
