/* Общие стили */
:root {
    --primary-color: #3498db;
    --secondary-color: #2980b9;
    --accent-color: #f39c12;
    --dark-color: #2c3e50;
    --light-color: #ecf0f1;
    --text-color: #333;
    --light-text-color: #777;
    --success-color: #2ecc71;
    --error-color: #e74c3c;
    --border-color: #ddd;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --border-radius: 5px;
    --section-padding: 80px 0;
}

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

body {
    font-family: 'Roboto', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #f9f9f9;
    overflow-x: hidden;
}

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

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
    color: var(--dark-color);
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.2rem;
}

p {
    margin-bottom: 20px;
}

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

a:hover {
    color: var(--secondary-color);
}

ul, ol {
    margin-bottom: 20px;
    padding-left: 20px;
}

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

button, .btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: var(--border-radius);
    padding: 10px 20px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    transition: var(--transition);
}

button:hover, .btn:hover {
    background-color: var(--secondary-color);
    color: white;
}

/* Header */
header {
    background-color: white;
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo img {
    height: 50px;
    width: auto;
}

nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

nav ul li {
    margin-left: 30px;
}

nav ul li:first-child {
    margin-left: 0;
}

nav ul li a {
    color: var(--dark-color);
    font-weight: 500;
    padding: 10px 0;
    position: relative;
}

nav ul li a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    bottom: 0;
    left: 0;
    transition: var(--transition);
}

nav ul li a:hover:after,
nav ul li a.active:after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    cursor: pointer;
}

/* Hero Section */
.hero {
    background-color: var(--primary-color);
    color: white;
    text-align: center;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.hero:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.9) 0%, rgba(41, 128, 185, 0.9) 100%);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

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

.hero .slogan {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 30px;
}

/* Terminology Section */
.terminology {
    padding: var(--section-padding);
    background-color: #f4f7f9;
}

.terms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.term-card {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 25px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.term-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.term-card p {
    margin-bottom: 0;
    color: var(--light-text-color);
}

/* Blog Section */
.blog {
    padding: var(--section-padding);
}

.blog h2 {
    text-align: center;
    margin-bottom: 50px;
}

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

.post-card {
    background-color: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}

.post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.post-image {
    height: 250px;
    overflow: hidden;
}

.post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.post-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.post-content h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.post-content h3 a {
    color: var(--dark-color);
}

.post-content h3 a:hover {
    color: var(--primary-color);
}

.post-date {
    color: var(--light-text-color);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.post-excerpt {
    color: var(--text-color);
    margin-bottom: 20px;
    flex-grow: 1;
}

.read-more {
    display: flex;
    align-items: center;
    font-weight: 500;
    color: var(--primary-color);
    margin-top: auto;
}

.read-more svg {
    margin-left: 5px;
    transition: var(--transition);
}

.read-more:hover svg {
    transform: translateX(5px);
}

/* Newsletter Section */
.newsletter {
    background-color: var(--primary-color);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.newsletter h2, .newsletter p {
    color: white;
}

.newsletter-form {
    display: flex;
    max-width: 600px;
    margin: 30px auto 0;
}

.newsletter-form input {
    flex-grow: 1;
    padding: 15px;
    border: none;
    border-top-left-radius: var(--border-radius);
    border-bottom-left-radius: var(--border-radius);
    font-size: 16px;
}

.newsletter-form button {
    background-color: var(--accent-color);
    color: white;
    border: none;
    padding: 0 25px;
    border-top-right-radius: var(--border-radius);
    border-bottom-right-radius: var(--border-radius);
    font-size: 16px;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-form button:hover {
    background-color: #e67e22;
}

/* Footer */
footer {
    background-color: var(--dark-color);
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.footer-info {
    grid-column: 1;
}

.footer-info p {
    color: #bdc3c7;
    margin-bottom: 10px;
}

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

.footer-links h3 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.footer-links ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

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

.footer-links ul li a {
    color: #bdc3c7;
    transition: var(--transition);
}

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

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

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: var(--transition);
}

.social-icons a:hover {
    background-color: var(--primary-color);
}

.social-icons svg {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: #bdc3c7;
    font-size: 0.9rem;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: -100%;
    left: 0;
    right: 0;
    background-color: white;
    padding: 20px;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    transition: bottom 0.5s ease;
}

.cookie-banner.show {
    bottom: 0;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
}

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

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

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

.cookie-customize {
    background-color: var(--primary-color);
}

.cookie-decline {
    background-color: var(--light-text-color);
}

.cookie-learn-more {
    font-size: 0.9rem;
    text-decoration: underline;
}

/* About Page */
.about-hero {
    background-color: var(--primary-color);
    color: white;
    text-align: center;
    padding: 80px 0;
    position: relative;
}

.about-hero:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.9) 0%, rgba(41, 128, 185, 0.9) 100%);
    z-index: 1;
}

.about-hero .container {
    position: relative;
    z-index: 2;
}

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

.about-mission {
    padding: var(--section-padding);
}

.mission-content {
    display: flex;
    gap: 50px;
    align-items: center;
}

.mission-text {
    flex: 1;
}

.mission-image {
    flex: 1;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.mission-image img {
    width: 100%;
    display: block;
}

.team {
    padding: var(--section-padding);
    background-color: #f4f7f9;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.team-member {
    background-color: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.team-member img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.team-member h3 {
    margin: 20px 0 5px;
}

.team-member p {
    color: var(--light-text-color);
    margin: 0 0 10px;
    padding: 0 15px;
}

.team-member .social-icons {
    justify-content: center;
    margin: 15px 0 20px;
}

.values {
    padding: var(--section-padding);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.value-card {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.value-icon {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.value-card h3 {
    margin-bottom: 15px;
}

.value-card p {
    margin-bottom: 0;
    color: var(--light-text-color);
}

.testimonials {
    padding: var(--section-padding);
    background-color: #f4f7f9;
}

.testimonials-slider {
    max-width: 800px;
    margin: 40px auto 0;
}

.testimonial {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--shadow);
}

.testimonial-content {
    margin-bottom: 20px;
}

.testimonial-content p {
    font-style: italic;
    margin-bottom: 0;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
}

.testimonial-author h4 {
    margin-bottom: 0;
}

.testimonial-author p {
    color: var(--light-text-color);
    margin-bottom: 0;
}

.partners {
    padding: var(--section-padding);
}

.partners-logo {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 40px;
}

.partners-logo img {
    height: 60px;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: var(--transition);
}

.partners-logo img:hover {
    filter: grayscale(0);
    opacity: 1;
}

.cta {
    padding: 60px 0;
    background-color: var(--primary-color);
    color: white;
    text-align: center;
}

.cta h2, .cta p {
    color: white;
}

.cta p {
    max-width: 600px;
    margin: 0 auto 30px;
}

.cta .btn {
    background-color: white;
    color: var(--primary-color);
    padding: 15px 30px;
    font-size: 1.1rem;
}

.cta .btn:hover {
    background-color: var(--accent-color);
    color: white;
}

/* Contact Page */
.contact-hero {
    background-color: var(--primary-color);
    color: white;
    text-align: center;
    padding: 80px 0;
    position: relative;
}

.contact-hero:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.9) 0%, rgba(41, 128, 185, 0.9) 100%);
    z-index: 1;
}

.contact-hero .container {
    position: relative;
    z-index: 2;
}

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

.contact-info {
    padding: 60px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.contact-card {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.contact-card h3 {
    margin-bottom: 15px;
}

.contact-card p, .contact-card a {
    color: var(--light-text-color);
    margin-bottom: 0;
}

.contact-card a:hover {
    color: var(--primary-color);
}

.contact-form-section {
    padding: 60px 0;
    background-color: #f4f7f9;
}

.form-and-map {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-form {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: var(--shadow);
}

.contact-form h2 {
    margin-bottom: 30px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    font-size: 16px;
}

.form-group.checkbox {
    display: flex;
    align-items: center;
}

.form-group.checkbox input {
    width: auto;
    margin-right: 10px;
}

.form-group.checkbox label {
    margin-bottom: 0;
    font-weight: normal;
}

.map-container {
    border-radius: var(--border-radius);
    overflow: hidden;
    height: 100%;
    min-height: 400px;
    box-shadow: var(--shadow);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.faq {
    padding: 60px 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
}

.faq-item {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 25px;
    box-shadow: var(--shadow);
}

.faq-item h3 {
    margin-bottom: 15px;
    color: var(--primary-color);
}

.faq-item p {
    color: var(--light-text-color);
    margin-bottom: 0;
}

.thank-you-popup {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.thank-you-popup.show {
    opacity: 1;
    visibility: visible;
}

.popup-content {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: var(--shadow);
    max-width: 500px;
    width: 90%;
    text-align: center;
}

.popup-content h3 {
    margin: 20px 0;
}

.popup-content button {
    margin-top: 20px;
    padding: 10px 30px;
}

.checkmark {
    color: var(--success-color);
}

/* Blog Post Page */
.blog-post {
    padding: 60px 0;
}

.post-header {
    margin-bottom: 40px;
}

.post-header h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.post-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
}

.post-author {
    display: flex;
    align-items: center;
}

.post-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
}

.post-author span {
    font-weight: 500;
}

.post-date {
    color: var(--light-text-color);
}

.post-featured-image {
    border-radius: var(--border-radius);
    overflow: hidden;
    height: 500px;
}

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

.post-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
}

.post-content h2, 
.post-content h3 {
    margin-top: 40px;
}

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

.post-content li {
    margin-bottom: 10px;
}

.post-tags {
    margin-top: 40px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.tag-label {
    font-weight: 500;
    margin-right: 10px;
}

.tag {
    display: inline-block;
    background-color: #e1f0fa;
    color: var(--primary-color);
    padding: 5px 15px;
    border-radius: 20px;
    margin-right: 10px;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.tag:hover {
    background-color: var(--primary-color);
    color: white;
}

.post-share {
    margin-top: 30px;
    display: flex;
    align-items: center;
}

.post-share span {
    font-weight: 500;
    margin-right: 15px;
}

.post-share a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background-color: #f4f7f9;
    border-radius: 50%;
    margin-right: 10px;
    transition: var(--transition);
}

.post-share a:hover {
    background-color: var(--primary-color);
}

.post-share a:hover svg {
    color: white;
}

.post-share svg {
    color: var(--dark-color);
}

.case-study {
    background-color: #f4f7f9;
    border-radius: var(--border-radius);
    padding: 30px;
    margin: 30px 0;
}

.case-image {
    border-radius: var(--border-radius);
    overflow: hidden;
    margin-bottom: 20px;
}

.case-image img {
    width: 100%;
}

.case-details ul {
    list-style: none;
    padding: 0;
}

.case-details li {
    margin-bottom: 10px;
}

.comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 30px 0;
}

.comparison-item {
    background-color: #f4f7f9;
    border-radius: var(--border-radius);
    padding: 20px;
}

.comparison-item h4 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.comparison-item p {
    margin-bottom: 0;
}

.alert {
    background-color: #fdf2e9;
    border-left: 4px solid var(--accent-color);
    padding: 20px;
    margin: 30px 0;
    border-radius: var(--border-radius);
}

.disclaimer {
    background-color: #f4f7f9;
    padding: 20px;
    margin: 30px 0;
    border-radius: var(--border-radius);
    font-size: 0.9rem;
}

.related-posts {
    padding: 60px 0;
    background-color: #f4f7f9;
}

.related-posts h2 {
    text-align: center;
    margin-bottom: 40px;
}

.related-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.related-post-card {
    background-color: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.related-post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.related-post-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: var(--transition);
}

.related-post-card:hover img {
    transform: scale(1.05);
}

.related-post-card h3 {
    padding: 0 20px;
    margin: 20px 0 10px;
    font-size: 1.2rem;
}

.related-post-card p {
    padding: 0 20px 20px;
    color: var(--light-text-color);
    margin: 0;
}

.statistics {
    background-color: #f4f7f9;
    border-radius: var(--border-radius);
    padding: 25px;
    margin: 30px 0;
}

.statistics h3 {
    margin-bottom: 20px;
}

.statistics ul {
    margin-bottom: 0;
}

.recommendation {
    background-color: #e8f4fc;
    border-radius: var(--border-radius);
    padding: 25px;
    margin: 30px 0;
    border-left: 4px solid var(--primary-color);
}

.recommendation h4 {
    margin-bottom: 15px;
}

.recommendation p {
    margin-bottom: 10px;
}

.recommendation ul {
    margin-bottom: 0;
}

.comparison-table {
    margin: 30px 0;
    overflow-x: auto;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
}

.comparison-table th, 
.comparison-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.comparison-table th {
    background-color: #f4f7f9;
    font-weight: 500;
}

.strategy {
    background-color: #f4f7f9;
    border-radius: var(--border-radius);
    padding: 25px;
    margin: 30px 0;
}

.strategy h4 {
    margin-bottom: 15px;
}

.strategy ul {
    margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero .slogan {
        font-size: 1.3rem;
    }
    
    .post-header h1 {
        font-size: 2.2rem;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-info {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.6rem;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    nav ul {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: white;
        flex-direction: column;
        align-items: center;
        padding: 30px 0;
        transition: left 0.3s ease;
    }
    
    nav ul.active {
        left: 0;
    }
    
    nav ul li {
        margin: 15px 0;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero .slogan {
        font-size: 1.1rem;
    }
    
    .mission-content {
        flex-direction: column;
    }
    
    .post-header h1 {
        font-size: 2rem;
    }
    
    .post-featured-image {
        height: 300px;
    }
    
    .comparison {
        grid-template-columns: 1fr;
    }
    
    .form-and-map {
        grid-template-columns: 1fr;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-info {
        grid-column: 1;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.8rem;
    }
    
    h2 {
        font-size: 1.4rem;
    }
    
    .hero {
        padding: 80px 0;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .hero .slogan {
        font-size: 1rem;
    }
    
    .post-header h1 {
        font-size: 1.8rem;
    }
    
    .post-featured-image {
        height: 200px;
    }
    
    .post-meta {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .post-date {
        margin-top: 10px;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form input {
        border-radius: var(--border-radius);
        margin-bottom: 10px;
    }
    
    .newsletter-form button {
        border-radius: var(--border-radius);
        width: 100%;
    }
}
