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

:root {
--primary-color: #d4a574;
--secondary-color: #8b6f47;
--accent-color: #c9a67a;
--dark-color: #2c2416;
--light-color: #f9f6f1;
--text-dark: #3a3126;
--text-light: #6b5d4f;
--border-color: #e8d5c4;
--shadow: 0 4px 15px rgba(0,0,0,0.1);
--transition: all 0.3s ease;
}

body {
font-family: 'Cormorant Garamond', 'Georgia', serif;
line-height: 1.7;
color: var(--text-dark);
background-color: var(--light-color);
overflow-x: hidden;
}

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

.main-navigation {
background: rgba(255, 255, 255, 0.98);
position: fixed;
width: 100%;
top: 0;
z-index: 1000;
box-shadow: 0 2px 10px rgba(0,0,0,0.08);
backdrop-filter: blur(10px);
}

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

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

.brand-logo img {
border-radius: 50%;
object-fit: cover;
}

.brand-logo span {
font-size: 1.4rem;
font-weight: 600;
color: var(--dark-color);
letter-spacing: 0.5px;
}

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

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

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

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

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

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

.mobile-toggle span {
width: 25px;
height: 3px;
background: var(--dark-color);
margin: 3px 0;
transition: var(--transition);
}

.hero-section {
position: relative;
height: 90vh;
display: flex;
align-items: center;
justify-content: center;
overflow: hidden;
margin-top: 70px;
}

.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(44,36,22,0.7) 0%, rgba(139,111,71,0.5) 100%);
z-index: 0;
}

.hero-content {
position: relative;
z-index: 1;
text-align: center;
color: white;
max-width: 800px;
padding: 0 20px;
}

.hero-title {
font-size: 4rem;
font-weight: 700;
margin-bottom: 20px;
text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
letter-spacing: 2px;
}

.hero-subtitle {
font-size: 1.5rem;
margin-bottom: 40px;
opacity: 0.95;
font-weight: 300;
}

.neon-button {
display: inline-block;
padding: 18px 45px;
background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
color: white;
text-decoration: none;
font-size: 1.1rem;
font-weight: 600;
border-radius: 50px;
transition: var(--transition);
border: 2px solid transparent;
position: relative;
overflow: hidden;
box-shadow: 0 0 20px rgba(212,165,116,0.4);
}

.neon-button::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;
}

.neon-button:hover::before {
left: 100%;
}

.neon-button:hover {
transform: translateY(-3px);
box-shadow: 0 0 30px rgba(212,165,116,0.6), 0 10px 25px rgba(0,0,0,0.2);
border-color: white;
}

.section-title {
font-size: 2.8rem;
text-align: center;
margin-bottom: 60px;
color: var(--dark-color);
position: relative;
padding-bottom: 20px;
}

.section-title::after {
content: '';
position: absolute;
bottom: 0;
left: 50%;
transform: translateX(-50%);
width: 80px;
height: 3px;
background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

.services-preview {
padding: 100px 0;
background: white;
}

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

.service-card {
background: white;
border-radius: 15px;
overflow: hidden;
box-shadow: var(--shadow);
transition: var(--transition);
position: relative;
cursor: pointer;
}

.service-card:hover {
transform: translateY(-10px);
box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.service-card img {
width: 100%;
height: auto;
display: block;
transition: var(--transition);
}

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

.service-icon {
text-align: center;
padding: 30px 0 20px;
color: var(--primary-color);
}

.service-card h3 {
font-size: 1.8rem;
margin: 20px 20px 15px;
color: var(--dark-color);
}

.service-card p {
padding: 0 20px 30px;
color: var(--text-light);
font-size: 1.05rem;
}

.service-card[data-tooltip]:hover::after {
content: attr(data-tooltip);
position: absolute;
bottom: 100%;
left: 50%;
transform: translateX(-50%);
background: var(--dark-color);
color: white;
padding: 8px 15px;
border-radius: 5px;
font-size: 0.9rem;
white-space: nowrap;
margin-bottom: 10px;
opacity: 0;
animation: tooltipFade 0.3s forwards;
}

@keyframes tooltipFade {
to {
opacity: 1;
}
}

.about-snippet {
padding: 100px 0;
background: var(--light-color);
}

.about-content-flex {
display: flex;
align-items: center;
gap: 60px;
}

.about-text {
flex: 1;
}

.about-text h2 {
font-size: 2.5rem;
margin-bottom: 25px;
color: var(--dark-color);
}

.about-text p {
font-size: 1.1rem;
color: var(--text-light);
margin-bottom: 25px;
line-height: 1.8;
}

.features-list {
list-style: none;
margin: 30px 0;
}

.features-list li {
display: flex;
align-items: center;
gap: 15px;
margin-bottom: 15px;
font-size: 1.05rem;
}

.features-list svg {
color: var(--primary-color);
flex-shrink: 0;
}

.read-more-btn {
display: inline-block;
margin-top: 20px;
padding: 12px 30px;
background: var(--secondary-color);
color: white;
text-decoration: none;
border-radius: 25px;
transition: var(--transition);
}

.read-more-btn:hover {
background: var(--primary-color);
transform: translateX(5px);
}

.about-image {
flex: 1;
}

.about-image img {
width: 100%;
height: auto;
border-radius: 15px;
box-shadow: var(--shadow);
}

.testimonials-section {
padding: 100px 0;
background: linear-gradient(135deg, #f5ebe0 0%, #ede0d4 100%);
}

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

.testimonial-card {
background: white;
padding: 40px 30px;
border-radius: 15px;
box-shadow: var(--shadow);
transition: var(--transition);
}

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

.stars {
color: #ffa500;
font-size: 1.3rem;
margin-bottom: 20px;
}

.testimonial-card p {
font-size: 1.05rem;
font-style: italic;
color: var(--text-light);
margin-bottom: 20px;
line-height: 1.7;
}

.client-info strong {
display: block;
color: var(--dark-color);
font-size: 1.1rem;
margin-bottom: 5px;
}

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

.cta-section {
padding: 100px 0;
background: linear-gradient(135deg, var(--secondary-color) 0%, var(--dark-color) 100%);
text-align: center;
color: white;
}

.cta-section h2 {
font-size: 2.8rem;
margin-bottom: 20px;
}

.cta-section p {
font-size: 1.3rem;
margin-bottom: 40px;
opacity: 0.9;
}

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

.footer-content {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 40px;
padding-bottom: 40px;
border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-col h4 {
font-size: 1.4rem;
margin-bottom: 20px;
color: var(--primary-color);
}

.footer-col p {
color: rgba(255,255,255,0.8);
line-height: 1.8;
margin-bottom: 15px;
}

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

.footer-col ul li {
margin-bottom: 12px;
}

.footer-col ul li a {
color: rgba(255,255,255,0.8);
text-decoration: none;
transition: var(--transition);
}

.footer-col ul li a:hover {
color: var(--primary-color);
padding-left: 5px;
}

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

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

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

.footer-bottom {
padding: 30px 0;
text-align: center;
}

.footer-bottom p {
color: rgba(255,255,255,0.7);
margin-bottom: 15px;
}

.footer-links {
display: flex;
justify-content: center;
gap: 25px;
flex-wrap: wrap;
}

.footer-links a {
color: rgba(255,255,255,0.7);
text-decoration: none;
transition: var(--transition);
}

.footer-links a:hover {
color: var(--primary-color);
}

.cookie-banner {
position: fixed;
bottom: 0;
left: 0;
right: 0;
background: white;
padding: 25px;
box-shadow: 0 -5px 20px rgba(0,0,0,0.15);
z-index: 10000;
display: none;
animation: slideUp 0.4s ease;
}

.cookie-banner.show {
display: block;
}

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

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

.cookie-text h3 {
font-size: 1.3rem;
margin-bottom: 10px;
color: var(--dark-color);
}

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

.cookie-policy-link {
color: var(--primary-color);
text-decoration: underline;
}

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

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

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

.accept-btn:hover {
background: var(--secondary-color);
transform: translateY(-2px);
}

.customize-btn {
background: var(--light-color);
color: var(--dark-color);
border: 2px solid var(--primary-color);
}

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

.decline-btn {
background: #e0e0e0;
color: var(--text-dark);
}

.decline-btn:hover {
background: #d0d0d0;
}

.page-header {
position: relative;
height: 50vh;
display: flex;
align-items: center;
justify-content: center;
background: linear-gradient(135deg, var(--secondary-color) 0%, var(--dark-color) 100%);
margin-top: 70px;
overflow: hidden;
}

.header-overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0,0,0,0.3);
}

.header-content {
position: relative;
z-index: 1;
text-align: center;
color: white;
}

.header-content h1 {
font-size: 3.5rem;
margin-bottom: 15px;
text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
}

.header-content p {
font-size: 1.3rem;
opacity: 0.95;
}

.story-section {
padding: 100px 0;
background: white;
}

.story-flex {
display: flex;
align-items: center;
gap: 60px;
}

.story-text {
flex: 1;
}

.story-text h2 {
font-size: 2.5rem;
margin-bottom: 25px;
color: var(--dark-color);
}

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

.story-image {
flex: 1;
}

.story-image img {
width: 100%;
height: auto;
border-radius: 15px;
box-shadow: var(--shadow);
}

.team-section {
padding: 100px 0;
background: var(--light-color);
}

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

.team-member {
background: white;
border-radius: 15px;
overflow: hidden;
box-shadow: var(--shadow);
transition: var(--transition);
text-align: center;
padding-bottom: 30px;
}

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

.team-member img {
width: 100%;
height: auto;
display: block;
}

.team-member h3 {
font-size: 1.5rem;
margin: 20px 20px 10px;
color: var(--dark-color);
}

.team-member .role {
color: var(--primary-color);
font-weight: 600;
margin-bottom: 15px;
display: block;
padding: 0 20px;
}

.team-member .bio {
padding: 0 20px;
color: var(--text-light);
line-height: 1.6;
}

.values-section {
padding: 100px 0;
background: white;
}

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

.value-card {
text-align: center;
padding: 40px 30px;
background: var(--light-color);
border-radius: 15px;
transition: var(--transition);
}

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

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

.value-card h3 {
font-size: 1.6rem;
margin-bottom: 15px;
color: var(--dark-color);
}

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

.cta-about {
padding: 100px 0;
background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
text-align: center;
color: white;
}

.cta-about h2 {
font-size: 2.8rem;
margin-bottom: 20px;
}

.cta-about p {
font-size: 1.3rem;
margin-bottom: 40px;
}

.blog-content {
padding: 80px 0;
background: white;
}

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

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

.blog-card:hover {
transform: translateY(-8px);
box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.blog-image {
position: relative;
overflow: hidden;
}

.blog-image img {
width: 100%;
height: auto;
display: block;
transition: var(--transition);
}

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

.blog-category {
position: absolute;
top: 15px;
right: 15px;
background: var(--primary-color);
color: white;
padding: 5px 15px;
border-radius: 20px;
font-size: 0.85rem;
font-weight: 600;
}

.blog-info {
padding: 30px;
}

.blog-meta {
display: flex;
gap: 20px;
margin-bottom: 15px;
font-size: 0.9rem;
color: var(--text-light);
flex-wrap: wrap;
}

.blog-meta span {
display: flex;
align-items: center;
gap: 5px;
}

.blog-meta svg {
width: 16px;
height: 16px;
}

.blog-info h2 {
font-size: 1.6rem;
margin-bottom: 15px;
}

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

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

.blog-info p {
color: var(--text-light);
line-height: 1.7;
margin-bottom: 20px;
}

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

.read-more:hover {
color: var(--secondary-color);
padding-left: 5px;
}

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

.blog-cta h2 {
font-size: 2.5rem;
margin-bottom: 15px;
color: var(--dark-color);
}

.blog-cta p {
font-size: 1.2rem;
margin-bottom: 30px;
color: var(--text-light);
}

.services-intro {
padding: 80px 0;
background: white;
text-align: center;
}

.intro-content {
max-width: 800px;
margin: 0 auto;
}

.intro-content h2 {
font-size: 2.5rem;
margin-bottom: 25px;
color: var(--dark-color);
}

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

.services-detailed {
padding: 80px 0;
background: var(--light-color);
}

.service-detail {
margin-bottom: 100px;
}

.service-detail:last-child {
margin-bottom: 0;
}

.service-detail-content {
display: flex;
align-items: center;
gap: 60px;
}

.service-detail-content.reverse {
flex-direction: row-reverse;
}

.service-detail-text {
flex: 1;
}

.service-detail-text h2 {
font-size: 2.5rem;
margin-bottom: 20px;
color: var(--dark-color);
}

.service-detail-text h3 {
font-size: 1.5rem;
margin: 25px 0 15px;
color: var(--secondary-color);
}

.service-detail-text p {
font-size: 1.1rem;
color: var(--text-light);
margin-bottom: 20px;
line-height: 1.8;
}

.service-features {
list-style: none;
margin: 20px 0;
}

.service-features li {
display: flex;
align-items: center;
gap: 12px;
margin-bottom: 12px;
font-size: 1.05rem;
color: var(--text-dark);
}

.service-features svg {
color: var(--primary-color);
flex-shrink: 0;
}

.service-pricing {
margin: 30px 0;
padding: 20px;
background: white;
border-radius: 10px;
display: inline-block;
box-shadow: var(--shadow);
}

.price-label {
display: block;
color: var(--text-light);
font-size: 0.95rem;
margin-bottom: 5px;
}

.price-amount {
display: block;
font-size: 2.5rem;
font-weight: 700;
color: var(--primary-color);
}

.service-detail-image {
flex: 1;
}

.service-detail-image img {
width: 100%;
height: auto;
border-radius: 15px;
box-shadow: var(--shadow);
}

.process-section {
padding: 100px 0;
background: white;
}

.process-steps {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 40px;
margin-top: 60px;
}

.process-step {
text-align: center;
padding: 40px 30px;
background: var(--light-color);
border-radius: 15px;
transition: var(--transition);
}

.process-step:hover {
transform: translateY(-5px);
box-shadow: var(--shadow);
}

.step-number {
width: 60px;
height: 60px;
background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
color: white;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 1.8rem;
font-weight: 700;
margin: 0 auto 20px;
}

.process-step h3 {
font-size: 1.5rem;
margin-bottom: 15px;
color: var(--dark-color);
}

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

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

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

.faq-item {
background: white;
padding: 30px;
border-radius: 15px;
box-shadow: var(--shadow);
transition: var(--transition);
}

.faq-item:hover {
transform: translateY(-5px);
}

.faq-item h3 {
font-size: 1.3rem;
margin-bottom: 15px;
color: var(--dark-color);
}

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

.services-cta {
padding: 100px 0;
background: linear-gradient(135deg, var(--secondary-color) 0%, var(--dark-color) 100%);
text-align: center;
color: white;
}

.services-cta h2 {
font-size: 2.8rem;
margin-bottom: 20px;
}

.services-cta p {
font-size: 1.3rem;
margin-bottom: 40px;
}

.contact-section {
padding: 80px 0;
background: white;
}

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

.contact-info-card {
background: var(--light-color);
padding: 40px;
border-radius: 15px;
box-shadow: var(--shadow);
}

.contact-info-card h2 {
font-size: 2rem;
margin-bottom: 30px;
color: var(--dark-color);
}

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

.info-icon {
flex-shrink: 0;
width: 50px;
height: 50px;
background: white;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
color: var(--primary-color);
}

.info-text h3 {
font-size: 1.2rem;
margin-bottom: 8px;
color: var(--dark-color);
}

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

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

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

.contact-image {
margin-top: 30px;
}

.contact-image img {
width: 100%;
height: auto;
border-radius: 15px;
box-shadow: var(--shadow);
}

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

.contact-form-card h2 {
font-size: 2rem;
margin-bottom: 15px;
color: var(--dark-color);
}

.form-description {
color: var(--text-light);
margin-bottom: 30px;
}

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

.form-row {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 20px;
}

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

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

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

.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,165,116,0.1);
}

.submit-btn {
margin-top: 20px;
cursor: pointer;
border: none;
}

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

.map-container {
margin-top: 40px;
border-radius: 15px;
overflow: hidden;
box-shadow: var(--shadow);
}

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

.modal.show {
display: flex;
}

.modal-content {
background: white;
padding: 50px;
border-radius: 20px;
text-align: center;
max-width: 500px;
animation: modalSlide 0.3s ease;
}

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

.modal-icon {
color: #4caf50;
margin-bottom: 20px;
}

.modal-content h2 {
font-size: 2rem;
margin-bottom: 15px;
color: var(--dark-color);
}

.modal-content p {
font-size: 1.1rem;
color: var(--text-light);
margin-bottom: 30px;
}

.post-article {
margin-top: 70px;
}

.post-header {
padding: 60px 0 40px;
background: var(--light-color);
}

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

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

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

.post-category {
background: var(--primary-color);
color: white;
padding: 5px 15px;
border-radius: 20px;
font-size: 0.9rem;
font-weight: 600;
}

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

.post-meta-details {
display: flex;
gap: 25px;
color: var(--text-light);
font-size: 0.95rem;
flex-wrap: wrap;
}

.post-featured-image {
width: 100%;
max-height: 500px;
overflow: hidden;
}

.post-featured-image img {
width: 100%;
height: auto;
display: block;
}

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

.post-content .container {
display: grid;
grid-template-columns: 1fr 300px;
gap: 60px;
}

.post-body {
max-width: 800px;
}

.lead-paragraph {
font-size: 1.25rem;
line-height: 1.8;
color: var(--text-dark);
margin-bottom: 40px;
font-weight: 500;
}

.post-body h2 {
font-size: 2rem;
color: var(--dark-color);
margin: 40px 0 20px;
}

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

.post-conclusion {
background: var(--light-color);
padding: 40px;
border-radius: 15px;
margin: 50px 0;
border-left: 4px solid var(--primary-color);
}

.post-conclusion h3 {
font-size: 1.8rem;
margin-bottom: 20px;
color: var(--dark-color);
}

.post-cta {
background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
padding: 50px;
border-radius: 15px;
text-align: center;
color: white;
margin-top: 50px;
}

.post-cta h3 {
font-size: 2rem;
margin-bottom: 15px;
}

.post-cta p {
font-size: 1.1rem;
margin-bottom: 30px;
color: white;
}

.post-sidebar {
position: sticky;
top: 100px;
}

.sidebar-widget {
background: var(--light-color);
padding: 30px;
border-radius: 15px;
margin-bottom: 30px;
}

.sidebar-widget h3 {
font-size: 1.5rem;
margin-bottom: 20px;
color: var(--dark-color);
}

.author-info {
text-align: center;
}

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

.author-info h4 {
font-size: 1.2rem;
margin-bottom: 10px;
color: var(--dark-color);
}

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

.related-posts,
.post-categories {
list-style: none;
}

.related-posts li,
.post-categories li {
margin-bottom: 12px;
}

.related-posts a,
.post-categories a {
color: var(--text-dark);
text-decoration: none;
transition: var(--transition);
display: block;
padding: 8px 0;
border-bottom: 1px solid var(--border-color);
}

.related-posts a:hover,
.post-categories a:hover {
color: var(--primary-color);
padding-left: 10px;
}

@media (max-width: 968px) {
.nav-links {
position: fixed;
left: -100%;
top: 70px;
flex-direction: column;
background: white;
width: 100%;
padding: 30px;
box-shadow: 0 10px 20px rgba(0,0,0,0.1);
transition: left 0.3s ease;
}

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

.mobile-toggle {
display: flex;
}

.hero-title {
font-size: 2.5rem;
}

.hero-subtitle {
font-size: 1.2rem;
}

.about-content-flex,
.story-flex,
.service-detail-content {
flex-direction: column;
}

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

.post-content .container {
grid-template-columns: 1fr;
}

.post-sidebar {
position: static;
}

.form-row {
grid-template-columns: 1fr;
}

.header-content h1 {
font-size: 2.5rem;
}
}

@media (max-width: 600px) {
.hero-title {
font-size: 2rem;
}

.section-title {
font-size: 2rem;
}

.services-grid,
.blog-grid,
.faq-grid {
grid-template-columns: 1fr;
}

.footer-content {
grid-template-columns: 1fr;
text-align: center;
}

.social-icons {
justify-content: center;
}

.cookie-content {
flex-direction: column;
text-align: center;
}

.cookie-buttons {
justify-content: center;
}
}
