/* Font imports */
@font-face {
    font-family: 'League Gothic';
    src: url('https://ext.same-assets.com/1067415371/2056896654.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

/* CSS Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    cursor: pointer;
    border: none;
    font-family: inherit;
}

input, select, textarea {
    font-family: inherit;
    font-size: 100%;
}

strong {
    font-weight: 700;
}


/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #272728;
    color: white;
    padding: 20px;
    z-index: 1000;
    transform: translateY(0);
    transition: transform 0.3s ease;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
}

.cookie-banner.hidden {
    transform: translateY(100%);
}

.cookie-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.cookie-content h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.cookie-content p {
    font-size: 14px;
    margin-bottom: 20px;
    opacity: 0.9;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    padding: 12px 24px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border-radius: 4px;
    display: inline-block;
    text-align: center;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background-color: #e23a52;
    color: white;
}

.btn-primary:hover {
    background-color: #c92940;
}

.btn-secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background-color: white;
    color: #272728;
}

.btn-link {
    background: none;
    color: white;
    padding: 12px 16px;
    text-transform: none;
    letter-spacing: normal;
}

.btn-link:hover {
    text-decoration: underline;
}

.btn-hero {
    background-color: #e23a52;
    color: white;
    padding: 16px 40px;
    font-size: 18px;
}

.btn-hero:hover {
    background-color: #c92940;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(226, 58, 82, 0.3);
}

.btn-sign {
    background-color: #e23a52;
    color: white;
    padding: 12px 24px;
    font-size: 14px;
    width: 100%;
    margin-top: auto;
    border-radius: 4px;
}

.btn-sign:hover {
    background-color: #c92940;
}

.btn-white-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 14px 32px;
}

.btn-white-outline:hover {
    background-color: white;
    color: #e23a52;
}

.btn-submit {
    background-color: #e23a52;
    color: white;
    padding: 14px;
    font-size: 16px;
    width: 100%;
}

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

.btn-start {
    background-color: #e23a52;
    color: white;
    padding: 12px 24px;
    font-size: 16px;
}

.btn-start:hover {
    background-color: #c92940;
}

.btn-text-link {
    color: #e23a52;
    font-weight: 600;
    display: inline-block;
    margin-top: 20px;
}

.btn-text-link:hover {
    text-decoration: underline;
}

/* Header */
.main-header {
    background-color: #272728;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.petition-header {
    background-color: rgba(39, 39, 40, 0.95);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo img {
    height: 40px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links a {
    color: white;
    font-weight: 500;
    transition: opacity 0.3s ease;
}

.nav-links a:hover {
    opacity: 0.8;
}

.language-selector {
    color: white;
    cursor: pointer;
}

/* Hero Section */
.hero {
    position: relative;
    height: 600px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-family: 'League Gothic', sans-serif;
    font-size: 72px;
    line-height: 1.1;
    color: white;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

/* Petition Hero */
.petition-hero {
    position: relative;
    height: 400px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.petition-title {
    font-family: 'League Gothic', sans-serif;
    font-size: 56px;
    line-height: 1.1;
    color: white;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

/* Campaign Status Badges */
.campaign-badges {
    position: absolute;
    top: 15px;
    left: 15px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 2;
}

.campaign-status-badges {
    position: absolute;
    top: 20px;
    left: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 2;
}

.badge, .status-badge {
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 5px;
    display: inline-block;
    line-height: 1;
}

.urgent-badge, .status-badge.urgent {
    background-color: #FFD700;
    color: #000000;
}

.featured-badge, .status-badge.featured {
    background-color: #FFD700;
    color: #000000;
}

/* Petitions Carousel */
.petitions-carousel {
    padding: 40px 0;
    background-color: #f5f5f5;
    overflow: hidden;
}

.carousel-container {
    position: relative;
}

.carousel-track {
    display: flex;
    gap: 20px;
    width: fit-content;
}

.petition-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    flex: 0 0 300px;
    display: flex;
    flex-direction: column;
    position: relative;
    opacity: 1 !important;
    pointer-events: auto !important;
    z-index: 1;
}

.petition-card * {
    opacity: 1 !important;
    pointer-events: auto !important;
}

.petition-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
    z-index: 2;
}

.petition-card a {
    display: flex;
    flex-direction: column;
    height: 100%;
    text-decoration: none;
    color: inherit;
}

.petition-image {
    height: 200px;
    overflow: hidden;
    position: relative;
    background: #f0f0f0;
}

.petition-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    display: block;
}

.petition-card:hover .petition-image img {
    transform: scale(1.05);
}

.petition-content {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.petition-content h3 {
    padding: 20px;
    font-size: 18px;
    line-height: 1.4;
    margin-bottom: 10px;
    color: #333;
}

.petition-author {
    color: #666;
    font-size: 14px;
    margin-bottom: 5px;
}

.petition-location {
    color: #666;
    font-size: 14px;
    margin-bottom: 15px;
}

/* Petition Progress */
.petition-progress {
    margin-top: 15px;
    margin-bottom: 15px;
}

.progress-bar {
    height: 8px;
    background-color: #e0e0e0;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 8px;
}

.progress-fill {
    height: 100%;
    background-color: #e23a52;
    transition: width 0.5s ease;
}

.progress-text {
    font-size: 12px;
    color: #666;
    margin: 0;
}

/* Info Sections */
.info-section {
    padding: 80px 0;
}

.info-section-red {
    background-color: #e23a52;
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.info-grid.reverse {
    direction: rtl;
}

.info-grid.reverse > * {
    direction: ltr;
}

.info-content h2 {
    font-family: 'League Gothic', sans-serif;
    font-size: 48px;
    line-height: 1.1;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.white-text {
    color: white;
}

.white-text h2 {
    color: white;
}

.divider {
    width: 60px;
    height: 4px;
    background-color: #e23a52;
    margin-bottom: 20px;
}

.white-text .divider {
    background-color: white;
}

.info-content p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.info-image img {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

/* Testimonial Section */
.testimonial-section {
    padding: 80px 0;
    background-color: #333;
    color: white;
}

.testimonial {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-image {
    width: 150px;
    height: 150px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.testimonial-location {
    font-size: 18px;
    opacity: 0.8;
    margin-bottom: 20px;
}

.testimonial-divider {
    width: 60px;
    height: 3px;
    background-color: white;
    margin: 0 auto 20px;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.8;
    font-style: italic;
}

/* Petition Content Page */
.petition-content {
    padding: 60px 0;
    background-color: #f5f5f5;
}

.petition-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.petition-main h2 {
    font-size: 28px;
    line-height: 1.4;
    margin-bottom: 30px;
    color: #333;
}

.petition-main p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #555;
}

/* Campaign Meta */
.campaign-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
    padding: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #666;
}

.meta-item i {
    color: #e23a52;
    width: 16px;
}

/* Campaign Objectives */
.campaign-objectives {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    margin-bottom: 30px;
}

.campaign-objectives h3 {
    font-size: 24px;
    color: #333;
    margin-bottom: 20px;
    border-bottom: 2px solid #e23a52;
    padding-bottom: 10px;
}

.objectives-content {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

/* Main Content */
.main-content {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    margin-bottom: 30px;
}

.main-content h1, .main-content h2, .main-content h3 {
    color: #333;
    margin-bottom: 15px;
}

.main-content p {
    margin-bottom: 15px;
}

.main-content ul, .main-content ol {
    margin-bottom: 15px;
    padding-left: 30px;
}

.main-content blockquote {
    border-left: 4px solid #e23a52;
    padding-left: 20px;
    margin: 20px 0;
    font-style: italic;
    color: #666;
}

/* Campaign Gallery */
.campaign-gallery {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    margin-bottom: 30px;
}

.campaign-gallery h3 {
    font-size: 24px;
    color: #333;
    margin-bottom: 20px;
    border-bottom: 2px solid #e23a52;
    padding-bottom: 10px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.gallery-item {
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-item img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    display: block;
}

/* External Links */
.external-links {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    margin-bottom: 30px;
}

.external-links h3 {
    font-size: 24px;
    color: #333;
    margin-bottom: 20px;
    border-bottom: 2px solid #e23a52;
    padding-bottom: 10px;
}

.action-links {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.action-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background-color: #e23a52;
    color: white;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease;
    font-weight: 600;
}

.action-link:hover {
    background-color: #c92940;
}

.action-link i {
    font-size: 16px;
}

/* Social Media Links */
.social-links {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    margin-bottom: 30px;
}

.social-links h3 {
    font-size: 24px;
    color: #333;
    margin-bottom: 20px;
    border-bottom: 2px solid #e23a52;
    padding-bottom: 10px;
}

.social-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: opacity 0.3s ease;
}

.social-btn:hover {
    opacity: 0.8;
}

.social-btn.facebook {
    background-color: #1877f2;
    color: white;
}

.social-btn.twitter {
    background-color: #1da1f2;
    color: white;
}

.social-btn.instagram {
    background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
    color: white;
}

.social-btn i {
    font-size: 16px;
}

/* Petition Form Card */
.petition-form-card {
    background: white;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 90px;
}

.progress-section {
    text-align: center;
    margin-bottom: 30px;
}

.signature-count {
    font-size: 48px;
    font-weight: bold;
    color: #333;
    line-height: 1;
}

.signature-label {
    color: #666;
    margin-bottom: 20px;
}

.progress-bar {
    height: 20px;
    background-color: #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 10px;
}

.progress-fill {
    height: 100%;
    background-color: #e23a52;
    transition: width 0.5s ease;
}

.goal-text {
    font-size: 14px;
    color: #666;
    font-weight: 600;
}

.petition-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.petition-form input,
.petition-form select,
.petition-form textarea {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
}

.petition-form input:focus,
.petition-form select:focus,
.petition-form textarea:focus {
    outline: none;
    border-color: #e23a52;
}

.country-select select {
    width: 100%;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 30px;
}

.form-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.form-disclaimer {
    font-size: 12px;
    color: #666;
    line-height: 1.5;
}

.form-disclaimer a {
    color: #e23a52;
    text-decoration: underline;
}

/* Success Message */
.success-message {
    background: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.success-message h3 {
    margin-bottom: 10px;
    color: #155724;
}

.share-buttons {
    margin-top: 15px;
}

.share-buttons h4 {
    margin-bottom: 10px;
    color: #155724;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    margin-right: 10px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
}

.share-btn.facebook {
    background-color: #1877f2;
    color: white;
}

.share-btn.twitter {
    background-color: #1da1f2;
    color: white;
}

/* Campaign Stats Card */
.campaign-stats-card {
    background: white;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin-top: 20px;
}

.campaign-stats-card h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #333;
    text-align: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.stat-item {
    text-align: center;
    padding: 15px;
    border-radius: 8px;
    background: #f8f9fa;
}

.stat-item i {
    font-size: 24px;
    color: #e23a52;
    margin-bottom: 8px;
    display: block;
}

.stat-number {
    display: block;
    font-size: 24px;
    font-weight: bold;
    color: #333;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 12px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.letter-section {
    margin-top: 60px;
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.letter-section h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #333;
}

.letter-content {
    background-color: #f9f9f9;
    padding: 30px;
    border-left: 4px solid #e23a52;
}

.letter-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
}

/* More Actions Section */
.more-actions {
    padding: 80px 0;
    background-color: #f0f0f0;
}

.more-actions h2 {
    font-family: 'League Gothic', sans-serif;
    font-size: 48px;
    text-align: center;
    margin-bottom: 50px;
    text-transform: uppercase;
}

.actions-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.action-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.action-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.action-card a {
    display: flex;
    flex-direction: column;
    height: 100%;
    text-decoration: none;
    color: inherit;
}

.action-image {
    height: 200px;
    overflow: hidden;
    background: #f0f0f0;
}

.action-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.action-content {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.action-content h3 {
    font-size: 18px;
    line-height: 1.4;
    margin-bottom: 20px;
    color: #333;
    flex: 1;
}

.start-campaign {
    background-color: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.start-campaign .action-content {
    text-align: center;
}

/* Lightbox for Gallery Images */
.lightbox {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    margin: auto;
}

.lightbox-content img {
    width: 100%;
    height: auto;
    max-height: 90vh;
    object-fit: contain;
}

.close-btn {
    position: absolute;
    top: -40px;
    right: 0;
    font-size: 35px;
    font-weight: bold;
    color: white;
    cursor: pointer;
    z-index: 1001;
}

.close-btn:hover,
.close-btn:focus {
    color: #e23a52;
    text-decoration: none;
}

/* Notification Styles */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 15px 20px;
    border-radius: 5px;
    color: white;
    z-index: 1000;
    max-width: 400px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.notification.success {
    background-color: #28a745;
}

.notification.error {
    background-color: #dc3545;
}

/* Footer */
.main-footer {
    background-color: #272728;
    color: white;
    padding: 60px 0;
    text-align: center;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo img {
    height: 50px;
    margin: 0 auto;
}

.footer-tagline {
    font-size: 14px;
    opacity: 0.8;
    margin-bottom: 30px;
}

.footer-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.footer-links a {
    color: white;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
}

.footer-links span {
    opacity: 0.5;
}

.footer-copyright {
    font-size: 14px;
    opacity: 0.6;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .info-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .actions-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .petition-grid {
        grid-template-columns: 1fr;
    }

    .petition-form-card {
        position: static;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 48px;
    }

    .petition-title {
        font-size: 36px;
    }

    .info-content h2,
    .more-actions h2 {
        font-size: 36px;
    }

    .nav-links {
        gap: 15px;
    }

    .actions-grid {
        grid-template-columns: 1fr;
    }

    .footer-links {
        flex-direction: column;
        gap: 15px;
    }

    .footer-links span {
        display: none;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .action-links,
    .social-buttons {
        flex-direction: column;
    }

    .campaign-meta {
        flex-direction: column;
        gap: 10px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 36px;
    }

    .petition-title {
        font-size: 28px;
    }

    .btn-hero {
        padding: 12px 30px;
        font-size: 16px;
    }

    .signature-count {
        font-size: 36px;
    }

    .cookie-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
    }

    .petition-form-card,
    .campaign-objectives,
    .main-content,
    .campaign-gallery,
    .external-links,
    .social-links {
        padding: 20px;
    }

    .container {
        padding: 0 15px;
    }
}
