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

}
.wrapper {width: 80%;
    margin: 5px auto;}

    #all-content {
        width: 100%;
    }
body{
    font-family: Verdana, sans-serif;
    margin: 5px auto;
    background-color: #e6e9e7;
    color: #2b2b2b;
    line-height: 1.6;

}
h1,h2,h3,h4{
    font-family: Georgia, 'Times New Roman', Times, serif;
    color: #1f3d2b; 
}
h1{
    font-size: 2.2rem;
    margin-bottom: 10px;
}
h2{
    font-size: 1.3rem;
    color: #4f6f5d;
    margin-bottom: 20px;
}
h4{
    font-size: 1.4rem;
    margin-bottom: 15px;
}
p{
    margin-bottom: 15px;
}
#wrapper {
    max-width: 1000px;      
    margin: 40px auto;          
    background-color: #ffffff; 
    padding: 50px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.12); 
    border-radius: 8px;
}
#header {
    text-align: center;
    padding-bottom: 20px; 
    border-bottom: 2px, solid #d4d9d6;
}
#navigation {
    list-style: none;
    margin-top: 20px;
}
.primarynav {
    display: inline;
    margin: 10px;
}

.primarynav a {
    text-decoration: none;
    color: #1f3d2b;
    font-weight: bold;
    padding: 10px 12px;
    border-radius: 8px;
    transition: 0.3s;
    position: inline;
}
.primarynav a:hover {
    background-color: #1f3d2b;
    color: #ffffff;
}

#content {
    margin-top: 10px;
    padding-bottom: 2px;
    padding-top: 2px;
}
blockquote {
    border-left: 4px solid #1f3d2b;
    padding-left: 15px;
    margin: 20px 0;
    font-style: italic;
    color: #4f6f5d;
}

#footer {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 2px solid #d4d9d6;
    font-size: 0.9rem;
    text-align: center;
    color: #6b6f6d;

}
a {
    color: #1f3d2b;
}

a:hover {
    color: #4f6f5d;
}

/* ── Contact form card ── */
#contact-wrapper {
    max-width: 1000px;
    margin: 30px auto 60px;
    background-color: #ffffff;
    padding: 50px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
    border-radius: 8px;
    border-top: 4px solid #1f3d2b;
}

#contact-wrapper h3 {
    font-size: 1.6rem;
    margin-bottom: 10px;
}

.contact-intro {
    color: #4f6f5d;
    margin-bottom: 30px;
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.form-group label {
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-size: 0.95rem;
    color: #1f3d2b;
    font-weight: bold;
    margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
    font-family: Verdana, sans-serif;
    font-size: 0.95rem;
    color: #2b2b2b;
    background-color: #f4f6f5;
    border: 1px solid #c5cdc8;
    border-radius: 6px;
    padding: 10px 14px;
    transition: border-color 0.2s, box-shadow 0.2s;
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1f3d2b;
    box-shadow: 0 0 0 3px rgba(31, 61, 43, 0.12);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #9aada3;
}

.submit-btn {
    display: inline-block;
    background-color: #1f3d2b;
    color: #ffffff;
    font-family: Verdana, sans-serif;
    font-size: 0.95rem;
    font-weight: bold;
    letter-spacing: 0.05em;
    padding: 12px 30px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-top: 10px;
}

.submit-btn:hover {
    background-color: #4f6f5d;
}