/* Global Styles */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f0f2f5;
}

header {
    background-color: #333;
    color: white;
    padding: 20px 0;
    text-align: center;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}

nav ul {
    list-style-type: none;
    padding: 0;
}

nav ul li {
    display: inline;
    margin: 0 20px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease-in-out;
}

nav ul li a:hover {
    color: #00c1d4;
}

.section {
    padding: 40px;
    margin: 40px auto;
    background-color: white;
    max-width: 80%;
    border-radius: 15px;
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease-in-out;
}

.section:hover {
    box-shadow: 0px 16px 40px rgba(0, 0, 0, 0.2);
}

h2 {
    color: #333;
    font-size: 2rem;
    margin-bottom: 20px;
}

p {
    font-size: 1.2rem;
    color: #555;
    line-height: 1.6;
}

ul {
    list-style-type: none;
    padding: 0;
}

ul li {
    font-size: 1.1rem;
    color: #333;
    margin: 10px 0;
}

button {
    padding: 12px 24px;
    background-color: #5cb85c;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

button:hover {
    background-color: #4cae4c;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
}

footer {

    background-color: #333;
    color: white;
    text-align: center;
    padding: 10px;
    position: relative;

}

@media (max-width: 768px) {
    .section {
        max-width: 90%;
    }

    nav ul li {
        display: block;
        text-align: center;
        margin: 10px 0;
    }

    button {
        width: 100%;
        padding: 14px 0;
    }
}

.logo {
	width: 300px;
	height: 300px;
}