* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
}

header {
    background: #007BFF;
    color: white;
    padding: 1rem 0;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

nav .logo {
    font-size: 1.5rem;
    font-weight: bold;
}

nav ul {
    list-style: none;
    display: flex;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #FFD700;
}

.hero {
    background: url('images/ShillTrendsImage3.png') no-repeat center center/cover;
    color: white;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
}

.hero-content {
    max-width: 600px;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.cta-button {
    background: #FFD700;
    color: #333;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.3s ease;
}

.cta-button:hover {
    background: #FFC300;
}

main {
    padding: 2rem 0;
}

section {
    padding: 2rem 0;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.introduction, .testimonials, .contact-cta {
    text-align: center;
}

.services {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
}

.service-item {
    background: #F4F4F4;
    padding: 1rem;
    margin: 1rem;
    border-radius: 5px;
    flex-basis: 100%;
    max-width: 300px;
    text-align: center;
    transition: transform 0.3s ease, background 0.3s ease;
}

@media (min-width: 768px) {
    .service-item {
        flex-basis: 45%;
        max-width: 45%;
    }
}

.service-item:hover {
    transform: translateY(-10px);
    background: #e0e0e0;
}

.service-item h3 {
    margin-bottom: 0.5rem;
}

.testimonials .testimonial {
    background: #F4F4F4;
    padding: 1rem;
    margin: 1rem auto;
    border-radius: 5px;
    max-width: 600px;
}

.footer-content {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    background: #007BFF;
    color: white;
    padding: 2rem 0;
}

.footer-content .contact-info, .footer-content .social-media, .footer-content .newsletter-signup {
    flex-basis: 30%;
    text-align: center;
}

.footer-content a {
    color: white;
    text-decoration: none;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.footer-content a:hover {
    color: #FFD700;
}

footer p {
    text-align: center;
    background: #0056b3;
    color: white;
    padding: 1rem 0;
}
