/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
    background: #f7f7f7;
    color: #222;
    padding-bottom: 60px;
}

/* Header */
.header {
    text-align: center;
    padding: 30px 20px;
}

.small-header {
    padding: 20px 20px;
}

.avatar {
    width: 180px;
    height: auto;
    border-radius: 50%;
    margin-bottom: 20px;
}

.avatar.small {
    width: 120px;
}

.tagline {
    margin-bottom: 8px; /* adjust to taste */
}


/* Content */
.content {
    max-width: 800px;
    margin: auto;
    padding: 20px;
}

h1, {
    margin-bottom: 20px;
}

p, li {
    margin-bottom: 12px;
}

h2 {
    margin-top: 10px;
    margin-bottom: 50px;
}

h3 {
    margin-top: 40px;
    margin-bottom: 0px;
}

ul {
    padding-left: 20px;
}



/* Contact Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
}



section {
    margin-bottom: 0px;
}



.more-info {
    text-align: center;
    margin-top: 40px; /* adjust to taste */
}



input, textarea {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 1rem;
}

button {
    padding: 12px;
    background: #333;
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}

button:hover {
    background: #555;
}

/* Footer */
footer {
    text-align: center;
    margin-top: 0px;
    color: #666;
    font-size: 14px; /* applies to copyright only */
}

/* NAV INSIDE FOOTER */
footer nav {
    margin-top: 0px; /* reduces space above nav */
}

footer nav a {
    font-size: 16px; /* restores normal nav size */
    margin: 0 10px;
    color: #333;
    text-decoration: none;
}

footer nav a:hover {
    text-decoration: underline;
}

/* HORIZONTAL LINE */
footer hr {
    border: none;
    border-top: 1px solid #ccc;
    margin-top: 40px;   /* space above the line */
    margin-bottom: 15px;
}



.page {
    max-width: 900px;
    margin: 40px auto;
    padding: 40px 40px 00px 40px; /* top, right, bottom, left */
    background: #ffffff;
    border: 8px solid #e0e0e0;
    box-shadow: 0 0 20px rgba(0,0,0,0.05);

}

.contact-page {
    padding: 30px; /* or 35px if you want more breathing room */
}




