/* Petition Section Styles */
.petition-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 0;
    margin: 60px 0;
}

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

.petition-header {
    text-align: center;
    margin-bottom: 50px;
}

.petition-header h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 20px;
    font-weight: 700;
}

.petition-header h3 {
    font-size: 1.5rem;
    color: #0094e8;
    margin-bottom: 15px;
    font-weight: 600;
}

.petition-header p {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

.petition-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 40px;
}

.petition-stats {
    background: white;
    padding: 30px;
    min-height: 420px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
}

.petition-stats h4 {
    color: #0094e8;
    font-size: 1.3rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.petition-stats p {
    font-size: 1.1rem;
    color: #333;
    margin: 10px 0;
    font-weight: 500;
}

.petition-stats .highlight {
    color: #0094e8;
    font-weight: 700;
    font-size: 1.2rem;
}

.petition-qr {
    text-align: center;
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.petition-qr img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 20px;
}

.petition-qr canvas {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 20px;
    border: 1px solid #e0e0e0;
    background: white;
}

.petition-qr p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

.petition-image {
    grid-column: 1 / -1;
    text-align: center;
    margin-top: 30px;
}

.petition-image img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.petition-cta {
    text-align: center;
    margin-top: 40px;
}

.petition-cta .btn {
    display: inline-block;
    padding: 15px 30px;
    background: linear-gradient(135deg, #0094e8 0%, #004494 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,102,204,0.3);
}

.petition-cta .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,102,204,0.4);
}

/* Responsive Design */
@media (max-width: 768px) {
    .petition-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .petition-header h2 {
        font-size: 2rem;
    }
    
    .petition-header h3 {
        font-size: 1.3rem;
    }
    
    .petition-header p {
        font-size: 1rem;
    }
    
    .petition-stats,
    .petition-qr {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .petition-section {
        padding: 60px 0;
    }
    
    .petition-header h2 {
        font-size: 1.8rem;
    }
    
    .petition-header h3 {
        font-size: 1.2rem;
    }
}
 