/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f4;
}

header {
    text-align: center;
    background-color: #2c3e50;
    color: white;
    padding: 20px;
    position: relative;
}

.header-image {
    width: 100%;
    max-width: 1600px;
    height: auto;
    display: block;
    margin: 0 auto;
}

h1 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2.5em;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}

main {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background-color: white;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

section {
    margin-bottom: 30px;
}

h2 {
    color: #2c3e50;
    margin-bottom: 15px;
    border-bottom: 2px solid #3498db;
    padding-bottom: 10px;
}

p {
    margin-bottom: 15px;
}

/* Petition button styles */
.petition-button {
    text-align: center;
    margin: 40px 0;
}

.sign-button {
    display: inline-block;
    background-color: #e74c3c;
    color: white;
    padding: 20px 40px;
    text-decoration: none;
    border-radius: 8px;
    font-size: 24px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.sign-button:hover {
    background-color: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.3);
}

/* Media section */
.media {
    text-align: center;
    margin: 40px 0;
}

iframe {
    width: 100%;
    max-width: 800px;
    height: 450px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

/* Footer */
footer {
    text-align: center;
    padding: 20px;
    background-color: #2c3e50;
    color: white;
    margin-top: 20px;
}

/* Responsive design */
@media (max-width: 768px) {
    h1 {
        font-size: 2em;
    }

    main {
        margin: 10px;
        padding: 15px;
    }
}