body {
    margin: 0;
    font-family: 'Merriweather', serif;
    background-color: #fdfaf6;
    color: #2c2c2c;
}

/* Intro Banner */
.intro {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
                url('https://images.pexels.com/photos/1907785/pexels-photo-1907785.jpeg');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 100px 20px;
}

.intro h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.intro ul {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.intro li {
    display: inline;
    margin: 0 15px;
}

.intro a {
    color: #ffd700;
    text-decoration: none;
    font-weight: bold;
}

/* Sections */
h2 {
    text-align: center;
    margin-top: 50px;
    font-family: 'Abril Fatface', serif;
}

/* Pricing */
.pricing-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    padding: 20px;
}

.pricing-card {
    background: white;
    padding: 20px;
    width: 280px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.featured {
    border: 2px solid #ffd700;
    transform: scale(1.05);
}

/* Footer */
footer {
    text-align: center;
    padding: 40px;
    background-color: LightGray;
    color: white;
    margin-top: 50px;
}

