/* Resetting default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background: linear-gradient(135deg, #6e7c7f, #2a3d44);
    color: #f4f4f4;
    line-height: 1.6;
}

/* Header */
header {
    background-color: rgba(0, 0, 0, 0.7);
    padding: 20px 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 80%;
    margin: 0 auto;
}

header .logo h1 {
    font-size: 28px;
    font-weight: bold;
    color: #f4f4f4;
}

nav ul {
    list-style: none;
}

nav ul li {
    display: inline-block;
    margin-left: 30px;
}

nav ul li a {
    color: #f4f4f4;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s ease;
}

nav ul li a:hover {
    color: #1abc9c;
}

/* Main content section */
main {
    padding: 50px 0;
    background: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    margin: 20px auto;
    max-width: 1200px;
}

/* Section styles */
section {
    margin-bottom: 40px;
}

h2 {
    font-size: 36px;
    margin-bottom: 20px;
    font-weight: 600;
    color: #333;
}

p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #666;
}

ul {
    list-style: none;
    font-size: 18px;
    color: #666;
}

ul li {
    margin-bottom: 10px;
}

img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-top: 20px;
}

/* Footer */
footer {
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    text-align: center;
    padding: 20px;
}

footer p {
    font-size: 16px;
}

/* Container for consistency */
.container {
    width: 90%;
    margin: 0 auto;
}
