 /* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background-color: #f4f4f9;
    color: #333;
    line-height: 1.6;
}

h1, h2 {
    text-align: center;
    color: #222;
    margin-bottom: 20px;
}

p {
    text-align: center;
    font-size: 18px;
    margin-bottom: 40px;
    color: #555;
}

/* Header Styles */
header {
    background-color: #222;
    padding: 20px;
}

header nav ul {
    display: flex;
    justify-content: center;
    gap: 30px;
}

header nav ul li {
    list-style-type: none;
}

header nav ul li a {
    color: white;
    font-size: 18px;
    padding: 8px 16px;
}

header nav ul li a.active {
    background-color: #f45b69;
    border-radius: 4px;
}

/* Hero Section */
.portfolio-hero {
    background: url('hero-bg.jpg') center/cover no-repeat;
    color: white;
    padding: 100px 20px;
    text-align: center;
}

.portfolio-hero h1 {
    font-size: 48px;
}

.portfolio-hero p {
    font-size: 20px;
    margin-top: 10px;
}

/* Portfolio Gallery Section */
.portfolio-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding: 40px;
}

.gallery-item {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    text-align: center;
}

.gallery-item img {
    width: 100%;
    height: auto;
    border-bottom: 2px solid #f45b69;
}

.gallery-item p {
    padding: 15px;
    font-size: 16px;
}

/* Testimonials Section */
.testimonials {
    background-color: #f7f7f7;
    padding: 60px 20px;
}

.testimonials h2 {
    font-size: 32px;
    margin-bottom: 40px;
}

.testimonial {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    border-radius: 8px;
    background-color: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.testimonial p {
    text-align: center;
    font-size: 18px;
}

/* Footer Section */
footer {
    background-color: #222;
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: 40px;
}

footer .social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 10px;
}

footer .social-links li {
    display: inline-block;
}

footer .social-links li a {
    color: white;
    font-size: 16px;
}

footer p {
    font-size: 14px;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .portfolio-hero h1 {
        font-size: 36px;
    }

    .portfolio-hero p {
        font-size: 18px;
    }

    header nav ul {
        flex-direction: column;
    }

    header nav ul li {
        margin-bottom: 10px;
    }

    .portfolio-gallery {
        padding: 20px;
    }

    .gallery-item {
        margin: 10px;
    }
}
