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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: #ffffff;
    color: #000000;
    min-height: 92vh;
    display: flex;
    flex-direction: column;
    padding: 20px;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-bottom: auto;
    padding: 20px 0;
}

.header-left,
.header-right {
    font-weight: 700;
    font-size: 16px;
    line-height: 1.2;
}

.header-left a,
.header-right a {
    color: #000000;
    text-decoration: none;
}

.header-left a:hover,
.header-right a:hover {
    text-decoration: underline;
}

main {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 0;
}

h1 {
    font-weight: 700;
    font-size: 32px;
    line-height: 1.3;
    max-width: 600px;
}

footer {
    width: 100%;
    text-align: center;
    padding: 0px 0 40px;
    margin-top: auto;
}

footer p {
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 20px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.email {
    font-weight: 700;
    font-size: 18px;
    color: #000000;
    text-decoration: none;
    display: inline-block;
}

.email:hover {
    text-decoration: underline;
}

/* Manifesto page styles */
.manifesto-content {
    text-align: left;
    align-items: flex-start;
    padding: 40px 0;
}

.manifesto-text {
    max-width: 700px;
    margin: 0 auto;
}

.manifesto-text h2 {
    font-weight: 700;
    font-size: 32px;
    margin-bottom: 30px;
    line-height: 1.3;
}

.manifesto-text p {
    font-weight: 400;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.manifesto-opening {
    font-weight: 700;
    font-size: 24px;
    line-height: 1.4;
    margin-bottom: 30px;
}

.manifesto-closing {
    font-weight: 700;
    font-size: 24px;
    line-height: 1.4;
    margin-top: 30px;
    margin-bottom: 20px;
}

.manifesto-text ul {
    margin: 20px 0 20px 30px;
    list-style-type: disc;
}

.manifesto-text li {
    font-weight: 400;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 12px;
}

/* Tablet and larger screens - Manifesto */
@media (min-width: 768px) {
    .manifesto-text h2 {
        font-size: 42px;
    }
    
    .manifesto-text p,
    .manifesto-text li {
        font-size: 20px;
    }
    
    .manifesto-opening,
    .manifesto-closing {
        font-size: 28px;
    }
}

/* Desktop screens - Manifesto */
@media (min-width: 1024px) {
    .manifesto-text h2 {
        font-size: 48px;
    }
    
    .manifesto-text p,
    .manifesto-text li {
        font-size: 22px;
    }
    
    .manifesto-opening,
    .manifesto-closing {
        font-size: 32px;
    }
}

/* Tablet and larger screens */
@media (min-width: 768px) {
    body {
        padding: 40px;
    }
    
    header {
        padding: 30px 0;
    }
    
    main {
        padding: 40px 0;
    }
    
    footer {
        padding: 40px 0 20px;
    }
    
    .header-left,
    .header-right {
        font-size: 18px;
    }
    
    h1 {
        font-size: 48px;
    }
    
    footer p,
    .email {
        font-size: 20px;
    }
}

/* Desktop screens */
@media (min-width: 1024px) {
    body {
        padding: 60px;
    }
    
    h1 {
        font-size: 64px;
    }
    
    footer p,
    .email {
        font-size: 22px;
    }
}
