/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f4;
}

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

header {
    background-color: #77bcda;
    color: white;
    padding: 2px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

header h1 {
    margin: 0;
    padding: 0 10px;
}

nav ul {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: flex-end;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}


section {
    background: white;
    margin: 20px 0;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

h2 {
    color: #77bcda;
}

ul {
    margin-top: 20px;
}

ul li {
    margin-bottom: 10px;
}

blockquote {
    border-left: 4px solid #77bcda;
    padding-left: 20px;
    color: #666;
    margin: 20px 0;
}

form input, form textarea, form button {
    width: 100%;
    padding: 10px;
    margin-top: 10px;
    border-radius: 5px;
    border: 1px solid #ddd;
    box-sizing: border-box; /* Fixes padding issue */
}

form button {
    background-color: #77bcda;
    color: white;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

form button:hover {
    background-color: #77bcda;
}

footer {
    background-color: #77bcda;
    color: white;
    text-align: center;
    position:relative;
    bottom: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    header h1, nav ul {
        text-align: center;
    }

    nav ul {
        flex-direction: column;
    }

    nav ul li {
        margin: 10px 0;
    }
}

@media (max-width: 480px) {
    header {
        padding: 10px 0;
    }

    header h1, nav ul {
        padding: 0 20px;
    }
}
footer .social-icons {
    text-align: center;
    margin-bottom: 20px;
}

footer .social-icons a {
    margin: 0 10px;
    color: #333; /* Change icon color as needed */
    font-size: 24px; /* Adjust size as needed */
    transition: color 0.3s ease;
}

footer .social-icons a:hover {
    color: #007bff; /* Change hover color as needed */
}

