/* General Styles */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
}

.container {
    width: 80%;
    margin: auto;
    overflow: hidden;
}

.header {
    background: #333;
    color: #fff;
    padding-top: 30px;
    min-height: 70px;
    border-bottom: #77A6F7 3px solid;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.navbar-brand {
    font-size: 24px;
    font-weight: bold;
    color: #fff;
    text-decoration: none;
}

.navbar-nav {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

    .navbar-nav li {
        display: inline;
        margin-left: 20px;
    }

    .navbar-nav a {
        text-decoration: none;
        color: #fff;
        font-size: 18px;
    }

.hero {
    background: #77A6F7;
    color: #fff;
    padding: 60px 0;
    text-align: center;
}

    .hero h1 {
        font-size: 48px;
        margin: 0;
    }

    .hero p {
        font-size: 20px;
    }

    .hero .btn {
        margin-top: 20px;
        padding: 10px 20px;
        background: #fff;
        color: #333;
        text-decoration: none;
        border-radius: 5px;
    }

.features {
    padding: 60px 0;
    text-align: center;
}

    .features h2 {
        margin-bottom: 20px;
    }

.feature-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.feature-item {
    width: 30%;
    margin-bottom: 20px;
}

    .feature-item h3 {
        color: #77A6F7;
    }

    .feature-item p {
        color: #666;
    }

.pricing {
    background: #f4f4f4;
    padding: 60px 0;
    text-align: center;
}

    .pricing h2 {
        margin-bottom: 20px;
    }

.pricing-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.pricing-item {
    width: 30%;
    background: #fff;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 10px;
    margin-bottom: 20px;
}

    .pricing-item h3 {
        color: #77A6F7;
    }

    .pricing-item p {
        font-size: 24px;
        color: #333;
    }

    .pricing-item .btn {
        margin-top: 20px;
        padding: 10px 20px;
        background: #77A6F7;
        color: #fff;
        text-decoration: none;
        border-radius: 5px;
    }

.contact {
    padding: 60px 0;
}

    .contact h2 {
        margin-bottom: 20px;
        text-align: center;
    }

    .contact form {
        width: 100%;
        max-width: 600px;
        margin: auto;
    }

.form-group {
    margin-bottom: 20px;
}

    .form-group label {
        display: block;
        margin-bottom: 5px;
    }

    .form-group input, .form-group textarea {
        width: 100%;
        padding: 10px;
        border: 1px solid #ddd;
        border-radius: 5px;
    }

.contact .btn {
    padding: 10px 20px;
    background: #77A6F7;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    display: inline-block;
}

.footer {
    background:cornflowerblue;
    color: #fff;
    text-align: center;
    padding: 20px 0;
    margin-top: 20px;
}

    .footer a {
        color:white;
        text-decoration: none;
    }

@media (max-width: 768px) {
    .hero h1 {
        font-size: 32px;
    }

    .hero p {
        font-size: 16px;
    }

    .feature-item, .pricing-item {
        width: 100%;
    }
}
