:root {
--primary-color: #2C5F8D;
--secondary-color: #4A90C9;
--accent-color: #F39C12;
--text-dark: #1A1A1A;
--text-light: #4A4A4A;
--background-light: #F8F9FA;
--background-white: #FFFFFF;
--border-color: #E0E0E0;
--success-color: #27AE60;
--error-color: #E74C3C;
--shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
--shadow-md: 0 4px 16px rgba(0,0,0,0.12);
--shadow-lg: 0 8px 32px rgba(0,0,0,0.16);
--transition: all 0.3s ease;
}

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

body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
line-height: 1.7;
color: var(--text-dark);
background-color: var(--background-light);
}

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

.main-navigation {
background: var(--background-white);
box-shadow: var(--shadow-sm);
position: sticky;
top: 0;
z-index: 1000;
border-bottom: 3px solid var(--primary-color);
}

.nav-wrapper {
max-width: 1200px;
margin: 0 auto;
padding: 16px 24px;
display: flex;
justify-content: space-between;
align-items: center;
}

.logo-section {
display: flex;
align-items: center;
gap: 12px;
}

.site-logo {
width: 50px;
height: 50px;
border-radius: 50%;
object-fit: cover;
border: 2px solid var(--primary-color);
}

.brand-name {
font-size: 20px;
font-weight: 700;
color: var(--primary-color);
}

.nav-links {
display: flex;
list-style: none;
gap: 32px;
}

.nav-links a {
text-decoration: none;
color: var(--text-dark);
font-weight: 500;
font-size: 16px;
transition: var(--transition);
position: relative;
}

.nav-links a::after {
content: '';
position: absolute;
bottom: -4px;
left: 0;
width: 0;
height: 2px;
background: var(--accent-color);
transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active-link::after {
width: 100%;
}

.nav-links a:hover,
.nav-links a.active-link {
color: var(--secondary-color);
}

.mobile-toggle {
display: none;
flex-direction: column;
gap: 5px;
background: none;
border: none;
cursor: pointer;
padding: 8px;
}

.burger-line {
width: 28px;
height: 3px;
background: var(--primary-color);
border-radius: 2px;
transition: var(--transition);
}

.hero-section {
position: relative;
min-height: 600px;
display: flex;
align-items: center;
justify-content: center;
overflow: hidden;
background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

.hero-overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.4);
z-index: 1;
}

.hero-content {
position: relative;
z-index: 2;
text-align: center;
color: var(--background-white);
max-width: 800px;
padding: 48px 24px;
}

.hero-title {
font-size: 48px;
font-weight: 700;
margin-bottom: 24px;
line-height: 1.2;
text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
font-size: 22px;
margin-bottom: 32px;
line-height: 1.6;
opacity: 0.95;
}

.hero-image {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
object-fit: cover;
z-index: 0;
}

.cta-button-3d {
display: inline-block;
padding: 16px 40px;
background: linear-gradient(145deg, var(--accent-color), #E67E22);
color: var(--background-white);
text-decoration: none;
font-weight: 600;
font-size: 18px;
border-radius: 50px;
box-shadow: 0 6px 20px rgba(243, 156, 18, 0.4),
            inset 0 -2px 5px rgba(0,0,0,0.2);
transition: var(--transition);
position: relative;
overflow: hidden;
}

.cta-button-3d::before {
content: '';
position: absolute;
top: 0;
left: -100%;
width: 100%;
height: 100%;
background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
transition: left 0.5s;
}

.cta-button-3d:hover::before {
left: 100%;
}

.cta-button-3d:hover {
transform: translateY(-3px);
box-shadow: 0 10px 30px rgba(243, 156, 18, 0.5),
            inset 0 -2px 5px rgba(0,0,0,0.2);
}

.cta-button-3d:active {
transform: translateY(-1px);
box-shadow: 0 4px 15px rgba(243, 156, 18, 0.4);
}

.features-showcase {
padding: 80px 0;
background: var(--background-white);
}

.section-heading {
text-align: center;
font-size: 38px;
font-weight: 700;
color: var(--primary-color);
margin-bottom: 48px;
position: relative;
}

.section-heading::after {
content: '';
display: block;
width: 80px;
height: 4px;
background: var(--accent-color);
margin: 16px auto 0;
border-radius: 2px;
}

.features-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 32px;
}

.feature-card {
background: var(--background-light);
padding: 36px 28px;
border-radius: 16px;
text-align: center;
transition: var(--transition);
border: 2px solid transparent;
}

.feature-card:hover {
transform: translateY(-8px);
box-shadow: var(--shadow-lg);
border-color: var(--secondary-color);
background: var(--background-white);
}

.feature-icon {
font-size: 56px;
margin-bottom: 20px;
}

.feature-card h3 {
font-size: 22px;
color: var(--primary-color);
margin-bottom: 16px;
font-weight: 600;
}

.feature-card p {
color: var(--text-light);
font-size: 16px;
line-height: 1.6;
}

.intro-section {
padding: 80px 0;
background: var(--background-light);
}

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

.intro-text h2 {
font-size: 36px;
color: var(--primary-color);
margin-bottom: 24px;
}

.intro-text p {
font-size: 17px;
color: var(--text-light);
margin-bottom: 20px;
line-height: 1.8;
}

.benefits-list {
list-style: none;
margin-top: 28px;
}

.benefits-list li {
padding: 12px 0;
font-size: 17px;
color: var(--text-dark);
}

.intro-visual {
position: relative;
}

.intro-image {
width: 100%;
height: auto;
border-radius: 16px;
box-shadow: var(--shadow-md);
}

.latest-posts {
padding: 80px 0;
background: var(--background-white);
}

.posts-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
gap: 36px;
margin-bottom: 48px;
}

.post-preview {
background: var(--background-light);
border-radius: 16px;
overflow: hidden;
transition: var(--transition);
box-shadow: var(--shadow-sm);
}

.post-preview:hover {
transform: translateY(-6px);
box-shadow: var(--shadow-lg);
}

.post-thumbnail {
width: 100%;
height: 240px;
object-fit: cover;
}

.post-content {
padding: 28px;
}

.post-content h3 {
font-size: 20px;
margin-bottom: 16px;
line-height: 1.4;
}

.post-content h3 a {
color: var(--text-dark);
text-decoration: none;
transition: var(--transition);
}

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

.post-content p {
color: var(--text-light);
font-size: 15px;
line-height: 1.6;
margin-bottom: 20px;
}

.read-more-link {
color: var(--secondary-color);
text-decoration: none;
font-weight: 600;
font-size: 15px;
transition: var(--transition);
}

.read-more-link:hover {
color: var(--accent-color);
}

.center-button {
text-align: center;
margin-top: 48px;
}

.newsletter-section {
padding: 80px 0;
background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.newsletter-box {
max-width: 700px;
margin: 0 auto;
text-align: center;
color: var(--background-white);
}

.newsletter-box h2 {
font-size: 34px;
margin-bottom: 16px;
}

.newsletter-box p {
font-size: 18px;
margin-bottom: 32px;
opacity: 0.95;
}

.newsletter-form {
display: flex;
gap: 12px;
max-width: 540px;
margin: 0 auto;
}

.email-input {
flex: 1;
padding: 16px 24px;
border: none;
border-radius: 50px;
font-size: 16px;
outline: none;
}

.faq-section {
padding: 80px 0;
background: var(--background-light);
}

.faq-container {
max-width: 800px;
margin: 0 auto;
}

.faq-item {
background: var(--background-white);
margin-bottom: 16px;
border-radius: 12px;
overflow: hidden;
box-shadow: var(--shadow-sm);
}

.faq-question {
width: 100%;
padding: 24px;
background: none;
border: none;
text-align: left;
font-size: 18px;
font-weight: 600;
color: var(--text-dark);
cursor: pointer;
display: flex;
justify-content: space-between;
align-items: center;
transition: var(--transition);
}

.faq-question:hover {
color: var(--secondary-color);
}

.faq-toggle {
font-size: 28px;
color: var(--accent-color);
transition: var(--transition);
}

.faq-item.active .faq-toggle {
transform: rotate(45deg);
}

.faq-answer {
max-height: 0;
overflow: hidden;
transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
max-height: 500px;
}

.faq-answer p {
padding: 0 24px 24px;
color: var(--text-light);
line-height: 1.7;
font-size: 16px;
}

.site-footer {
background: var(--text-dark);
color: var(--background-white);
padding: 60px 0 24px;
}

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

.footer-column h4 {
font-size: 19px;
margin-bottom: 20px;
color: var(--accent-color);
}

.footer-logo {
width: 60px;
height: 60px;
border-radius: 50%;
margin-bottom: 16px;
}

.footer-column p {
font-size: 14px;
line-height: 1.7;
opacity: 0.85;
}

.footer-links,
.footer-contact {
list-style: none;
}

.footer-links li,
.footer-contact li {
margin-bottom: 12px;
}

.footer-links a {
color: var(--background-white);
text-decoration: none;
font-size: 15px;
opacity: 0.85;
transition: var(--transition);
}

.footer-links a:hover {
opacity: 1;
color: var(--accent-color);
}

.footer-contact li {
font-size: 14px;
opacity: 0.85;
line-height: 1.6;
}

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

.footer-bottom p {
font-size: 14px;
opacity: 0.7;
}

.cookie-banner {
position: fixed;
bottom: -100%;
left: 0;
right: 0;
background: var(--background-white);
box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
padding: 24px;
z-index: 10000;
transition: bottom 0.4s ease;
}

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

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

.cookie-text h3 {
font-size: 20px;
margin-bottom: 8px;
color: var(--primary-color);
}

.cookie-text p {
font-size: 14px;
color: var(--text-light);
margin-bottom: 8px;
line-height: 1.6;
}

.cookie-link {
color: var(--secondary-color);
text-decoration: none;
font-size: 14px;
font-weight: 600;
}

.cookie-actions {
display: flex;
gap: 12px;
flex-wrap: wrap;
}

.cookie-btn {
padding: 12px 24px;
border: none;
border-radius: 8px;
font-size: 14px;
font-weight: 600;
cursor: pointer;
transition: var(--transition);
}

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

.cookie-btn.accept-all:hover {
background: #229954;
}

.cookie-btn.customize {
background: var(--secondary-color);
color: var(--background-white);
}

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

.cookie-btn.decline {
background: var(--background-light);
color: var(--text-dark);
border: 1px solid var(--border-color);
}

.cookie-btn.decline:hover {
background: var(--border-color);
}

.thank-you-modal {
display: none;
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.6);
z-index: 10001;
justify-content: center;
align-items: center;
}

.thank-you-modal.show {
display: flex;
}

.modal-content {
background: var(--background-white);
padding: 48px;
border-radius: 16px;
text-align: center;
max-width: 480px;
position: relative;
box-shadow: var(--shadow-lg);
animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
from {
transform: translateY(-50px);
opacity: 0;
}
to {
transform: translateY(0);
opacity: 1;
}
}

.close-modal {
position: absolute;
top: 16px;
right: 20px;
font-size: 32px;
cursor: pointer;
color: var(--text-light);
line-height: 1;
}

.close-modal:hover {
color: var(--text-dark);
}

.modal-content h2 {
font-size: 28px;
color: var(--success-color);
margin-bottom: 16px;
}

.modal-content p {
font-size: 17px;
color: var(--text-light);
line-height: 1.6;
}

.page-header {
background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
color: var(--background-white);
padding: 80px 0;
text-align: center;
}

.page-header h1 {
font-size: 42px;
margin-bottom: 16px;
}

.page-header p {
font-size: 19px;
opacity: 0.95;
}

.blog-main {
padding: 60px 0;
background: var(--background-light);
}

.blog-grid {
display: grid;
gap: 40px;
}

.blog-card {
display: grid;
grid-template-columns: 360px 1fr;
gap: 32px;
background: var(--background-white);
border-radius: 16px;
overflow: hidden;
box-shadow: var(--shadow-sm);
transition: var(--transition);
}

.blog-card:hover {
box-shadow: var(--shadow-lg);
transform: translateY(-4px);
}

.blog-image-wrapper {
position: relative;
}

.blog-card-image {
width: 100%;
height: 100%;
object-fit: cover;
}

.blog-category {
position: absolute;
top: 16px;
left: 16px;
background: var(--accent-color);
color: var(--background-white);
padding: 6px 16px;
border-radius: 20px;
font-size: 13px;
font-weight: 600;
}

.blog-card-content {
padding: 32px 32px 32px 0;
display: flex;
flex-direction: column;
justify-content: space-between;
}

.blog-card-content h2 {
font-size: 24px;
margin-bottom: 16px;
line-height: 1.4;
}

.blog-card-content h2 a {
color: var(--text-dark);
text-decoration: none;
transition: var(--transition);
}

.blog-card-content h2 a:hover {
color: var(--secondary-color);
}

.blog-excerpt {
font-size: 15px;
color: var(--text-light);
line-height: 1.7;
margin-bottom: 20px;
}

.blog-meta {
display: flex;
justify-content: space-between;
align-items: center;
}

.blog-date {
font-size: 14px;
color: var(--text-light);
}

.blog-read-more {
color: var(--secondary-color);
text-decoration: none;
font-weight: 600;
font-size: 15px;
transition: var(--transition);
}

.blog-read-more:hover {
color: var(--accent-color);
}

.about-main {
background: var(--background-light);
}

.mission-section {
padding: 60px 0;
background: var(--background-white);
}

.mission-content {
max-width: 900px;
margin: 0 auto;
}

.mission-content h2 {
font-size: 36px;
color: var(--primary-color);
margin-bottom: 28px;
text-align: center;
}

.mission-content p {
font-size: 17px;
color: var(--text-light);
line-height: 1.8;
margin-bottom: 20px;
}

.values-section {
padding: 80px 0;
background: var(--background-light);
}

.values-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
gap: 32px;
}

.value-card {
background: var(--background-white);
padding: 36px 28px;
border-radius: 16px;
text-align: center;
box-shadow: var(--shadow-sm);
transition: var(--transition);
}

.value-card:hover {
transform: translateY(-6px);
box-shadow: var(--shadow-md);
}

.value-icon {
font-size: 52px;
margin-bottom: 20px;
}

.value-card h3 {
font-size: 22px;
color: var(--primary-color);
margin-bottom: 12px;
}

.value-card p {
color: var(--text-light);
font-size: 15px;
line-height: 1.6;
}

.team-section {
padding: 80px 0;
background: var(--background-white);
}

.team-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 36px;
}

.team-member {
background: var(--background-light);
border-radius: 16px;
overflow: hidden;
text-align: center;
padding: 32px 24px;
transition: var(--transition);
box-shadow: var(--shadow-sm);
}

.team-member:hover {
transform: translateY(-6px);
box-shadow: var(--shadow-md);
}

.team-photo {
width: 200px;
height: 200px;
border-radius: 50%;
object-fit: cover;
margin-bottom: 20px;
border: 4px solid var(--secondary-color);
}

.team-member h3 {
font-size: 22px;
color: var(--primary-color);
margin-bottom: 8px;
}

.team-role {
font-size: 15px;
color: var(--accent-color);
font-weight: 600;
margin-bottom: 16px;
}

.team-bio {
font-size: 14px;
color: var(--text-light);
line-height: 1.7;
}

.stats-section {
padding: 80px 0;
background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
color: var(--background-white);
}

.stats-section .section-heading {
color: var(--background-white);
}

.stats-section .section-heading::after {
background: var(--accent-color);
}

.stats-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
gap: 32px;
}

.stat-card {
text-align: center;
padding: 32px 20px;
}

.stat-number {
font-size: 48px;
font-weight: 700;
color: var(--accent-color);
margin-bottom: 12px;
}

.stat-label {
font-size: 18px;
opacity: 0.95;
}

.cta-section {
padding: 80px 0;
background: var(--background-light);
text-align: center;
}

.cta-section h2 {
font-size: 36px;
color: var(--primary-color);
margin-bottom: 16px;
}

.cta-section p {
font-size: 18px;
color: var(--text-light);
margin-bottom: 32px;
}

.contact-main {
padding: 60px 0;
background: var(--background-light);
}

.contact-layout {
display: grid;
grid-template-columns: 1.5fr 1fr;
gap: 48px;
}

.contact-form-section h2,
.contact-info-section h2 {
font-size: 30px;
color: var(--primary-color);
margin-bottom: 16px;
}

.contact-form-section p {
color: var(--text-light);
margin-bottom: 32px;
font-size: 16px;
}

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

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

.form-group label {
font-size: 15px;
font-weight: 600;
color: var(--text-dark);
margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
padding: 14px 16px;
border: 2px solid var(--border-color);
border-radius: 8px;
font-size: 15px;
font-family: inherit;
transition: var(--transition);
outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
border-color: var(--secondary-color);
}

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

.contact-info-card {
background: var(--background-white);
padding: 32px;
border-radius: 16px;
box-shadow: var(--shadow-sm);
}

.contact-info-item {
display: flex;
gap: 20px;
margin-bottom: 28px;
}

.contact-info-item:last-child {
margin-bottom: 0;
}

.contact-icon {
font-size: 32px;
flex-shrink: 0;
}

.contact-details h3 {
font-size: 18px;
color: var(--primary-color);
margin-bottom: 8px;
}

.contact-details p {
font-size: 15px;
color: var(--text-light);
line-height: 1.7;
}

.contact-details a {
color: var(--secondary-color);
text-decoration: none;
}

.contact-details a:hover {
text-decoration: underline;
}

.newsletter-contact {
background: var(--background-white);
padding: 28px;
border-radius: 16px;
box-shadow: var(--shadow-sm);
}

.newsletter-contact h3 {
font-size: 20px;
color: var(--primary-color);
margin-bottom: 12px;
}

.newsletter-contact p {
font-size: 14px;
color: var(--text-light);
margin-bottom: 20px;
}

.post-article {
background: var(--background-light);
}

.post-header {
background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
color: var(--background-white);
padding: 48px 0 32px;
}

.post-meta-top {
display: flex;
gap: 16px;
align-items: center;
margin-bottom: 20px;
font-size: 14px;
}

.post-category {
background: var(--accent-color);
padding: 6px 16px;
border-radius: 20px;
font-weight: 600;
}

.post-date {
opacity: 0.9;
}

.post-header h1 {
font-size: 44px;
line-height: 1.3;
margin-bottom: 20px;
}

.post-intro {
font-size: 20px;
opacity: 0.95;
line-height: 1.6;
}

.post-featured-image {
max-width: 1200px;
margin: -60px auto 0;
padding: 0 24px;
position: relative;
z-index: 1;
}

.post-featured-image img {
width: 100%;
height: auto;
border-radius: 16px;
box-shadow: var(--shadow-lg);
}

.post-content-wrapper {
padding: 80px 0;
}

.post-body {
max-width: 820px;
margin: 0 auto;
background: var(--background-white);
padding: 60px;
border-radius: 16px;
box-shadow: var(--shadow-sm);
}

.post-body h2 {
font-size: 30px;
color: var(--primary-color);
margin: 40px 0 20px;
line-height: 1.4;
}

.post-body p {
font-size: 17px;
color: var(--text-dark);
line-height: 1.9;
margin-bottom: 24px;
}

.post-body strong {
color: var(--primary-color);
font-weight: 600;
}

.post-author-box {
max-width: 820px;
margin: 40px auto 0;
background: var(--background-white);
padding: 32px;
border-radius: 16px;
box-shadow: var(--shadow-sm);
display: flex;
gap: 24px;
align-items: center;
}

.author-avatar {
width: 80px;
height: 80px;
border-radius: 50%;
object-fit: cover;
border: 3px solid var(--secondary-color);
}

.author-info h3 {
font-size: 18px;
color: var(--primary-color);
margin-bottom: 8px;
}

.author-info p {
font-size: 15px;
color: var(--text-light);
line-height: 1.6;
}

.related-posts {
max-width: 820px;
margin: 40px auto 0;
}

.related-posts h3 {
font-size: 26px;
color: var(--primary-color);
margin-bottom: 24px;
}

.related-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 24px;
}

.related-link {
display: block;
background: var(--background-white);
border-radius: 12px;
overflow: hidden;
box-shadow: var(--shadow-sm);
transition: var(--transition);
text-decoration: none;
}

.related-link:hover {
transform: translateY(-4px);
box-shadow: var(--shadow-md);
}

.related-link img {
width: 100%;
height: 180px;
object-fit: cover;
}

.related-link span {
display: block;
padding: 20px;
color: var(--text-dark);
font-size: 16px;
font-weight: 600;
line-height: 1.4;
}

@media (max-width: 968px) {
.nav-links {
position: fixed;
top: 82px;
left: -100%;
flex-direction: column;
background: var(--background-white);
width: 100%;
padding: 24px;
box-shadow: var(--shadow-md);
transition: left 0.3s ease;
gap: 16px;
}

.nav-links.active {
left: 0;
}

.mobile-toggle {
display: flex;
}

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

.hero-subtitle {
font-size: 18px;
}

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

.blog-card {
grid-template-columns: 1fr;
}

.blog-image-wrapper {
height: 240px;
}

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

.contact-layout {
grid-template-columns: 1fr;
}

.post-header h1 {
font-size: 32px;
}

.post-body {
padding: 32px 24px;
}

.post-body h2 {
font-size: 26px;
}

.team-grid {
grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

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

@media (max-width: 640px) {
.section-heading {
font-size: 30px;
}

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

.features-grid,
.posts-grid {
grid-template-columns: 1fr;
}

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

.cookie-content {
flex-direction: column;
align-items: flex-start;
}

.cookie-actions {
width: 100%;
}

.cookie-btn {
flex: 1;
}

.post-author-box {
flex-direction: column;
text-align: center;
}

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