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

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #f0f0f0;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="[invalid url, do not cite] width="20" height="20"><polygon points="0,10 10,0 20,10" fill="rgba(0,0,0,0.05)" /><polygon points="0,10 10,20 20,10" fill="rgba(0,0,0,0.05)" /></svg>');
    background-repeat: repeat;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: white;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    z-index: 1000;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    background-image: radial-gradient(circle at 5px 5px, rgba(0,0,0,0.05) 2px, transparent 2px),
                      radial-gradient(circle at 5px 15px, rgba(0,0,0,0.05) 2px, transparent 2px),
                      radial-gradient(circle at 5px 25px, rgba(0,0,0,0.05) 2px, transparent 2px),
                      radial-gradient(circle at 15px 5px, rgba(0,0,0,0.05) 2px, transparent 2px),
                      radial-gradient(circle at 15px 15px, rgba(0,0,0,0.05) 2px, transparent 2px),
                      radial-gradient(circle at 15px 25px, rgba(0,0,0,0.05) 2px, transparent 2px);
    background-size: 20px 30px;
    background-repeat: repeat;
    padding: 10px;
    width: 200px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo h1 {
    margin: 0;
    font-size: 24px;
    color: black;
}

nav ul {
    list-style: none;
    display: flex;
}

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

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

.section {
    padding: 80px 20px 20px;
    max-width: 800px;
    margin: 0 auto;
}

.media-section {
    background-color: #333;
    color: white;
    padding: 40px 20px;
}

.media-item {
    margin-bottom: 20px;
}

.media-item h3 {
    margin-bottom: 5px;
}

.media-item p {
    font-size: 14px;
    color: #ccc;
}

form {
    display: flex;
    flex-direction: column;
}

form label {
    margin-bottom: 5px;
}

form input, form textarea {
    margin-bottom: 15px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

form button {
    padding: 10px 20px;
    background-color: #008080;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

footer {
    background-color: black;
    color: white;
    text-align: center;
    padding: 20px 0;
}

.social-icons a {
    color: white;
    margin: 0 10px;
    font-size: 24px;
    text-decoration: none;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

.section {
    scroll-margin-top: 60px; /* Height of the header */
}