html, body {
    height: 100%;
}    

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    font-family: 'Segoe UI', Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: #f7f7f7;
    color: #222;
} 

.sniglet-regular {
  font-family: "Sniglet", system-ui;
  font-weight: 400;
  font-style: normal;
}

.sniglet-extrabold {
  font-family: "Sniglet", system-ui;
  font-weight: 800;
  font-style: normal;
}

.header {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    background: url('hero.jpg') center center/cover no-repeat;
    min-height: 400px;
    box-shadow: 0 2px 12px rgba(42,77,105,0.08);
    position: relative;
    overflow: hidden;
    padding: 20px;
}

.header > div {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hero-image {
    width: 90px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
    margin-right: 1.2em;
    box-shadow: 0 2px 8px rgba(42,77,105,0.10);
    border: 2px solid #e0e0e0;
    background: #fff;
    flex-shrink: 0;
}


h1, h2, h3, h4 {
    margin: 0;
    color: white;
    font-family: "Nunito", sans-serif;
}

h1 {
    font-size: 2.4em;
}    
h2 {
    font-size: 2.0em;
}
h3 {
    font-size: 1.8em;
    font-weight: 400;
    letter-spacing: 0.01em;
}
h4 {
    font-size: 1.2em;
    font-weight: 400;
    letter-spacing: 0.01em;
}

p {
    margin: 5px 0;
}

.container {
    min-width: 100%
}

section {
    font-size: 1.1em;
    line-height: 1.6;
    padding: 0 30px;
}

.container > * + * {
    margin-top: 60px;
}

section h1,
section h2,
section h3,
section h4 {
    color: #222;
}

.ambition {
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #d7cfb1;
    padding-top: 20px;
    padding-bottom: 50px;
}

.ambition > img {
    width: 100px;
}

.ambition > h4 {
    max-width: 500px;
    color: #222;
    text-align: center;
}

.about {
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.about > div {
    display: flex;
    flex-direction: column;
}

.about img {
    max-width: 400px;
    border-top-right-radius: 50px;
    border-bottom-left-radius: 50px;
}

.about > div:nth-child(1) {
    text-align: center;
}

.about > div:nth-child(2) {
    justify-content: center;
}

.education {
    text-align: center;
}

.coaching-separator {
    border: none;
    border-top: 1px solid #222;
    width: 70%;
}

.coaching {
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.footer {
    flex-shrink: 0;
    background: #d7cfb1;
    color: #222;
    text-align: center;
    padding: 18px 0 14px 0;
    font-size: 1em;
    letter-spacing: 0.03em;
    margin-top: 32px;
}    

