/* General styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

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

/* Header styles */
header {
    background-color: #2556d2;
    color: #fff;
    padding: 10px 0;
}

.logo {
    max-width: 400px;
    display: block;
    margin: 0 auto;
}

.animated-heading {
    opacity: 0;
    animation: fadeIn 5s ease forwards;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

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

nav ul li a {
    color: #fff;
    text-decoration: none;
}

/* Home section styles */
#home {
    background-color: #ffffff;
    padding: 50px 0;
    text-align: center;
}

/* Services section styles */
#services {
    padding: 50px 0;
    background-color: #deeeef;
}

/* Glow animation for Services section */
#services:hover {
    animation: glow 1s infinite alternate;
}

/* Coverage section styles */
#coverage {
    padding: 50px 0;
    background-color: #ffffff;
}

/* Glow animation for Coverage section */
#coverage:hover {
    animation: glow 1s infinite alternate;
}

/* Plans section styles */
#plans {
    padding: 50px 0;
    background-color: #deeeef;
}

/* Glow animation for Pricing section */
#plans:hover {
    animation: glow 1s infinite alternate;
}

/* About Us section styles */
#about {
    padding: 50px 0;
    background-color: #ffffff;
}

/* Glow animation for About Us section */
#about:hover {
    animation: glow 1s infinite alternate;
}

/* Contact section styles */
#contact {
    padding: 50px 0;
    background-color: #deeeef;
}

/* Glow animation for Contact section */
#contact:hover {
    animation: glow 1s infinite alternate;
}

/* Footer styles */
footer {
    background-color: #2556d2;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}

/* Keyframes for fadeIn animation */
@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* Keyframes for glow animation */
@keyframes glow {
    from {
        box-shadow: 0 0 20px #39f, 0 0 20px #39f, 0 0 30px #39f;
    }
    to {
        box-shadow: 0 0 40px #39f, 0 0 30px #39f, 0 0 40px #39f;
    }
}

