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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #374151;
    background-color: #ffffff;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1f2937;
}

h1 {
    font-size: 2.5rem;
    line-height: 1.2;
}

h2 {
    font-size: 2rem;
    line-height: 1.3;
}

h3 {
    font-size: 1.5rem;
    line-height: 1.4;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
}

/* Links */
a {
    text-decoration: none;
    color: #2563eb;
    transition: color 0.3s ease;
}

a:hover {
    color: #1d4ed8;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 500;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 16px;
}

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

.btn-primary:hover {
    background-color: #1d4ed8;
    color: white;
}

.btn-secondary {
    background-color: #6b7280;
    color: white;
}

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

.btn-outline {
    background-color: transparent;
    color: #2563eb;
    border: 2px solid #2563eb;
}

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

.cta-button {
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    color: white;
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 18px;
    display: inline-block;
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
    color: white;
}

/* Cookie Management */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1f2937;
    color: white;
    padding: 20px;
    z-index: 1000;
    display: none;
}

.cookie-banner.show {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

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

.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1001;
}

.cookie-modal.show {
    display: flex;
}

.cookie-modal-content {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    max-width: 500px;
    width: 90%;
}

.cookie-option {
    margin: 15px 0;
}

.cookie-option label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.cookie-modal-buttons {
    display: flex;
    gap: 10px;
    margin-top: 20px;
    justify-content: flex-end;
}

/* Header */
.header {
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-name {
    font-size: 24px;
    font-weight: 700;
    color: #1f2937;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-menu a {
    font-weight: 500;
    color: #374151;
    position: relative;
    padding: 8px 0;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #2563eb;
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #2563eb;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #374151;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    margin-top: 70px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    padding: 60px 20px;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 24px;
    color: #1f2937;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 32px;
    color: #4b5563;
}

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

.bg-light {
    background-color: #f9fafb;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header svg {
    margin-bottom: 20px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.section-header p {
    font-size: 1.25rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
}

/* Content Grids */
.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.content-card {
    background-color: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
}

.content-card h3 {
    margin-bottom: 16px;
    color: #1f2937;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background-color: white;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
}

.service-card svg {
    margin-bottom: 20px;
}

.service-card h3 {
    margin-bottom: 16px;
    color: #1f2937;
}

/* Cities Grid */
.cities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.city-card {
    background-color: white;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.city-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
}

.city-icon {
    margin-bottom: 20px;
}

.city-card h3 {
    margin-bottom: 16px;
    color: #1f2937;
}

/* Reviews Grid */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.review-card {
    background-color: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
}

.stars {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
}

.review-card p {
    font-style: italic;
    margin-bottom: 16px;
    color: #4b5563;
}

.review-card cite {
    font-weight: 600;
    color: #1f2937;
}

/* Newsletter Section */
.newsletter-content {
    background-color: white;
    padding: 60px;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.newsletter-text {
    flex: 1;
    min-width: 300px;
}

.newsletter-text svg {
    margin-bottom: 20px;
}

.newsletter-text h2 {
    margin-bottom: 12px;
}

.newsletter-form {
    display: flex;
    gap: 12px;
    flex: 1;
    min-width: 300px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 6px;
    font-size: 16px;
}

.newsletter-form input:focus {
    outline: none;
    border-color: #2563eb;
}

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 40px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-item h4 {
    margin-bottom: 8px;
    color: #1f2937;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group input,
.form-group textarea {
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2563eb;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
.footer {
    background-color: #1f2937;
    color: #d1d5db;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-logo span {
    font-size: 20px;
    font-weight: 700;
    color: white;
}

.footer-section h4 {
    color: white;
    margin-bottom: 16px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section a {
    color: #d1d5db;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #3b82f6;
}

.social-links {
    display: flex;
    gap: 16px;
    margin-top: 20px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #374151;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: #3b82f6;
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 20px;
    text-align: center;
}

/* Blog Styles */
.blog-hero {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 120px 0 80px;
    margin-top: 70px;
    text-align: center;
}

.blog-hero-content svg {
    margin-bottom: 30px;
}

.blog-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.blog-section {
    padding: 80px 0;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.blog-card {
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
}

.blog-card-header {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.blog-card-content {
    padding: 30px;
}

.blog-meta {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
    font-size: 14px;
}

.blog-date {
    color: #6b7280;
}

.blog-category {
    background-color: #dbeafe;
    color: #1e40af;
    padding: 4px 8px;
    border-radius: 4px;
    font-weight: 500;
}

.blog-card h2 {
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.blog-card h2 a {
    color: #1f2937;
}

.blog-card h2 a:hover {
    color: #2563eb;
}

.blog-card p {
    color: #6b7280;
    margin-bottom: 16px;
}

.read-more {
    font-weight: 600;
    color: #2563eb;
}

.read-more:hover {
    color: #1d4ed8;
}

/* Article Styles */
.article-hero {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 120px 0 80px;
    margin-top: 70px;
}

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

.article-meta {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
    font-size: 14px;
}

.article-date {
    color: #6b7280;
}

.article-category {
    background-color: #dbeafe;
    color: #1e40af;
    padding: 6px 12px;
    border-radius: 4px;
    font-weight: 500;
}

.article-excerpt {
    font-size: 1.25rem;
    color: #6b7280;
    margin-bottom: 30px;
}

.article-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.article-author div {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 600;
    color: #1f2937;
}

.author-title {
    font-size: 14px;
    color: #6b7280;
}

.article-hero-image {
    width: 100%;
    height: 300px;
}

.article-content {
    padding: 80px 0;
}

.article-content .container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
}

.article-body {
    max-width: none;
}

.content-section {
    margin-bottom: 50px;
}

.content-section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #1f2937;
}

.content-section h3 {
    font-size: 1.5rem;
    margin: 30px 0 16px;
    color: #1f2937;
}

.content-section h4 {
    font-size: 1.25rem;
    margin: 20px 0 12px;
    color: #1f2937;
}

.content-section ul,
.content-section ol {
    margin-left: 20px;
    margin-bottom: 20px;
}

.content-section li {
    margin-bottom: 8px;
}

.highlight-box {
    background-color: #f0fdf4;
    border: 1px solid #dcfce7;
    border-radius: 8px;
    padding: 30px;
    margin: 30px 0;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.highlight-box h3 {
    color: #166534;
    margin-bottom: 16px;
}

.highlight-box ul {
    margin: 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin: 30px 0;
}

.stat-card {
    background-color: #f9fafb;
    padding: 30px 20px;
    border-radius: 8px;
    text-align: center;
    border: 1px solid #e5e7eb;
}

.stat-card svg {
    margin-bottom: 16px;
}

.stat-card h4 {
    margin-bottom: 8px;
    color: #1f2937;
}

.stat-card p {
    font-size: 14px;
    color: #6b7280;
    margin: 0;
}

.article-tags {
    display: flex;
    gap: 12px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.tag {
    background-color: #f3f4f6;
    color: #374151;
    padding: 6px 12px;
    border-radius: 16px;
    font-size: 14px;
    font-weight: 500;
}

/* Sidebar */
.article-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.sidebar-card {
    background-color: #f9fafb;
    padding: 30px;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
}

.sidebar-card h3 {
    margin-bottom: 20px;
    color: #1f2937;
}

.sidebar-card ul {
    list-style: none;
    margin: 0;
}

.sidebar-card li {
    margin-bottom: 12px;
}

.sidebar-card a {
    color: #374151;
    line-height: 1.4;
}

.sidebar-card a:hover {
    color: #2563eb;
}

/* Thank You Page */
.thank-you-section {
    padding: 120px 0;
    margin-top: 70px;
    text-align: center;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.thank-you-content svg {
    margin-bottom: 30px;
}

.thank-you-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #1f2937;
}

.thank-you-content p {
    font-size: 1.25rem;
    color: #6b7280;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.thank-you-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Legal Pages */
.legal-section {
    padding: 120px 0 80px;
    margin-top: 70px;
}

.legal-header {
    text-align: center;
    margin-bottom: 60px;
}

.legal-header svg {
    margin-bottom: 30px;
}

.legal-header h1 {
    font-size: 3rem;
    margin-bottom: 16px;
}

.legal-header p {
    color: #6b7280;
    font-size: 1.125rem;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.legal-content h2 {
    margin-top: 40px;
    margin-bottom: 20px;
    color: #1f2937;
}

.legal-content h3 {
    margin-top: 30px;
    margin-bottom: 16px;
    color: #1f2937;
}

.legal-content ul,
.legal-content ol {
    margin-left: 20px;
    margin-bottom: 20px;
}

.legal-content li {
    margin-bottom: 8px;
}

.legal-content strong {
    color: #1f2937;
}

.cookie-table {
    margin: 30px 0;
}

.cookie-table table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 16px;
}

.cookie-table th,
.cookie-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #e5e7eb;
}

.cookie-table th {
    background-color: #f9fafb;
    font-weight: 600;
    color: #1f2937;
}

.cookie-settings-button {
    margin: 30px 0;
    text-align: center;
}

/* Article-specific styles */
.districts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.district-card {
    background-color: #f9fafb;
    padding: 25px;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
}

.district-card svg {
    margin-bottom: 16px;
}

.district-card h3 {
    margin-bottom: 12px;
    color: #1f2937;
}

.tip-box {
    background-color: #fffbeb;
    border: 1px solid #fed7aa;
    border-radius: 8px;
    padding: 30px;
    margin: 30px 0;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.tip-box h3 {
    color: #92400e;
    margin-bottom: 16px;
}

.checklist {
    margin: 30px 0;
}

.checklist h3 {
    color: #1f2937;
    margin-bottom: 20px;
    padding-bottom: 8px;
    border-bottom: 2px solid #e5e7eb;
}

.checklist-item {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    padding: 20px;
    background-color: #f9fafb;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
}

.transport-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 30px 0;
}

.transport-card {
    background-color: #f9fafb;
    padding: 30px;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    text-align: center;
}

.transport-card svg {
    margin-bottom: 20px;
}

.health-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 30px 0;
}

.health-card {
    background-color: #f9fafb;
    padding: 30px;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
}

.health-card svg {
    margin-bottom: 16px;
}

.health-card h3 {
    margin-bottom: 16px;
    color: #1f2937;
}

.health-card ul {
    margin: 0;
}

.contacts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 30px 0;
}

.contact-card {
    background-color: #f9fafb;
    padding: 25px;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
}

.contact-card h4 {
    margin-bottom: 12px;
    color: #1f2937;
}

/* Family article styles */
.criteria-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 30px 0;
}

.criteria-card {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.criteria-card svg {
    margin-bottom: 20px;
}

.criteria-card h3 {
    margin-bottom: 12px;
    color: #1f2937;
}

.ranking-list {
    margin: 40px 0;
}

.ranking-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    padding: 30px;
    background-color: white;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.ranking-item.gold {
    border-color: #fbbf24;
    background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
}

.ranking-item.silver {
    border-color: #9ca3af;
    background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
}

.ranking-item.bronze {
    border-color: #f59e0b;
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.ranking-number {
    font-size: 2rem;
    font-weight: 700;
    color: #1f2937;
    min-width: 50px;
    text-align: center;
}

.ranking-content {
    flex: 1;
}

.ranking-stats {
    display: flex;
    gap: 20px;
    margin-bottom: 16px;
    font-size: 14px;
}

.score {
    color: #10b981;
    font-weight: 600;
}

.population {
    color: #6b7280;
}

.ranking-highlights {
    display: flex;
    gap: 12px;
    margin-top: 16px;
    flex-wrap: wrap;
}

.highlight {
    background-color: #dcfce7;
    color: #166534;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
}

.detail-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin: 30px 0;
    padding: 30px;
    background-color: #f9fafb;
    border-radius: 8px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #2563eb;
}

.stat-label {
    font-size: 14px;
    color: #6b7280;
}

.additional-cities {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.city-brief {
    background-color: #f9fafb;
    padding: 25px;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
}

.city-brief h4 {
    margin-bottom: 12px;
    color: #1f2937;
}

.surprise-box {
    background-color: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: 8px;
    padding: 30px;
    margin: 30px 0;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.surprise-box.success {
    background-color: #f0fdf4;
    border-color: #dcfce7;
}

.surprise-box h3 {
    color: #dc2626;
    margin-bottom: 16px;
}

.surprise-box.success h3 {
    color: #166534;
}

/* Green cities article styles */
.achievement-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 30px 0;
}

.achievement-card {
    background-color: #f0fdf4;
    padding: 30px;
    border-radius: 8px;
    border: 1px solid #dcfce7;
    text-align: center;
}

.achievement-card svg {
    margin-bottom: 16px;
}

.achievement-card h4 {
    margin-bottom: 12px;
    color: #166534;
}

.mobility-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin: 30px 0;
}

.stat-large {
    text-align: center;
    padding: 30px;
    background-color: #f0fdf4;
    border-radius: 8px;
    border: 1px solid #dcfce7;
}

.stat-large .stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: #059669;
    margin-bottom: 12px;
}

.stat-large .stat-label {
    font-size: 16px;
    color: #166534;
}

.energy-projects {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 30px 0;
}

.project-card {
    background-color: #fffbeb;
    padding: 25px;
    border-radius: 8px;
    border: 1px solid #fed7aa;
}

.project-card h4 {
    margin-bottom: 12px;
    color: #92400e;
}

.green-cities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 30px 0;
}

.green-city-card {
    background-color: #f0fdf4;
    padding: 30px;
    border-radius: 8px;
    border: 1px solid #dcfce7;
}

.green-city-card h3 {
    margin-bottom: 12px;
    color: #166534;
}

.green-city-card p strong {
    color: #059669;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 30px 0;
}

.tech-card {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.tech-card svg {
    margin-bottom: 20px;
}

.tech-card h3 {
    margin-bottom: 12px;
    color: #1f2937;
}

/* Newsletter specific */
.newsletter-section {
    padding: 80px 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        gap: 16px;
    }

    .nav-menu.show {
        display: flex;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.125rem;
    }

    .section {
        padding: 60px 0;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .newsletter-content {
        flex-direction: column;
        padding: 40px 20px;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .article-hero .container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .article-hero h1 {
        font-size: 2.5rem;
    }

    .article-content .container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .thank-you-content h1 {
        font-size: 2.5rem;
    }

    .legal-header h1 {
        font-size: 2.5rem;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-buttons {
        justify-content: center;
    }

    .thank-you-actions {
        flex-direction: column;
        align-items: center;
    }

    .ranking-item {
        flex-direction: column;
        text-align: center;
    }

    .ranking-stats {
        flex-direction: column;
        gap: 10px;
    }

    .ranking-highlights {
        justify-content: center;
    }

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

    .stat-large .stat-number {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .section-header h2 {
        font-size: 1.75rem;
    }

    .blog-hero h1 {
        font-size: 2.5rem;
    }

    .article-hero h1 {
        font-size: 2rem;
    }

    .thank-you-content h1 {
        font-size: 2rem;
    }

    .legal-header h1 {
        font-size: 2rem;
    }

    .btn {
        padding: 10px 20px;
        font-size: 14px;
    }

    .cta-button {
        padding: 14px 28px;
        font-size: 16px;
    }
}
