body, html {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

h2 {
    margin-top: 3em;
    margin-bottom: 2em;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background: #004225; /* Traditional British Green */
    color: #fff;
    position: sticky;
    top: 0;
    z-index: 1000;
    flex-wrap: wrap;
}

.header .logo {
    font-size: 24px;
    font-weight: bold;
}

.header nav {
    display: flex;
    flex-wrap: wrap;
}

.header nav a {
    color: #fff;
    margin: 5px 10px;
    text-decoration: none;
}

.slider {
    width: 100%;
    height: 550px; /* Adjusted height for slider */
    background: url("/images/mapapi-slider1.jpg") no-repeat center center/cover;
}

.content {
    max-width: 1200px;
    margin: 20px auto;
    padding: 20px;
    box-sizing: border-box;
    text-align: center;
}

.features, .arguments, .pricing, .call-to-action {
    margin-bottom: 60px;
}

.features .feature-item, .arguments .argument-item {
    display: inline-block;
    width: 30%;
    margin: 0 1.5%;
    vertical-align: top;
    text-align: center;
}

.features .feature-item i, .arguments .argument-item i {
    color: #004225; /* Traditional British Green */
    margin-bottom: 10px;
}

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

.arguments ul li {
    margin-bottom: 10px;
}

.argument-item .argument-box {
    border: 1px solid #004225; /* Traditional British Green */
    border-radius: 8px;
    padding: 10px;
    height: 11em;
    margin-bottom: 2em;
}

.argument-item {
    width: 30%;
    display: inline-block;
    margin: 1%;
    box-sizing: border-box;
    vertical-align: top;
}

.pricing .pricing-table {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.pricing .pricing-features, .pricing-column {
    flex: 1;
    border: 1px solid #004225; /* Traditional British Green */
    border-radius: 8px;
    margin: 5px;
    box-sizing: border-box;
}

.pricing .pricing-features {
    flex-basis: 20%;
}

.pricing .pricing-column {
    flex-basis: 25%;
}

.pricing .pricing-header {
    background: #004225; /* Traditional British Green */
    color: #fff;
    padding: 10px;
    text-align: center;
    font-size: 18px;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.pricing .pricing-feature, 
.pricing .pricing-option {
    padding: 10px;
    border-bottom: 1px solid #e9e9e9;
}

.pricing-footer button {
    display: none;
}

.pricing .pricing-feature {
    text-align: left;
}

.pricing .pricing-feature.header {
    background: rgba(0, 66, 37, 0.5); /* 50% transparent green */
    color: #fff;
    font-weight: bold;
}

.pricing .pricing-feature.odd, .pricing .pricing-option.odd {
    background-color: #f9f9f9;
    height: 2em;
}

.pricing .pricing-feature.even, .pricing .pricing-option.even {
    background-color: #e9e9e9;
    height: 2em;
}

.pricing .pricing-footer {
    padding: 10px;
    text-align: center;
}

.pricing .pricing-footer button {
    padding: 15px 30px;
    background: #004225; /* Traditional British Green */
    color: #fff;
    border: none;
    cursor: pointer;
    border-radius: 8px;
    margin-top: 10px;
}

.why-mapapi {
    position: relative;
    width: 100vw; /* Full width */
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    height: 350px; /* Fixed height */
    background: url("/images/mapapi-bg1.jpg") no-repeat center center/cover;
    background-size: cover;
    color: #fff;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.why-mapapi .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7); /* Black overlay with 50% opacity */
}

.why-mapapi .boxed-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    padding: 20px;
    box-sizing: border-box;
    text-align: center;
    color: #fff;
}

footer {
    background: #004225; /* Traditional British Green */
    color: #fff;
    padding: 20px 0;
    text-align: center;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.footer-column {
    width: 30%;
}

.footer-column a {
    color: #fff;
    text-decoration: none;
    border-bottom: 1px dotted #fff;
}

.footer-column h4 {
    margin-bottom: 10px;
}

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

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: #fff;
    text-decoration: none;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .features .feature-item, .arguments .argument-item {
        width: 100%;
        margin-bottom: 20px;
    }

    .pricing .pricing-table {
        flex-direction: column;
    }

    .pricing .pricing-features, .pricing .pricing-column {
        width: 100%;
    }

    .pricing .pricing-header, .pricing .pricing-feature, .pricing .pricing-option {
        text-align: left;
    }

    .pricing .pricing-header {
        border-radius: 8px 8px 0 0;
    }

    .footer-column {
        width: 100%;
        margin-bottom: 20px;
    }

    .header nav {
        flex-direction: column;
        align-items: flex-start;
    }

    .header nav a {
        margin: 5px 0;
    }
}
