/* Reset and Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
}

/* Header Styles */
header {
    background-color: #5f27cd;
    padding: 20px 0;
    color: white;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

header h1 {
    font-size: 24px;
}

nav ul {
    display: flex;
    gap: 20px;
}

nav ul li {
    list-style: none;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 16px;
}

/* Hero Section */
.hero {
    background: url('https://example.com/hero-image.jpg') no-repeat center center/cover;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
}

.hero-text h2 {
    font-size: 36px;
    margin-bottom: 10px;
}

.hero-text p {
    font-size: 18px;
    margin-bottom: 20px;
}

.view-plans-btn {
    background-color: #ff5733;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
}

/* Plans Section */
.plans-section {
    text-align: center;
    padding: 40px 20px;
    background-color: #f7f7f7;
}

.plans-section h3 {
    font-size: 28px;
    margin-bottom: 20px;
}

.plans-section p {
    font-size: 18px;
    margin-bottom: 40px;
}

.plans-container {
    display: flex;
    justify-content: space-around;
    gap: 20px;
    flex-wrap: wrap;
}

.plan-card {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    width: 23%;
    text-align: center;
    transition: transform 0.3s ease;
}

.plan-card:hover {
    transform: translateY(-10px);
}

.plan-card h4 {
    font-size: 24px;
    margin-bottom: 10px;
}

.plan-card .price {
    font-size: 28px;
    color: #5f27cd;
    margin-bottom: 20px;
}

.plan-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.plan-card ul li {
    padding: 5px 0;
    font-size: 16px;
}

.book-now-btn {
    background-color: #5f27cd;
    color: white;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    border: none;
    border-radius: 5px;
}

/* Footer */
footer {
    background-color: #5f27cd;
    color: white;
    padding: 20px;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-left ul {
    display: flex;
    gap: 15px;
}

.footer-left ul li {
    list-style: none;
}

.footer-left ul li a {
    color: white;
    text-decoration: none;
    font-size: 16px;
}

.footer-right a {
    color: white;
    text-decoration: none;
    font-size: 16px;
}