/* 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: #ffffff;
}

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

/* Navigation */
.navbar {
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: bold;
    color: #2c5aa0;
}

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

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #2c5aa0;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c5aa0;
    color: white;
    padding: 20px;
    z-index: 1001;
    display: block;
}

.cookie-banner.hidden {
    display: none;
}

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

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

.cookie-buttons button {
    padding: 8px 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    transition: background-color 0.3s;
}

.cookie-buttons button:first-child {
    background-color: #27ae60;
    color: white;
}

.cookie-buttons button:nth-child(2) {
    background-color: #f39c12;
    color: white;
}

.cookie-buttons button:last-child {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.cookie-buttons button:hover {
    opacity: 0.8;
}

/* Cookie Settings Modal */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1002;
}

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

.cookie-modal-content {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
}

.cookie-modal-content h3 {
    margin-bottom: 20px;
    color: #2c5aa0;
}

.cookie-category {
    margin-bottom: 15px;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

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

.cookie-category input[type="checkbox"] {
    margin-top: 2px;
}

.cookie-category span {
    font-size: 14px;
    color: #666;
}

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

.cookie-modal-buttons button {
    flex: 1;
    padding: 10px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
}

.cookie-modal-buttons button:first-child {
    background-color: #2c5aa0;
    color: white;
}

.cookie-modal-buttons button:last-child {
    background-color: #bdc3c7;
    color: #333;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #3498db 0%, #2c5aa0 100%);
    color: white;
    padding: 120px 0 80px;
    margin-top: 70px;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.hero-text h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    background-color: #e74c3c;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: background-color 0.3s, transform 0.3s;
}

.cta-button:hover {
    background-color: #c0392b;
    transform: translateY(-2px);
}

.hero-image {
    text-align: center;
}

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

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

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

.section-header h2 {
    font-size: 2.5rem;
    color: #2c5aa0;
    margin-bottom: 15px;
}

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

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
}

.about-text p {
    margin-bottom: 20px;
}

.about-stats {
    text-align: center;
}

.stat {
    margin-bottom: 30px;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: bold;
    color: #2c5aa0;
}

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

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.benefit-item {
    text-align: center;
    padding: 30px 20px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.benefit-item svg {
    margin-bottom: 20px;
}

.benefit-item h3 {
    color: #2c5aa0;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.benefit-item p {
    color: #666;
    line-height: 1.6;
}

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

.service-card {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card h3 {
    color: #2c5aa0;
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.service-card p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-rating {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.service-rating span:first-child {
    color: #f39c12;
    font-size: 1.2rem;
}

.service-rating span:last-child {
    font-weight: bold;
    color: #2c5aa0;
}

.services-cta {
    text-align: center;
}

.btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: #2c5aa0;
    padding: 12px 25px;
    text-decoration: none;
    border: 2px solid #2c5aa0;
    border-radius: 6px;
    font-weight: bold;
    transition: all 0.3s;
}

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

/* Achievements Grid */
.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.achievement {
    text-align: center;
    padding: 30px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

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

.achievement h3 {
    color: #2c5aa0;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.achievement p {
    color: #666;
    line-height: 1.6;
}

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

.blog-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.blog-card:hover {
    transform: translateY(-5px);
}

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

.blog-content {
    padding: 25px;
}

.blog-content h3 {
    color: #2c5aa0;
    margin-bottom: 15px;
    font-size: 1.3rem;
    line-height: 1.4;
}

.blog-content p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.read-more {
    color: #e74c3c;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

.read-more:hover {
    color: #c0392b;
}

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

.contact-info h3 {
    color: #2c5aa0;
    margin-bottom: 25px;
    font-size: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.social-links {
    margin-top: 40px;
}

.social-links h4 {
    color: #2c5aa0;
    margin-bottom: 15px;
}

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

.social-icons a {
    transition: transform 0.3s;
}

.social-icons a:hover {
    transform: scale(1.1);
}

/* Forms */
.contact-forms {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.subscription-form,
.newsletter-form {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.subscription-form h3,
.newsletter-form h3 {
    color: #2c5aa0;
    margin-bottom: 20px;
    font-size: 1.4rem;
}

.newsletter-form p {
    color: #666;
    margin-bottom: 20px;
}

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

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    color: #333;
}

.form-group input {
    width: 100%;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus {
    outline: none;
    border-color: #2c5aa0;
}

.checkbox-group label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 2px;
}

.checkbox-group a {
    color: #2c5aa0;
    text-decoration: none;
}

.checkbox-group a:hover {
    text-decoration: underline;
}

.subscription-form button,
.newsletter-form button {
    background-color: #2c5aa0;
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
    width: 100%;
}

.subscription-form button:hover,
.newsletter-form button:hover {
    background-color: #1e3f73;
}

.newsletter-form small {
    display: block;
    margin-top: 15px;
    color: #666;
    font-size: 0.9rem;
}

.newsletter-form small a {
    color: #2c5aa0;
    text-decoration: none;
}

.newsletter-form small a:hover {
    text-decoration: underline;
}

/* Footer */
.footer {
    background-color: #2c5aa0;
    color: white;
    padding: 60px 0 20px;
}

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

.footer-section h4 {
    margin-bottom: 20px;
    font-size: 1.3rem;
}

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

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

.footer-section ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: white;
}

.footer-section p {
    color: #bdc3c7;
    line-height: 1.6;
}

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 20px;
    text-align: center;
    color: #bdc3c7;
}

/* Services Page Styles */
.services-detailed {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.service-detailed {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 40px;
    padding: 40px;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-detailed:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.service-icon {
    text-align: center;
}

.service-info h3 {
    color: #2c5aa0;
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.service-rating {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.stars {
    color: #f39c12;
    font-size: 1.3rem;
}

.rating-score {
    font-weight: bold;
    font-size: 1.1rem;
    color: #2c5aa0;
}

.rating-count {
    color: #666;
    font-size: 0.9rem;
}

.service-price {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.price-from {
    color: #666;
}

.price-amount {
    font-size: 1.5rem;
    font-weight: bold;
    color: #e74c3c;
    margin: 0 5px;
}

.price-unit {
    color: #666;
}

.service-description {
    color: #666;
    line-height: 1.7;
    margin-bottom: 25px;
    font-size: 1.05rem;
}

.service-advantages {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #2c5aa0;
}

.service-advantages h4 {
    color: #2c5aa0;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.service-advantages ul {
    list-style: none;
    padding: 0;
}

.service-advantages li {
    margin-bottom: 8px;
    color: #333;
    font-size: 0.95rem;
}

/* Why Choose Us Grid */
.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.why-choose-item {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.why-choose-item h3 {
    color: #2c5aa0;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.why-choose-item p {
    color: #666;
    line-height: 1.6;
}

/* Process Steps */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.process-step {
    text-align: center;
    padding: 30px 20px;
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: #2c5aa0;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 20px;
}

.process-step h3 {
    color: #2c5aa0;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.process-step p {
    color: #666;
    line-height: 1.6;
}

/* CTA Content */
.cta-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h2 {
    color: #2c5aa0;
    margin-bottom: 20px;
    font-size: 2.2rem;
}

.cta-content p {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 30px;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Thank You Page Styles */
.thank-you-hero {
    background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
    color: white;
    padding: 120px 0 80px;
    margin-top: 70px;
    text-align: center;
}

.thank-you-content {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 20px;
}

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

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

.thank-you-message {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.submission-details {
    background-color: rgba(255,255,255,0.1);
    padding: 25px;
    border-radius: 8px;
    margin-top: 30px;
    text-align: left;
}

.submission-details h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.submission-details p {
    margin-bottom: 10px;
    font-size: 1rem;
}

.thank-you-note {
    font-style: italic;
    opacity: 0.8;
}

/* Next Steps */
.next-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.step {
    text-align: center;
    padding: 30px 20px;
}

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

.step h3 {
    color: #2c5aa0;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.step p {
    color: #666;
    line-height: 1.6;
}

/* Contact Info Grid */
.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.contact-card {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
}

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

.contact-card h3 {
    color: #2c5aa0;
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.contact-card p {
    color: #666;
    margin-bottom: 15px;
    line-height: 1.6;
}

.contact-link {
    color: #e74c3c;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
}

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

.contact-hours {
    color: #999;
    font-size: 0.9rem;
    margin-top: 10px;
}

/* Resources Grid */
.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.resource-card {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
}

.resource-card h3 {
    color: #2c5aa0;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.resource-card p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

/* Article Styles */
.article-container {
    margin-top: 70px;
}

.article-header {
    background: linear-gradient(135deg, #2c5aa0 0%, #3498db 100%);
    color: white;
    padding: 80px 0;
}

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

.article-category {
    background-color: rgba(255,255,255,0.2);
    padding: 5px 12px;
    border-radius: 15px;
    font-weight: 500;
}

.article-header h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.article-excerpt {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 30px;
    line-height: 1.6;
}

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

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: bold;
    font-size: 1.1rem;
}

.author-title {
    opacity: 0.8;
    font-size: 0.9rem;
}

.article-image {
    width: 100%;
    margin-bottom: 50px;
}

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

.article-content .container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.article-body {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
}

.article-body h2 {
    color: #2c5aa0;
    font-size: 1.8rem;
    margin: 40px 0 20px;
}

.article-body h3 {
    color: #2c5aa0;
    font-size: 1.4rem;
    margin: 30px 0 15px;
}

.article-body p {
    margin-bottom: 20px;
}

.article-body ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.article-body li {
    margin-bottom: 8px;
}

.article-highlight {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid #3498db;
    margin: 30px 0;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.article-highlight h3 {
    margin: 0 0 15px;
    color: #2c5aa0;
}

.article-highlight ul {
    margin: 0;
    padding-left: 0;
    list-style: none;
}

.article-highlight li {
    margin-bottom: 8px;
    color: #666;
}

.district-analysis {
    margin: 30px 0;
}

.district-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.district-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.district-rank {
    width: 40px;
    height: 40px;
    background-color: #2c5aa0;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
}

.district-info h4 {
    margin: 0 0 5px;
    color: #2c5aa0;
    font-size: 1.2rem;
}

.district-info p {
    margin: 0 0 8px;
    color: #666;
    font-size: 0.95rem;
}

.district-trend {
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
}

.trend-up {
    background-color: #e8f5e8;
    color: #27ae60;
}

.trend-stable {
    background-color: #fff3cd;
    color: #f39c12;
}

.forecast-box {
    background: linear-gradient(135deg, #3498db 0%, #2c5aa0 100%);
    color: white;
    padding: 30px;
    border-radius: 12px;
    margin: 30px 0;
}

.forecast-box h3 {
    margin: 0 0 20px;
    font-size: 1.5rem;
}

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

.forecast-item {
    text-align: center;
    padding: 15px;
    background-color: rgba(255,255,255,0.1);
    border-radius: 8px;
}

.forecast-metric {
    display: block;
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 8px;
}

.forecast-value {
    font-size: 1.5rem;
    font-weight: bold;
}

.recommendation-section {
    margin: 30px 0;
    padding: 25px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.recommendation-section h3 {
    color: #2c5aa0;
    margin: 0 0 15px;
}

.recommendation-section ul {
    margin: 0 0 25px;
    padding-left: 20px;
}

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

.sidebar-card {
    background-color: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
}

.sidebar-card h3 {
    color: #2c5aa0;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.related-article h4 {
    margin-bottom: 10px;
}

.related-article h4 a {
    color: #2c5aa0;
    text-decoration: none;
    font-size: 1rem;
}

.related-article h4 a:hover {
    text-decoration: underline;
}

.related-article p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 2.2rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .nav-menu {
        display: none;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .benefits-grid,
    .services-preview,
    .achievements-grid,
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .service-detailed {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .article-content .container {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .district-item {
        flex-direction: column;
        text-align: center;
    }
    
    .article-header h1 {
        font-size: 2.2rem;
    }
    
    .thank-you-content h1 {
        font-size: 2.2rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-text h1 {
        font-size: 1.8rem;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .article-header h1 {
        font-size: 1.8rem;
    }
    
    .thank-you-content h1 {
        font-size: 1.8rem;
    }
    
    .forecast-grid {
        grid-template-columns: 1fr;
    }
}

/* Legal Pages Styles */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1rem;
    line-height: 1.7;
    color: #333;
}

.legal-content h2 {
    color: #2c5aa0;
    font-size: 1.6rem;
    margin: 40px 0 20px;
    border-bottom: 2px solid #e1e8ed;
    padding-bottom: 10px;
}

.legal-content h3 {
    color: #2c5aa0;
    font-size: 1.3rem;
    margin: 30px 0 15px;
}

.legal-content h4 {
    color: #34495e;
    font-size: 1.1rem;
    margin: 20px 0 10px;
    font-weight: 600;
}

.legal-content p {
    margin-bottom: 15px;
    text-align: justify;
}

.legal-content ul {
    margin: 15px 0;
    padding-left: 25px;
}

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

.contact-details {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #2c5aa0;
    margin: 20px 0;
}

.contact-details p {
    margin: 0;
    font-weight: 500;
}

.cookie-table {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
    border-left: 4px solid #3498db;
}

.cookie-table h4 {
    color: #2c5aa0;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.cookie-table ul {
    margin: 0;
    padding-left: 20px;
}

.cookie-table li {
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.cookie-table strong {
    color: #e74c3c;
    font-weight: 600;
}

.last-updated {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #e1e8ed;
    text-align: center;
}

.last-updated p {
    color: #666;
    font-style: italic;
    margin: 0;
}

.section__form {
    padding-top: 45px;
    padding-bottom: 45px;
    background: linear-gradient(135deg, #3498db 0%, #2c5aa0 100%);
}
.section__form form{
    width: 50%;
    margin: 0 auto;
}

/* Legal page responsive adjustments */
@media (max-width: 768px) {
    .legal-content {
        padding: 0 15px;
    }
    
    .legal-content h2 {
        font-size: 1.4rem;
    }
    
    .legal-content h3 {
        font-size: 1.2rem;
    }
    
    .legal-content p {
        text-align: left;
    }
        .section__form form {
            width: 100%;
        }
}