:root {
    --primary-color: #336080;
    --error-color: #dc3545;
    --success-color: #28a745;
    --text-color: #333;
    --border-color: #ddd;
}

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

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #f5f5f5;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

header {
    text-align: center;
    padding: 40px 0;
    background-color: white;
    border-radius: 8px;
    margin-bottom: 30px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

h1 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
    line-height: 1.3;
}

/* Petíció szöveg stílusok */
.petition-text {
    background-color: white;
    padding: 2rem;
    margin-bottom: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.lead {
    font-size: 1.25rem;
    color: #444;
    line-height: 1.6;
    margin-bottom: 2rem;
    border-left: 4px solid var(--primary-color);
    padding-left: 1rem;
}

.petition-details h2 {
    color: #2c3e50;
    font-size: 1.5rem;
    margin: 2rem 0 1rem 0;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e0e0e0;
}

.petition-details ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 2rem;
}

.petition-details ul li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.petition-details ul li:before {
    content: "✓";
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.petition-details strong {
    color: var(--primary-color);
    font-weight: 600;
}

/* Video konténer */
.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    margin: 30px 0;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Űrlap stílusok */
.signature-form {
    width: 50%;
    margin: 0 auto;
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 20px;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
}

input[type="text"],
input[type="email"] {
    width: 100%;
    padding: 10px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 16px;
}

.checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.checkbox input {
    margin-top: 5px;
}

.btn-submit {
    background-color: var(--primary-color);
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    width: 100%;
    transition: background-color 0.3s;
}

.btn-submit:hover {
    background-color: #1557b0;
}

/* Értesítések */
.alert {
    padding: 15px;
    border-radius: 4px;
    margin-bottom: 20px;
}

.success {
    background-color: var(--success-color);
    color: white;
}

.error {
    background-color: var(--error-color);
    color: white;
}

/* Lábléc */
footer {
    text-align: center;
    padding: 20px;
    margin-top: 40px;
    border-top: 1px solid var(--border-color);
}

footer a {
    color: var(--primary-color);
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* Reszponzív beállítások */
@media (max-width: 768px) {
    .container {
        padding: 10px;
    }

    h1 {
        font-size: 1.75rem;
    }
    
    .petition-text {
        padding: 1.5rem;
    }

    .signature-form {
        width: 100%;
        padding: 20px;
    }

    .lead {
        font-size: 1.1rem;
    }

    .petition-details h2 {
        font-size: 1.25rem;
    }
}

/* Header és logo stílusok */
header {
    text-align: center;
    padding: 40px;
    background-color: white;
    border-radius: 8px;
    margin-bottom: 30px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.header-container {
    display: flex;
    align-items: center;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.logo-container {
    width: 300px;  /* Fix méret */
    flex-shrink: 0; /* Megakadályozza a logo zsugorodását */
}

.logo {
    width: 100%;
    height: auto;
    display: block;
}

/* Reszponzív beállítások */
@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
    }

    .logo-container {
        width: 200px;  /* Ugyanaz a méret marad mobilon is */
        margin-bottom: 20px;
    }
}