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

:root {
--primary-color: #d4567e;
--secondary-color: #f8b5c8;
--accent-color: #9b4d6e;
--text-dark: #2c1a1d;
--text-light: #6b5157;
--background-light: #fff5f7;
--white: #ffffff;
--border-color: #f0d9e0;
--shadow: 0 4px 15px rgba(212, 86, 126, 0.15);
--gradient: linear-gradient(135deg, #d4567e 0%, #f8b5c8 100%);
}

body {
font-family: 'Georgia', 'Times New Roman', serif;
line-height: 1.8;
color: var(--text-dark);
background-color: var(--white);
}

.main-navigation {
background: var(--white);
box-shadow: 0 2px 10px rgba(0,0,0,0.08);
position: sticky;
top: 0;
z-index: 1000;
padding: 1.2rem 0;
}

.nav-container {
max-width: 1400px;
margin: 0 auto;
padding: 0 3rem;
display: flex;
justify-content: space-between;
align-items: center;
}

.logo-section {
flex: 0 0 auto;
}

.logo-img {
height: 65px;
width: auto;
border-radius: 8px;
}

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

.nav-menu li a {
text-decoration: none;
color: var(--text-dark);
font-weight: 500;
font-size: 1.05rem;
transition: color 0.3s ease;
letter-spacing: 0.3px;
}

.nav-menu li a:hover,
.nav-menu li a.active {
color: var(--primary-color);
}

.hero-section {
background: var(--gradient);
padding: 8rem 3rem;
text-align: center;
color: var(--white);
position: relative;
overflow: hidden;
}

.hero-section::before {
content: '';
position: absolute;
top: -50%;
left: -50%;
width: 200%;
height: 200%;
background: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
background-size: 50px 50px;
animation: moveBackground 20s linear infinite;
}

@keyframes moveBackground {
0% {
transform: translate(0, 0);
}
100% {
transform: translate(50px, 50px);
}
}

.hero-content {
position: relative;
z-index: 1;
max-width: 900px;
margin: 0 auto;
}

.hero-section h1 {
font-size: 3.5rem;
margin-bottom: 1.5rem;
font-weight: 700;
text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.hero-section p {
font-size: 1.4rem;
margin-bottom: 2.5rem;
font-weight: 300;
}

.cta-button {
display: inline-block;
padding: 1.2rem 3rem;
background: var(--white);
color: var(--primary-color);
text-decoration: none;
border-radius: 50px;
font-weight: 600;
font-size: 1.1rem;
transition: all 0.3s ease;
box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.cta-button:hover {
transform: translateY(-3px);
box-shadow: 0 6px 25px rgba(0,0,0,0.3);
}

.container-wrapper {
max-width: 1400px;
margin: 0 auto;
padding: 0 3rem;
}

.stats-showcase {
padding: 5rem 0;
background: var(--background-light);
}

.stats-showcase h2 {
text-align: center;
font-size: 2.8rem;
margin-bottom: 3.5rem;
color: var(--primary-color);
}

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

.stat-item {
text-align: center;
padding: 2.5rem;
background: var(--white);
border-radius: 15px;
box-shadow: var(--shadow);
transition: transform 0.3s ease;
}

.stat-item:hover {
transform: translateY(-8px);
}

.stat-number {
font-size: 3.5rem;
font-weight: 700;
color: var(--primary-color);
margin-bottom: 0.8rem;
}

.stat-label {
font-size: 1.2rem;
color: var(--text-light);
font-weight: 500;
}

.services-section,
.process-section,
.pricing-section,
.testimonials-section,
.faq-section,
.location-section {
padding: 6rem 0;
}

.services-section h2,
.process-section h2,
.pricing-section h2,
.testimonials-section h2,
.faq-section h2,
.location-section h2 {
text-align: center;
font-size: 2.8rem;
margin-bottom: 3.5rem;
color: var(--primary-color);
}

.services-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 3rem;
}

.service-card {
background: var(--white);
padding: 2rem;
border-radius: 15px;
box-shadow: var(--shadow);
transition: all 0.3s ease;
}

.service-card:hover {
transform: translateY(-8px);
box-shadow: 0 8px 25px rgba(212, 86, 126, 0.25);
}

.service-image-frame {
border: 5px solid var(--secondary-color);
border-radius: 50%;
overflow: hidden;
width: 200px;
height: 200px;
margin: 0 auto 2rem;
box-shadow: 0 5px 20px rgba(212, 86, 126, 0.2);
transform: rotate(-5deg);
transition: transform 0.3s ease;
}

.service-card:hover .service-image-frame {
transform: rotate(0deg) scale(1.05);
}

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

.service-card h3 {
font-size: 1.8rem;
margin-bottom: 1rem;
color: var(--accent-color);
}

.service-card p {
color: var(--text-light);
line-height: 1.8;
}

.process-section {
background: var(--background-light);
}

.process-timeline {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 2.5rem;
}

.process-step {
background: var(--white);
padding: 2.5rem;
border-radius: 15px;
box-shadow: var(--shadow);
text-align: center;
position: relative;
}

.step-number {
width: 70px;
height: 70px;
background: var(--gradient);
color: var(--white);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 2rem;
font-weight: 700;
margin: 0 auto 1.5rem;
box-shadow: 0 4px 15px rgba(212, 86, 126, 0.3);
}

.process-step h3 {
font-size: 1.6rem;
margin-bottom: 1rem;
color: var(--accent-color);
}

.process-step p {
color: var(--text-light);
}

.pricing-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 3rem;
max-width: 1200px;
margin: 0 auto;
}

.price-card {
background: var(--white);
padding: 3rem 2.5rem;
border-radius: 15px;
box-shadow: var(--shadow);
text-align: center;
transition: all 0.3s ease;
border: 3px solid transparent;
}

.price-card:hover {
transform: translateY(-8px);
border-color: var(--primary-color);
}

.price-card.featured {
background: var(--gradient);
color: var(--white);
transform: scale(1.05);
}

.price-card h3 {
font-size: 2rem;
margin-bottom: 1rem;
}

.price {
font-size: 3rem;
font-weight: 700;
margin: 1.5rem 0;
color: var(--primary-color);
}

.price-card.featured .price {
color: var(--white);
}

.price-card ul {
list-style: none;
margin: 2rem 0;
text-align: left;
}

.price-card ul li {
padding: 0.8rem 0;
border-bottom: 1px solid var(--border-color);
}

.price-card.featured ul li {
border-bottom-color: rgba(255,255,255,0.3);
}

.price-card ul li:before {
content: '✓ ';
color: var(--primary-color);
font-weight: 700;
margin-right: 0.5rem;
}

.price-card.featured ul li:before {
color: var(--white);
}

.testimonials-section {
background: var(--background-light);
}

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

.testimonial-card {
background: var(--white);
padding: 3rem;
border-radius: 15px;
box-shadow: var(--shadow);
position: relative;
}

.testimonial-card:before {
content: '"';
font-size: 5rem;
color: var(--secondary-color);
position: absolute;
top: 1rem;
left: 2rem;
font-family: Georgia, serif;
}

.testimonial-card p {
font-style: italic;
color: var(--text-light);
margin-bottom: 2rem;
position: relative;
z-index: 1;
}

.testimonial-author {
display: flex;
flex-direction: column;
gap: 0.3rem;
}

.testimonial-author strong {
color: var(--primary-color);
font-size: 1.1rem;
}

.testimonial-author span {
color: var(--text-light);
font-size: 0.95rem;
}

.faq-section {
background: var(--white);
}

.faq-list {
max-width: 900px;
margin: 0 auto;
}

.faq-item {
background: var(--background-light);
padding: 2.5rem;
margin-bottom: 2rem;
border-radius: 15px;
border-left: 5px solid var(--primary-color);
box-shadow: var(--shadow);
}

.faq-item h3 {
font-size: 1.5rem;
color: var(--accent-color);
margin-bottom: 1rem;
}

.faq-item p {
color: var(--text-light);
line-height: 1.8;
}

.location-section {
background: var(--background-light);
}

.location-content {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 4rem;
align-items: start;
}

.location-info h3 {
font-size: 2rem;
color: var(--primary-color);
margin-bottom: 1.5rem;
}

.location-info p {
margin-bottom: 1rem;
color: var(--text-dark);
}

.location-info ul {
list-style: none;
margin: 1rem 0;
}

.location-info ul li {
padding: 0.5rem 0;
color: var(--text-light);
}

.location-info a {
color: var(--primary-color);
text-decoration: none;
font-weight: 600;
}

.location-info a:hover {
text-decoration: underline;
}

.location-map {
background: var(--white);
padding: 3rem;
border-radius: 15px;
box-shadow: var(--shadow);
min-height: 400px;
display: flex;
align-items: center;
justify-content: center;
}

.map-placeholder {
text-align: center;
font-size: 1.5rem;
color: var(--text-light);
}

.site-footer {
background: var(--text-dark);
color: var(--white);
padding: 4rem 0 2rem;
margin-top: 4rem;
}

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

.footer-column h4 {
color: var(--secondary-color);
font-size: 1.4rem;
margin-bottom: 1.5rem;
}

.footer-column p {
line-height: 1.8;
color: rgba(255,255,255,0.8);
margin-bottom: 1rem;
}

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

.footer-column ul li {
margin-bottom: 0.8rem;
}

.footer-column ul li a {
color: rgba(255,255,255,0.8);
text-decoration: none;
transition: color 0.3s ease;
}

.footer-column ul li a:hover {
color: var(--secondary-color);
}

.social-links {
display: flex;
gap: 1.5rem;
margin-top: 1.5rem;
}

.social-links a {
color: var(--white);
transition: all 0.3s ease;
}

.social-links a:hover {
color: var(--secondary-color);
transform: translateY(-3px);
}

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

.footer-legal {
display: flex;
justify-content: center;
gap: 2rem;
margin-bottom: 1rem;
flex-wrap: wrap;
}

.footer-legal a {
color: rgba(255,255,255,0.8);
text-decoration: none;
transition: color 0.3s ease;
}

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

.footer-bottom p {
color: rgba(255,255,255,0.6);
}

.cookie-consent {
position: fixed;
bottom: 0;
left: 0;
right: 0;
background: var(--white);
box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
padding: 2rem;
z-index: 10000;
display: none;
}

.cookie-consent.show {
display: block;
animation: slideUp 0.5s ease;
}

@keyframes slideUp {
from {
transform: translateY(100%);
}
to {
transform: translateY(0);
}
}

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

.cookie-content h3 {
color: var(--primary-color);
margin-bottom: 1rem;
font-size: 1.5rem;
}

.cookie-content p {
color: var(--text-light);
margin-bottom: 1.5rem;
line-height: 1.6;
}

.cookie-buttons {
display: flex;
gap: 1rem;
align-items: center;
flex-wrap: wrap;
}

.cookie-btn {
padding: 0.8rem 2rem;
border: none;
border-radius: 50px;
font-weight: 600;
cursor: pointer;
transition: all 0.3s ease;
}

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

.cookie-btn.accept:hover {
transform: translateY(-2px);
box-shadow: 0 4px 15px rgba(212, 86, 126, 0.3);
}

.cookie-btn.decline {
background: transparent;
color: var(--primary-color);
border: 2px solid var(--primary-color);
}

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

.cookie-link {
color: var(--primary-color);
text-decoration: none;
font-weight: 600;
}

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

.page-header {
background: var(--gradient);
padding: 4rem 3rem;
text-align: center;
color: var(--white);
}

.page-header h1 {
font-size: 3rem;
margin-bottom: 1rem;
}

.page-header p {
font-size: 1.3rem;
}

.blog-section {
padding: 6rem 0;
}

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

.blog-card {
background: var(--white);
border-radius: 15px;
overflow: hidden;
box-shadow: var(--shadow);
transition: all 0.3s ease;
}

.blog-card:hover {
transform: translateY(-8px);
box-shadow: 0 8px 25px rgba(212, 86, 126, 0.25);
}

.blog-image-frame {
border: 8px solid var(--secondary-color);
border-radius: 0 50% 50% 0;
overflow: hidden;
transform: rotate(2deg);
margin: 1rem;
box-shadow: 0 5px 20px rgba(212, 86, 126, 0.2);
}

.blog-image-frame img {
width: 100%;
height: 250px;
object-fit: cover;
transition: transform 0.3s ease;
}

.blog-card:hover .blog-image-frame img {
transform: scale(1.1);
}

.blog-content {
padding: 2rem;
}

.blog-meta {
display: flex;
gap: 1rem;
margin-bottom: 1rem;
flex-wrap: wrap;
}

.blog-date,
.blog-category {
font-size: 0.9rem;
color: var(--text-light);
}

.blog-category {
background: var(--secondary-color);
padding: 0.3rem 1rem;
border-radius: 20px;
color: var(--accent-color);
font-weight: 600;
}

.blog-content h2 {
font-size: 1.6rem;
margin-bottom: 1rem;
}

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

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

.blog-content p {
color: var(--text-light);
line-height: 1.7;
margin-bottom: 1.5rem;
}

.read-more {
color: var(--primary-color);
text-decoration: none;
font-weight: 600;
transition: all 0.3s ease;
}

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

.contact-section {
padding: 6rem 0;
}

.contact-grid {
display: grid;
grid-template-columns: 1fr 1.5fr;
gap: 4rem;
}

.contact-info-side {
background: var(--background-light);
padding: 3rem;
border-radius: 15px;
}

.contact-info-side h2 {
color: var(--primary-color);
font-size: 2rem;
margin-bottom: 2rem;
}

.contact-details {
display: flex;
flex-direction: column;
gap: 2rem;
}

.contact-item {
display: flex;
gap: 1.5rem;
align-items: flex-start;
}

.contact-icon {
font-size: 2rem;
flex-shrink: 0;
}

.contact-text h3 {
color: var(--accent-color);
font-size: 1.2rem;
margin-bottom: 0.5rem;
}

.contact-text p,
.contact-text a {
color: var(--text-light);
line-height: 1.7;
}

.contact-text a {
text-decoration: none;
transition: color 0.3s ease;
}

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

.social-connect {
margin-top: 3rem;
}

.social-connect h3 {
color: var(--primary-color);
font-size: 1.3rem;
margin-bottom: 1.5rem;
}

.contact-form-side {
background: var(--white);
padding: 3rem;
border-radius: 15px;
box-shadow: var(--shadow);
}

.contact-form-side h2 {
color: var(--primary-color);
font-size: 2rem;
margin-bottom: 2rem;
}

.contact-form {
display: flex;
flex-direction: column;
gap: 1.5rem;
}

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

.form-group label {
color: var(--text-dark);
font-weight: 600;
margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
padding: 1rem;
border: 2px solid var(--border-color);
border-radius: 8px;
font-family: inherit;
font-size: 1rem;
transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
outline: none;
border-color: var(--primary-color);
box-shadow: 0 0 0 3px rgba(212, 86, 126, 0.1);
}

.submit-btn {
padding: 1.2rem 3rem;
background: var(--gradient);
color: var(--white);
border: none;
border-radius: 50px;
font-weight: 600;
font-size: 1.1rem;
cursor: pointer;
transition: all 0.3s ease;
}

.submit-btn:hover {
transform: translateY(-2px);
box-shadow: 0 4px 15px rgba(212, 86, 126, 0.3);
}

.modal {
display: none;
position: fixed;
z-index: 10001;
left: 0;
top: 0;
width: 100%;
height: 100%;
background-color: rgba(0,0,0,0.6);
}

.modal.show {
display: flex;
align-items: center;
justify-content: center;
animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
from {
opacity: 0;
}
to {
opacity: 1;
}
}

.modal-content {
background-color: var(--white);
padding: 3rem;
border-radius: 15px;
max-width: 500px;
width: 90%;
text-align: center;
position: relative;
animation: slideDown 0.3s ease;
}

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

.modal-close {
position: absolute;
right: 1.5rem;
top: 1rem;
font-size: 2rem;
color: var(--text-light);
cursor: pointer;
transition: color 0.3s ease;
}

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

.modal-content h2 {
color: var(--primary-color);
font-size: 2rem;
margin-bottom: 1rem;
}

.modal-content p {
color: var(--text-light);
line-height: 1.7;
margin-bottom: 2rem;
}

.modal-btn {
padding: 1rem 2.5rem;
background: var(--gradient);
color: var(--white);
border: none;
border-radius: 50px;
font-weight: 600;
cursor: pointer;
transition: all 0.3s ease;
}

.modal-btn:hover {
transform: translateY(-2px);
box-shadow: 0 4px 15px rgba(212, 86, 126, 0.3);
}

.about-intro {
padding: 6rem 0;
background: var(--white);
}

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

.about-content h2 {
color: var(--primary-color);
font-size: 2.5rem;
margin-bottom: 2rem;
text-align: center;
}

.about-content p {
color: var(--text-light);
line-height: 1.9;
margin-bottom: 1.5rem;
font-size: 1.1rem;
}

.team-section {
padding: 6rem 0;
background: var(--background-light);
}

.team-section h2 {
text-align: center;
color: var(--primary-color);
font-size: 2.8rem;
margin-bottom: 3.5rem;
}

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

.team-card {
background: var(--white);
padding: 2.5rem;
border-radius: 15px;
box-shadow: var(--shadow);
text-align: center;
transition: all 0.3s ease;
}

.team-card:hover {
transform: translateY(-8px);
box-shadow: 0 8px 25px rgba(212, 86, 126, 0.25);
}

.team-image-frame {
border: 6px solid var(--secondary-color);
border-radius: 15px 50% 15px 50%;
overflow: hidden;
width: 250px;
height: 250px;
margin: 0 auto 2rem;
box-shadow: 0 5px 20px rgba(212, 86, 126, 0.2);
transform: rotate(-3deg);
transition: transform 0.3s ease;
}

.team-card:hover .team-image-frame {
transform: rotate(0deg);
}

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

.team-card h3 {
font-size: 1.7rem;
color: var(--accent-color);
margin-bottom: 0.5rem;
}

.team-role {
color: var(--primary-color);
font-weight: 600;
font-size: 1.1rem;
margin-bottom: 1rem;
}

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

.values-section {
padding: 6rem 0;
background: var(--white);
}

.values-section h2 {
text-align: center;
color: var(--primary-color);
font-size: 2.8rem;
margin-bottom: 3.5rem;
}

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

.value-item {
text-align: center;
padding: 2.5rem;
background: var(--background-light);
border-radius: 15px;
}

.value-icon {
font-size: 4rem;
margin-bottom: 1.5rem;
}

.value-item h3 {
color: var(--accent-color);
font-size: 1.6rem;
margin-bottom: 1rem;
}

.value-item p {
color: var(--text-light);
line-height: 1.7;
}

.credentials-section {
padding: 6rem 0;
background: var(--background-light);
}

.credentials-section h2 {
text-align: center;
color: var(--primary-color);
font-size: 2.8rem;
margin-bottom: 3.5rem;
}

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

.credentials-content p {
color: var(--text-light);
font-size: 1.2rem;
margin-bottom: 2rem;
text-align: center;
}

.credentials-list {
list-style: none;
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 1.5rem;
}

.credentials-list li {
background: var(--white);
padding: 1.5rem;
border-radius: 10px;
box-shadow: var(--shadow);
}

.credentials-list li:before {
content: '✓ ';
color: var(--primary-color);
font-weight: 700;
margin-right: 0.5rem;
font-size: 1.3rem;
}

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

.post-header {
padding: 3rem 0 2rem;
}

.post-meta-top {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 2rem;
}

.back-link {
color: var(--primary-color);
text-decoration: none;
font-weight: 600;
transition: color 0.3s ease;
}

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

.post-date {
color: var(--text-light);
font-size: 1rem;
}

.post-header h1 {
font-size: 3rem;
color: var(--text-dark);
margin-bottom: 1.5rem;
line-height: 1.3;
}

.post-author-info {
display: flex;
gap: 2rem;
align-items: center;
}

.post-author-info span {
color: var(--text-light);
}

.post-category {
background: var(--secondary-color);
padding: 0.4rem 1.2rem;
border-radius: 20px;
color: var(--accent-color);
font-weight: 600;
}

.post-featured-image {
margin-bottom: 4rem;
}

.post-featured-image .blog-image-frame {
max-width: 900px;
margin: 0 auto;
height: 500px;
border-radius: 15px;
}

.post-featured-image .blog-image-frame img {
height: 100%;
}

.post-content {
padding: 0 0 6rem;
}

.lead-paragraph {
font-size: 1.3rem;
color: var(--accent-color);
line-height: 1.9;
margin-bottom: 3rem;
font-weight: 500;
}

.post-content h2 {
font-size: 2.2rem;
color: var(--primary-color);
margin: 3rem 0 1.5rem;
}

.post-content p {
font-size: 1.1rem;
line-height: 1.9;
color: var(--text-light);
margin-bottom: 1.8rem;
}

@media (max-width: 1024px) {
.nav-container {
padding: 0 2rem;
}
.container-wrapper {
padding: 0 2rem;
}
.hero-section {
padding: 6rem 2rem;
}
.hero-section h1 {
font-size: 2.8rem;
}
.contact-grid,
.location-content {
grid-template-columns: 1fr;
}
}

@media (max-width: 768px) {
.nav-menu {
gap: 1.5rem;
}
.hero-section h1 {
font-size: 2.2rem;
}
.hero-section p {
font-size: 1.2rem;
}
.stats-grid {
grid-template-columns: 1fr;
}
.services-grid,
.blog-grid,
.team-grid {
grid-template-columns: 1fr;
}
.footer-grid {
grid-template-columns: 1fr;
}
.post-header h1 {
font-size: 2.2rem;
}
.post-featured-image .blog-image-frame {
height: 300px;
}
}
