/* Global Styles */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    color: #333;
    background: #f8f9fa;
}

header {
    background: #0a2540;
    color: white;
    padding: 60px 20px;
    text-align: center;
}

header h1 {
    font-size: 2.5rem;
}

header p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

header .cta a {
    padding: 10px 20px;
    background: #1abc9c;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    margin: 5px;
    display: inline-block;
}

header .cta a:hover {
    background: #16a085;
}

.sticky-nav {
    position: sticky;
    top: 0;
    background: #333;
    padding: 10px 0;
    z-index: 1000;
}

.sticky-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
}

.sticky-nav ul li {
    margin: 0 15px;
}

.sticky-nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

.sticky-nav ul li a:hover {
    text-decoration: underline;
}

.features, .testimonials, .pricing {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    padding: 40px 20px;
}

.feature-box, .testimonial, .price-box {
    background: white;
    border-radius: 6px;
    padding: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.price-box.highlight {
    background: #f5f5f5;
    border: 2px solid #1abc9c;
}

.price-box button {
    background: #1abc9c;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 1em;
    cursor: pointer;
}

.price-box button:hover {
    background: #16a085;
}

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

@media (max-width: 768px) {
    .cta a {
        display: block;
        margin: 10px 0;
    }
}