/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f5f5f5;
    color: #333;
}

.page {
    height: 100%;
}

.pricing-col {
    float: left;
    width: 45%;
}

.pricing-col-spacer {
    float: left;
    width: 10%;
}

.pricing-row-spacer {
    float: left;
    clear: both;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
	clear:both;
}

/* Header Styles */
header {
    background-color: #000000;
    color: #fff;
    padding: 10px 10px 20px 0px;
    text-align: center;
	height: 130px;
}

header .logo {
    max-height: 110px;
    display: block;
    margin: 0 auto 10px;
	float: left;
}

header h1 {
    margin: 0;
    font-size: 24px;
}

header nav ul {
    list-style-type: none;
    padding: 0;
    margin: 20px 0 0;
    display: flex;
    justify-content: center;
}

header nav ul li {
    margin: 0 15px;
}

header nav ul li a {
    color: #96D700;
    text-decoration: none;
    font-weight: bold;
}

header nav ul li a:hover {
    text-decoration: underline;
}

/* Hero Section */
.hero {
    background-color: #252525;
    color: #fff;
    text-align: center;
    padding: 50px 20px;
}

.hero h2 {
    font-size: 36px;
    margin: 0 0 10px;
}

.hero p {
    font-size: 18px;
    margin: 0 0 20px;
}

.hero .btn {
    display: inline-block;
    background-color: #96D700;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
}

.hero .btn:hover {
    background-color: #76A500;
}

/* Section Styles */
section {
    padding: 50px 20px;
}

.services-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.service-item {
    flex: 1 1 calc(33.333% - 20px);
    background-color: #fff;
    border: 1px solid #ddd;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.service-item h3 {
    color: #96D700;
}

/* Footer Styles */
footer {
    float: left;
    clear: both;
    background-color: #96D700;
    color: #fff;
    text-align: center;
    padding: 10px 0;
    width: 100%;
}

/* Form Styles */
form {
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    margin: 20px auto;
}

form label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

form input, form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

form button {
    background-color: #96D700;
    color: #fff;
    border: none;
    padding: 10px 20px;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
}

form button:hover {
    background-color: #76A500;
}

.menu{
	clear: both;
	color: #96D700;
}

.wapa-logo{
	max-height: 80px;
}