@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;500;600;700&family=Montserrat:wght@300;400;500;600&display=swap');

:root {
--primary-plum: #6B2D5C;
--secondary-pink: #D4A5A5;
--accent-beige: #E8D5C4;
--dark-plum: #4A1F42;
--light-pink: #F5E6E8;
--champagne: #F7EBE8;
--text-dark: #2C1810;
--text-light: #6B5B52;
--white: #FFFFFF;
--shadow: rgba(107, 45, 92, 0.15);
}

* {
margin: 0;
padding: 0;
box-sizing: border-box;
}

body {
font-family: 'Montserrat', sans-serif;
color: var(--text-dark);
background-color: var(--champagne);
line-height: 1.7;
overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
font-family: 'Cormorant Garamond', serif;
font-weight: 600;
line-height: 1.3;
color: var(--dark-plum);
}

a {
text-decoration: none;
color: inherit;
transition: all 0.3s ease;
}

img {
max-width: 100%;
height: auto;
display: block;
}

.main-header {
background-color: var(--white);
box-shadow: 0 2px 15px var(--shadow);
position: sticky;
top: 0;
z-index: 1000;
}

.header-container {
max-width: 1400px;
margin: 0 auto;
padding: 1.2rem 3rem;
display: flex;
justify-content: space-between;
align-items: center;
}

.logo-img {
transition: transform 0.3s ease;
}

.logo-img:hover {
transform: scale(1.05);
}

.primary-navigation {
display: flex;
}

.nav-menu {
display: flex;
list-style: none;
gap: 2.5rem;
align-items: center;
}

.nav-link {
font-size: 0.95rem;
font-weight: 500;
letter-spacing: 0.5px;
color: var(--text-dark);
position: relative;
padding: 0.5rem 0;
}

.nav-link::after {
content: '';
position: absolute;
bottom: 0;
left: 0;
width: 0;
height: 2px;
background: var(--primary-plum);
transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
width: 100%;
}

.hero-section {
position: relative;
height: 85vh;
display: flex;
align-items: center;
justify-content: center;
overflow: hidden;
}

.hero-image {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
object-fit: cover;
z-index: 1;
}

.hero-overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: linear-gradient(135deg, rgba(107, 45, 92, 0.7), rgba(212, 165, 165, 0.5));
z-index: 2;
}

.hero-content {
position: relative;
z-index: 3;
text-align: center;
color: var(--white);
max-width: 800px;
padding: 0 2rem;
}

.typewriter-heading {
font-size: 4.5rem;
margin-bottom: 1.5rem;
font-weight: 700;
text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
overflow: hidden;
border-right: 3px solid var(--white);
white-space: nowrap;
animation: typewriter 3s steps(30) 1s 1 normal both, blinkCursor 0.75s step-end infinite;
display: inline-block;
}

@keyframes typewriter {
from { width: 0; }
to { width: 100%; }
}

@keyframes blinkCursor {
from, to { border-color: transparent; }
50% { border-color: var(--white); }
}

.hero-subtitle {
font-size: 1.5rem;
margin-bottom: 2.5rem;
font-family: 'Cormorant Garamond', serif;
font-weight: 400;
letter-spacing: 2px;
}

.cta-button {
display: inline-block;
padding: 1.2rem 3rem;
background-color: var(--primary-plum);
color: var(--white);
font-size: 1rem;
font-weight: 600;
letter-spacing: 1px;
border-radius: 50px;
box-shadow: 0 8px 20px rgba(107, 45, 92, 0.4);
transition: all 0.3s ease;
}

.cta-button:hover {
background-color: var(--dark-plum);
transform: translateY(-3px);
box-shadow: 0 12px 25px rgba(107, 45, 92, 0.5);
}

.container-standard {
max-width: 1200px;
margin: 0 auto;
padding: 5rem 2rem;
}

.container-wide {
max-width: 1400px;
margin: 0 auto;
padding: 5rem 2rem;
}

.section-title {
font-size: 3rem;
margin-bottom: 1.5rem;
color: var(--primary-plum);
}

.section-title-center {
font-size: 3rem;
text-align: center;
margin-bottom: 3rem;
color: var(--primary-plum);
}

.intro-section {
background-color: var(--white);
}

.intro-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 4rem;
align-items: center;
}

.intro-description {
font-size: 1.1rem;
color: var(--text-light);
margin-bottom: 1.5rem;
line-height: 1.8;
}

.intro-image-wrapper {
border-radius: 10px;
overflow: hidden;
box-shadow: 0 10px 30px var(--shadow);
}

.intro-image {
width: 100%;
height: auto;
transition: transform 0.5s ease;
}

.intro-image:hover {
transform: scale(1.05);
}

.featured-services {
background: linear-gradient(135deg, var(--light-pink), var(--champagne));
}

.services-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 3rem;
margin-top: 3rem;
}

.service-card {
background: var(--white);
border-radius: 15px;
overflow: hidden;
box-shadow: 0 8px 25px var(--shadow);
transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
transform: translateY(-10px);
box-shadow: 0 15px 40px rgba(107, 45, 92, 0.25);
}

.service-icon {
font-size: 3rem;
text-align: center;
padding: 2rem 0 1rem;
}

.service-image {
width: 100%;
height: 300px;
object-fit: cover;
}

.service-title {
font-size: 1.8rem;
text-align: center;
padding: 1.5rem 1rem 0.5rem;
color: var(--primary-plum);
}

.service-description {
padding: 0 1.5rem 1rem;
color: var(--text-light);
text-align: center;
}

.service-price {
text-align: center;
font-size: 1.3rem;
font-weight: 600;
color: var(--dark-plum);
padding-bottom: 2rem;
}

.testimonials-section {
background-color: var(--white);
}

.testimonials-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 2.5rem;
margin-top: 3rem;
}

.testimonial-card {
background: linear-gradient(135deg, var(--light-pink), var(--champagne));
padding: 2.5rem;
border-radius: 15px;
box-shadow: 0 5px 20px var(--shadow);
}

.testimonial-text {
font-style: italic;
color: var(--text-dark);
margin-bottom: 1.5rem;
font-size: 1.05rem;
line-height: 1.7;
}

.testimonial-author {
font-weight: 600;
color: var(--primary-plum);
margin-bottom: 0.5rem;
}

.stars {
color: #DAA520;
font-size: 1.2rem;
}

.cta-section {
background: linear-gradient(135deg, var(--primary-plum), var(--dark-plum));
color: var(--white);
text-align: center;
padding: 5rem 2rem;
}

.cta-content {
max-width: 800px;
margin: 0 auto;
}

.cta-title {
font-size: 3rem;
margin-bottom: 1.5rem;
color: var(--white);
}

.cta-text {
font-size: 1.2rem;
margin-bottom: 2.5rem;
opacity: 0.95;
}

.cta-button-secondary {
display: inline-block;
padding: 1.2rem 3rem;
background-color: var(--white);
color: var(--primary-plum);
font-size: 1rem;
font-weight: 600;
letter-spacing: 1px;
border-radius: 50px;
box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
transition: all 0.3s ease;
}

.cta-button-secondary:hover {
background-color: var(--champagne);
transform: translateY(-3px);
}

.main-footer {
background-color: var(--dark-plum);
color: var(--champagne);
padding: 4rem 2rem 2rem;
}

.footer-container {
max-width: 1400px;
margin: 0 auto;
}

.footer-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 3rem;
margin-bottom: 3rem;
}

.footer-title {
font-size: 1.3rem;
margin-bottom: 1.5rem;
color: var(--secondary-pink);
}

.footer-text {
font-size: 0.95rem;
line-height: 1.7;
opacity: 0.9;
}

.footer-reg {
margin-top: 1rem;
font-size: 0.9rem;
opacity: 0.8;
}

.footer-links {
list-style: none;
}

.footer-links li {
margin-bottom: 0.8rem;
}

.footer-links a {
color: var(--champagne);
opacity: 0.9;
transition: opacity 0.3s ease;
}

.footer-links a:hover {
opacity: 1;
color: var(--secondary-pink);
}

.footer-contact {
margin-bottom: 1rem;
line-height: 1.8;
opacity: 0.9;
}

.footer-hours {
line-height: 1.8;
opacity: 0.9;
}

.footer-bottom {
border-top: 1px solid rgba(232, 213, 196, 0.3);
padding-top: 2rem;
display: flex;
justify-content: space-between;
align-items: center;
}

.footer-legal {
display: flex;
gap: 2rem;
}

.footer-legal a {
color: var(--champagne);
opacity: 0.8;
font-size: 0.9rem;
transition: opacity 0.3s ease;
}

.footer-legal a:hover {
opacity: 1;
color: var(--secondary-pink);
}

.footer-copyright {
font-size: 0.9rem;
opacity: 0.8;
}

.cookie-banner {
position: fixed;
bottom: 0;
left: 0;
right: 0;
background: linear-gradient(135deg, var(--dark-plum), var(--primary-plum));
color: var(--white);
padding: 2rem;
box-shadow: 0 -5px 20px var(--shadow);
z-index: 9999;
display: none;
animation: slideUp 0.5s ease;
}

.cookie-banner.show {
display: block;
}

@keyframes slideUp {
from {
transform: translateY(100%);
}
to {
transform: translateY(0);
}
}

.cookie-content {
max-width: 1200px;
margin: 0 auto;
}

.cookie-content h3 {
font-size: 1.5rem;
margin-bottom: 1rem;
color: var(--white);
}

.cookie-content p {
margin-bottom: 1.5rem;
line-height: 1.6;
opacity: 0.95;
}

.cookie-buttons {
display: flex;
gap: 1rem;
margin-bottom: 1rem;
flex-wrap: wrap;
}

.cookie-accept,
.cookie-decline,
.cookie-customize {
padding: 0.8rem 2rem;
border: none;
border-radius: 50px;
font-weight: 600;
cursor: pointer;
transition: all 0.3s ease;
font-size: 0.95rem;
}

.cookie-accept {
background-color: var(--white);
color: var(--primary-plum);
}

.cookie-accept:hover {
background-color: var(--champagne);
transform: translateY(-2px);
}

.cookie-decline {
background-color: transparent;
color: var(--white);
border: 2px solid var(--white);
}

.cookie-decline:hover {
background-color: rgba(255, 255, 255, 0.1);
}

.cookie-customize {
background-color: var(--secondary-pink);
color: var(--dark-plum);
}

.cookie-customize:hover {
background-color: var(--accent-beige);
}

.cookie-link {
color: var(--champagne);
text-decoration: underline;
opacity: 0.9;
font-size: 0.9rem;
}

.cookie-link:hover {
opacity: 1;
}

.page-hero {
background: linear-gradient(135deg, var(--primary-plum), var(--dark-plum));
color: var(--white);
padding: 5rem 2rem;
text-align: center;
}

.page-hero-content h1 {
color: var(--white);
font-size: 3.5rem;
margin-bottom: 1rem;
}

.page-hero-subtitle {
font-size: 1.3rem;
opacity: 0.95;
font-family: 'Cormorant Garamond', serif;
}

.story-section {
background-color: var(--white);
}

.story-content {
margin-bottom: 3rem;
}

.story-text {
font-size: 1.1rem;
color: var(--text-light);
margin-bottom: 1.5rem;
line-height: 1.8;
}

.story-image-wrapper {
border-radius: 10px;
overflow: hidden;
box-shadow: 0 10px 30px var(--shadow);
}

.story-image {
width: 100%;
transition: transform 0.5s ease;
}

.story-image:hover {
transform: scale(1.05);
}

.team-section {
background: linear-gradient(135deg, var(--light-pink), var(--champagne));
}

.team-intro {
text-align: center;
font-size: 1.2rem;
color: var(--text-light);
margin-bottom: 3rem;
}

.team-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 3rem;
}

.team-member {
background: var(--white);
border-radius: 15px;
overflow: hidden;
box-shadow: 0 8px 25px var(--shadow);
text-align: center;
transition: transform 0.3s ease;
}

.team-member:hover {
transform: translateY(-10px);
}

.team-photo {
width: 100%;
height: 400px;
object-fit: cover;
}

.team-member h3 {
font-size: 1.6rem;
padding: 1.5rem 1rem 0.5rem;
color: var(--primary-plum);
}

.team-role {
font-weight: 600;
color: var(--text-light);
padding: 0 1rem;
margin-bottom: 1rem;
}

.team-bio {
padding: 0 1.5rem 2rem;
color: var(--text-light);
line-height: 1.7;
}

.values-section {
background-color: var(--white);
}

.values-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 3rem;
}

.value-card {
background: linear-gradient(135deg, var(--light-pink), var(--champagne));
padding: 2.5rem;
border-radius: 15px;
box-shadow: 0 5px 20px var(--shadow);
text-align: center;
}

.value-icon {
font-size: 3.5rem;
margin-bottom: 1.5rem;
}

.value-card h3 {
font-size: 1.8rem;
margin-bottom: 1rem;
color: var(--primary-plum);
}

.value-card p {
color: var(--text-light);
line-height: 1.7;
}

.services-detailed {
background-color: var(--white);
}

.service-detail {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 4rem;
margin-bottom: 5rem;
align-items: center;
}

.service-detail.reverse {
direction: rtl;
}

.service-detail.reverse > * {
direction: ltr;
}

.service-detail-image img {
width: 100%;
border-radius: 10px;
box-shadow: 0 10px 30px var(--shadow);
}

.service-detail-content h2 {
font-size: 2.5rem;
margin-bottom: 1.5rem;
color: var(--primary-plum);
}

.service-detail-text {
font-size: 1.1rem;
color: var(--text-light);
margin-bottom: 2rem;
line-height: 1.8;
}

.service-features {
list-style: none;
margin-bottom: 2rem;
}

.service-features li {
padding: 0.5rem 0;
color: var(--text-dark);
font-size: 1.05rem;
}

.service-pricing {
font-size: 1.3rem;
font-weight: 600;
color: var(--dark-plum);
margin-bottom: 2rem;
}

.service-cta {
display: inline-block;
padding: 1rem 2.5rem;
background-color: var(--primary-plum);
color: var(--white);
border-radius: 50px;
font-weight: 600;
transition: all 0.3s ease;
}

.service-cta:hover {
background-color: var(--dark-plum);
transform: translateY(-3px);
box-shadow: 0 8px 20px rgba(107, 45, 92, 0.4);
}

.service-process {
background: linear-gradient(135deg, var(--light-pink), var(--champagne));
}

.process-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 2rem;
}

.process-step {
text-align: center;
background: var(--white);
padding: 2rem;
border-radius: 15px;
box-shadow: 0 5px 20px var(--shadow);
}

.process-number {
width: 60px;
height: 60px;
background: var(--primary-plum);
color: var(--white);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 1.8rem;
font-weight: 700;
margin: 0 auto 1.5rem;
}

.process-step h3 {
font-size: 1.5rem;
margin-bottom: 1rem;
color: var(--primary-plum);
}

.process-step p {
color: var(--text-light);
line-height: 1.7;
}

.faq-section {
background-color: var(--white);
}

.faq-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 2.5rem;
}

.faq-item {
background: linear-gradient(135deg, var(--light-pink), var(--champagne));
padding: 2rem;
border-radius: 15px;
box-shadow: 0 5px 20px var(--shadow);
}

.faq-question {
font-size: 1.4rem;
margin-bottom: 1rem;
color: var(--primary-plum);
}

.faq-answer {
color: var(--text-light);
line-height: 1.7;
}

.blog-listing {
background-color: var(--white);
}

.blog-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
gap: 3rem;
}

.blog-card {
background: var(--white);
border-radius: 15px;
overflow: hidden;
box-shadow: 0 8px 25px var(--shadow);
transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
transform: translateY(-10px);
box-shadow: 0 15px 40px rgba(107, 45, 92, 0.25);
}

.blog-image-wrapper {
position: relative;
overflow: hidden;
}

.blog-image {
width: 100%;
height: 300px;
object-fit: cover;
transition: transform 0.5s ease;
}

.blog-card:hover .blog-image {
transform: scale(1.1);
}

.blog-category {
position: absolute;
top: 1rem;
left: 1rem;
background: var(--primary-plum);
color: var(--white);
padding: 0.5rem 1.5rem;
border-radius: 50px;
font-size: 0.85rem;
font-weight: 600;
}

.blog-content {
padding: 2rem;
}

.blog-title {
font-size: 1.6rem;
margin-bottom: 1rem;
color: var(--primary-plum);
}

.blog-title a {
transition: color 0.3s ease;
}

.blog-title a:hover {
color: var(--dark-plum);
}

.blog-meta {
font-size: 0.9rem;
color: var(--text-light);
margin-bottom: 1rem;
display: flex;
gap: 1rem;
flex-wrap: wrap;
}

.blog-excerpt {
color: var(--text-light);
line-height: 1.7;
margin-bottom: 1.5rem;
}

.blog-link {
color: var(--primary-plum);
font-weight: 600;
transition: color 0.3s ease;
}

.blog-link:hover {
color: var(--dark-plum);
}

.contact-section {
background-color: var(--white);
}

.contact-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 5rem;
}

.contact-info h2 {
font-size: 2.5rem;
margin-bottom: 2rem;
color: var(--primary-plum);
}

.contact-item {
display: flex;
gap: 1.5rem;
margin-bottom: 2.5rem;
}

.contact-icon {
font-size: 2rem;
color: var(--primary-plum);
flex-shrink: 0;
}

.contact-details h3 {
font-size: 1.3rem;
margin-bottom: 0.5rem;
color: var(--dark-plum);
}

.contact-details p {
color: var(--text-light);
line-height: 1.7;
}

.contact-details a {
color: var(--primary-plum);
transition: color 0.3s ease;
}

.contact-details a:hover {
color: var(--dark-plum);
}

.contact-form-wrapper h2 {
font-size: 2.5rem;
margin-bottom: 2rem;
color: var(--primary-plum);
}

.contact-form {
display: flex;
flex-direction: column;
gap: 1.5rem;
}

.form-group {
display: flex;
flex-direction: column;
}

.form-group label {
font-weight: 600;
margin-bottom: 0.5rem;
color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
padding: 1rem;
border: 2px solid var(--accent-beige);
border-radius: 8px;
font-family: 'Montserrat', sans-serif;
font-size: 1rem;
transition: border-color 0.3s ease;
background-color: var(--champagne);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
outline: none;
border-color: var(--primary-plum);
}

.submit-button {
padding: 1.2rem;
background-color: var(--primary-plum);
color: var(--white);
border: none;
border-radius: 50px;
font-size: 1.1rem;
font-weight: 600;
cursor: pointer;
transition: all 0.3s ease;
}

.submit-button:hover {
background-color: var(--dark-plum);
transform: translateY(-3px);
box-shadow: 0 8px 20px rgba(107, 45, 92, 0.4);
}

.map-section {
background: linear-gradient(135deg, var(--light-pink), var(--champagne));
}

.map-wrapper {
border-radius: 15px;
overflow: hidden;
box-shadow: 0 10px 30px var(--shadow);
}

.modal-overlay {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.7);
display: none;
align-items: center;
justify-content: center;
z-index: 10000;
}

.modal-overlay.show {
display: flex;
animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
from {
opacity: 0;
}
to {
opacity: 1;
}
}

.modal-content {
background: var(--white);
padding: 3rem;
border-radius: 15px;
text-align: center;
max-width: 500px;
box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5);
animation: slideIn 0.3s ease;
}

@keyframes slideIn {
from {
transform: translateY(-50px);
opacity: 0;
}
to {
transform: translateY(0);
opacity: 1;
}
}

.modal-icon {
width: 80px;
height: 80px;
background: var(--primary-plum);
color: var(--white);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 3rem;
margin: 0 auto 2rem;
}

.modal-content h2 {
font-size: 2rem;
margin-bottom: 1rem;
color: var(--primary-plum);
}

.modal-content p {
color: var(--text-light);
margin-bottom: 2rem;
line-height: 1.7;
}

.modal-button {
padding: 1rem 3rem;
background-color: var(--primary-plum);
color: var(--white);
border: none;
border-radius: 50px;
font-size: 1rem;
font-weight: 600;
cursor: pointer;
transition: all 0.3s ease;
}

.modal-button:hover {
background-color: var(--dark-plum);
transform: translateY(-2px);
}

.post-article {
background-color: var(--white);
}

.post-hero {
width: 100%;
height: 500px;
overflow: hidden;
}

.post-hero-image {
width: 100%;
height: 100%;
object-fit: cover;
}

.post-container {
max-width: 900px;
margin: 0 auto;
padding: 3rem 2rem;
}

.post-header {
margin-bottom: 3rem;
padding-bottom: 2rem;
border-bottom: 2px solid var(--accent-beige);
}

.post-category {
display: inline-block;
background: var(--primary-plum);
color: var(--white);
padding: 0.5rem 1.5rem;
border-radius: 50px;
font-size: 0.9rem;
font-weight: 600;
margin-bottom: 1.5rem;
}

.post-header h1 {
font-size: 3rem;
margin-bottom: 1.5rem;
color: var(--primary-plum);
line-height: 1.2;
}

.post-meta {
display: flex;
gap: 2rem;
flex-wrap: wrap;
font-size: 0.95rem;
color: var(--text-light);
}

.post-content {
font-size: 1.1rem;
line-height: 1.9;
color: var(--text-dark);
}

.post-intro {
font-size: 1.25rem;
color: var(--text-light);
margin-bottom: 2.5rem;
font-style: italic;
border-left: 4px solid var(--primary-plum);
padding-left: 1.5rem;
}

.post-content h2 {
font-size: 2.2rem;
margin-top: 3rem;
margin-bottom: 1.5rem;
color: var(--primary-plum);
}

.post-content h3 {
font-size: 1.8rem;
margin-top: 2.5rem;
margin-bottom: 1rem;
color: var(--dark-plum);
}

.post-content p {
margin-bottom: 1.5rem;
}

.post-content ul,
.post-content ol {
margin-bottom: 1.5rem;
padding-left: 2rem;
}

.post-content li {
margin-bottom: 0.8rem;
}

.post-footer {
margin-top: 4rem;
padding-top: 2rem;
border-top: 2px solid var(--accent-beige);
display: flex;
justify-content: space-between;
align-items: center;
}

.back-to-blog {
color: var(--primary-plum);
font-weight: 600;
transition: color 0.3s ease;
}

.back-to-blog:hover {
color: var(--dark-plum);
}

.post-share {
display: flex;
gap: 1rem;
align-items: center;
color: var(--text-light);
}

@media (max-width: 1024px) {
.services-grid {
grid-template-columns: repeat(2, 1fr);
}
.testimonials-grid {
grid-template-columns: repeat(2, 1fr);
}
.footer-grid {
grid-template-columns: repeat(2, 1fr);
}
.process-grid {
grid-template-columns: repeat(2, 1fr);
}
}

@media (max-width: 768px) {
.header-container {
padding: 1rem 1.5rem;
}
.nav-menu {
gap: 1.5rem;
font-size: 0.9rem;
}
.hero-section {
height: 70vh;
}
.typewriter-heading {
font-size: 2.5rem;
}
.hero-subtitle {
font-size: 1.2rem;
}
.intro-grid,
.service-detail,
.contact-grid {
grid-template-columns: 1fr;
gap: 2rem;
}
.service-detail.reverse {
direction: ltr;
}
.services-grid,
.testimonials-grid,
.blog-grid,
.team-grid {
grid-template-columns: 1fr;
}
.footer-grid {
grid-template-columns: 1fr;
gap: 2rem;
}
.footer-bottom {
flex-direction: column;
gap: 1.5rem;
text-align: center;
}
.footer-legal {
flex-direction: column;
gap: 1rem;
}
.values-grid {
grid-template-columns: 1fr;
}
.process-grid {
grid-template-columns: 1fr;
}
.faq-grid {
grid-template-columns: 1fr;
}
.section-title,
.section-title-center {
font-size: 2rem;
}
.post-header h1 {
font-size: 2rem;
}
.cookie-buttons {
flex-direction: column;
}
}

@media (max-width: 480px) {
.typewriter-heading {
font-size: 2rem;
animation: none;
border-right: none;
white-space: normal;
}
.nav-menu {
flex-direction: column;
gap: 1rem;
}
}

h1, h2, h3, h4, h5, h6 {word-break: break-word;}
