/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #f4f4f4;
    color: #333;
}

/* Navigation */
header {
    background: #333;
    color: #fff;
    padding: 10px 0;
}

header h1 {
    text-align: center;
}

nav ul {
    list-style: none;
    text-align: center;
}

nav ul li {
    display: inline;
    margin: 0 15px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
}

/* Hero Section */
.hero {
    background: url('hero-bg.jpg') no-repeat center center/cover;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-align: center;
}

.hero h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2rem;
}

.btn-primary {
    background-color: #ff6600;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
}

.btn-primary:hover {
    background-color: #ff8533;
}

/* Features Section */
.features {
    padding: 50px 0;
    text-align: center;
    background-color: #fff;
}

.features h2 {
    margin-bottom: 40px;
}

.feature-list {
    display: flex;
    justify-content: space-around;
}

.feature {
    width: 30%;
}

.feature h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

/* Pricing Section */
.pricing {
    background-color: #f9f9f9;
    padding: 50px 0;
    text-align: center;
}

.pricing-options {
    display: flex;
    justify-content: space-around;
}

.price-box {
    background: white;
    padding: 20px;
    width: 30%;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.price-box h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.price-box ul {
    list-style-type: none;
    margin: 20px 0;
}

.price-box ul li {
    margin-bottom: 10px;
}

/* About and Contact Sections */
.about, .contact {
    padding: 50px 0;
    text-align: center;
    text-color:white;
}

.contact a {
    text-decoration: none;
    color: #ffffff;

}

footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 20px 0;
}
