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

body {
    font-family: 'Red Hat Display', sans-serif;
    background: none;
    color: #e1eae3;
    line-height: 1.6;
}

/* Background */
#background-img {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    object-fit: cover;
}
/* Header */
.header {
    width: 100%;
    background-color: #1d2b20;
    border-bottom: 2px solid #2a6f41;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
    padding: 10px 24px;

    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: center;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo {
    max-width: 100px;
    height: auto;
}

.header h1 {
    font-size: 2rem;
    color: #f6fff9;
    font-style: italic;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Navigation */
.nav ul {
    list-style: none;
    display: flex;
    gap: 18px;
}

.nav a {
    text-decoration: none;
    color: #d1e7d8;
    font-weight: 500;
    font-size: 1rem;
    padding: 6px 10px;
    border-radius: 6px;
    transition: 0.2s ease-in-out;
}

.nav a:hover,
.nav a:focus {
    background-color: #4ae58b;
    color: #0f1913;
}

.main {
    background-color: #1a2a1e;
    padding: 60px;
    border-radius: 12px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.5);
    margin-bottom: 40px;
    margin-top: 30px;
}

.main h3 {
    color: #7ddfa4;
    margin-top: 20px;
    margin-bottom: 10px;
    font-size: 1.6rem;
    border-bottom: 1px solid #2a6f41;
    padding-bottom: 6px;
}

.Contact {
    max-width: 600px;
    margin: 0 auto 40px;
    text-align: center;
    border-radius: 10px;
    background-color: #1a2a1e;
    border-top: 3px solid #4ae58b;
    box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.25);
    padding: 24px;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

a {
    color: #4ae58b;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}