body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f9;
    color: #333;
}
header {
    position: relative;
    text-align: center;
    color: white;
    overflow: hidden;
}

header img {
    width: 100%;
    height: auto;
    display: block;
}

header .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

header .text-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 0 15px;
    width: 100%;
    max-width: 600px;
}

header h1 {
    font-size: 2em;
    margin: 0 0 10px 0;
}

header p {
    font-size: 1.2em;
    margin: 0;
}

nav {
    display: flex;
    justify-content: center;
    background-color: #0056b3;
    padding: 10px;
}
nav a {
    color: #fff;
    text-decoration: none;
    margin: 0 15px;
}
nav a:hover {
    text-decoration: underline;
}
.container {
    padding: 20px;
    max-width: 1200px;
    margin: auto;
}
.pricing {
    display: flex;
    justify-content: space-around;
    margin: 20px 0;
}
.pricing div {
    border: 1px solid #ccc;
    padding: 15px;
    border-radius: 5px;
    background-color: #fff;
    width: 30%;
    text-align: center;
}
footer {
    text-align: center;
    padding: 10px;
    background-color: #0056b3;
    color: #fff;
}
button {
    background-color: #007BFF;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
}
button:hover {
    background-color: #0056b3;
}
/* Mobile Styles */
@media (max-width: 768px) {

    nav {
        flex-direction: column;
        align-items: center;
    }

    nav a {
        margin: 10px 0;
    }

    .pricing {
        flex-direction: column;
        align-items: center;
    }

    .pricing div {
        width: 90%;
        margin-bottom: 20px;
    }

    header h1 {
        font-size: 1.8em;
        top: 40%;
    }

    header p {
        font-size: 1em;
        top: 55%;
    }

    section {
        padding: 10px;
    }

    button {
        width: 100%;
        font-size: 1.1em;
    }

    .container {
        padding: 10px;
    }
}
img {
    max-width: 100%;
    height: auto;
}
section {
    margin-bottom: 2rem;
}
.pricing-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    width: 300px;
    text-align: center;
    transition: transform 0.2s;
}

.card:hover {
    transform: translateY(-5px);
}

.card img {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
}

.card h3 {
    margin-top: 0;
    color: #0056b3;
}

.card p {
    margin: 10px 0;
}
