
/* General Styles */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f4;
}

h1, h2 {
    font-weight: 700;
    margin-bottom: 20px;
}

p {
    margin-bottom: 20px;
}

/* Navbar */
.navbar {
    margin-bottom: 0;
    border-radius: 0;
}

/* Hero Section */
.hero {
    background-color: #007bff;
    color: white;
    padding: 100px 0;
}

.hero h1 {
    font-size: 3rem;
    font-weight: bold;
}

.hero p {
    font-size: 1.5rem;
    font-style: italic;
}

/* About Section */
#about {
    background-color: white;
    padding: 60px 0;
}

#about h2 {
    color: #007bff;
}

#about p {
    font-size: 1.2rem;
}

/* Portfolio Section */
#portfolio {
    background-color: #f8f9fa;
}

#portfolio .card {
    margin-bottom: 20px;
}

#portfolio .card img {
    height: 200px;
    object-fit: cover;
}

/* Contact Section */
#contact {
    background-color: white;
    padding: 60px 0;
}

#contact h2 {
    color: #007bff;
}

#contact p {
    font-size: 1.1rem;
    color: #555;
}

/* Footer */
footer {
    text-align: center;
    padding: 20px;
    background-color: #007bff;
    color: white;
}
