/* Reset some default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Add your styles here */
body {
    font-family: Arial, sans-serif;
    background-color: #f9f9f9;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

header {
    background-color: #000;
    color: #fff;
    padding: 10px 0;
}

header h1 {
    font-size: 32px;
}

nav ul {
    list-style: none;
}

nav ul li {
    display: inline;
    margin-right: 20px;
}

nav ul li:last-child {
    margin-right: 0;
}

nav a {
    text-decoration: none;
    color: #fff;
}
.code {
    text-align: center;
}

.hero {
    background-image: url('background.webp');
    background-size: cover;
    text-align: center;
    padding: 100px 0;
    color: #fff;
    height: 600px;
}

.hero h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 18px;
    margin-bottom: 30px;
}

.cta-button {
    display: inline-block;
    padding: 15px 30px ;
    margin-top: 30px;
    background-color: #008CBA;
    color: #fff;
    font-size: 18px;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #00587A;
}

.features {
    background-color: #fff;
    padding: 80px 0;
    text-align: center;
}

.features h2 {
    font-size: 36px;
    margin-bottom: 30px;
}

.feature {
    margin-bottom: 40px;
}

.feature img {
    width: 256px;
    height: 256px;
}

.feature h3 {
    font-size: 24px;
    margin-top: 20px;
}

.feature p {
    font-size: 18px;
}

.pricing {
    background-color: #f9f9f9;
    padding: 80px 0;
    text-align: center;
}

.pricing h2 {
    font-size: 36px;
    margin-bottom: 30px;
}

.plan {
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 20px;
    margin: 10px 10px 10px 10px;
    display: inline-block;
}

.plan h3 {
    font-size: 24px;
}

.plan p {
    font-size: 20px;
    margin-bottom: 20px;
}

.plan ul {
    list-style: none;
    padding: 0;
}

.plan ul li {
    font-size: 18px;
    margin-bottom: 10px;
}

.contact {
    background-color: #fff;
    padding: 80px 0;
    text-align: center;
}

.contact h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.contact p {
    font-size: 18px;
    margin-bottom: 40px;
}

footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 10px 0;
}
