:root {
--primary-color: #2c3e50;
--secondary-color: #3498db;
--accent-color: #e74c3c;
--text-dark: #2c3e50;
--text-light: #7f8c8d;
--bg-light: #ecf0f1;
--bg-white: #ffffff;
--border-color: #dfe6e9;
--success-color: #27ae60;
--warning-color: #f39c12;
--shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
--shadow-md: 0 4px 6px rgba(0,0,0,0.1);
--shadow-lg: 0 10px 25px rgba(0,0,0,0.15);
--transition: all 0.3s ease;
}

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

html {
scroll-behavior: smooth;
}

body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
line-height: 1.6;
color: var(--text-dark);
background-color: var(--bg-white);
overflow-x: hidden;
}

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

.main-header {
background: var(--bg-white);
box-shadow: var(--shadow-sm);
position: sticky;
top: 0;
z-index: 1000;
transition: var(--transition);
}

.header-flex {
display: flex;
justify-content: space-between;
align-items: center;
padding: 1rem 0;
}

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

.primary-nav ul {
display: flex;
list-style: none;
gap: 2rem;
}

.nav-link {
text-decoration: none;
color: var(--text-dark);
font-weight: 500;
transition: var(--transition);
position: relative;
}

.nav-link::after {
content: '';
position: absolute;
bottom: -5px;
left: 0;
width: 0;
height: 2px;
background: var(--secondary-color);
transition: var(--transition);
}

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

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

.mobile-toggle {
display: none;
background: none;
border: none;
font-size: 1.5rem;
color: var(--text-dark);
cursor: pointer;
}

.hero-banner {
background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
color: var(--bg-white);
padding: 8rem 0;
position: relative;
overflow: hidden;
}

.hero-banner::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.1)" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,144C960,149,1056,139,1152,122.7C1248,107,1344,85,1392,74.7L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
opacity: 0.3;
}

.hero-content {
position: relative;
z-index: 1;
text-align: center;
}

.hero-title {
font-size: 3rem;
margin-bottom: 1rem;
animation: fadeInUp 1s ease;
}

.hero-subtitle {
font-size: 1.3rem;
margin-bottom: 2rem;
opacity: 0.9;
animation: fadeInUp 1s ease 0.2s both;
}

.cta-button {
display: inline-block;
padding: 1rem 2.5rem;
background: var(--accent-color);
color: var(--bg-white);
text-decoration: none;
border-radius: 50px;
font-weight: 600;
transition: var(--transition);
box-shadow: var(--shadow-md);
animation: fadeInUp 1s ease 0.4s both;
}

.cta-button:hover {
transform: translateY(-3px);
box-shadow: var(--shadow-lg);
background: #c0392b;
}

.inspiration-block {
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
color: var(--bg-white);
padding: 4rem 0;
margin: 3rem 0;
}

.inspiration-header {
text-align: center;
margin-bottom: 2rem;
}

.inspiration-icon {
font-size: 3rem;
margin-bottom: 1rem;
animation: pulse 2s infinite;
}

.inspiration-content {
text-align: center;
max-width: 800px;
margin: 0 auto;
}

.inspiration-quote {
font-size: 1.5rem;
font-style: italic;
line-height: 1.8;
}

.section-title {
text-align: center;
font-size: 2.5rem;
margin-bottom: 3rem;
color: var(--primary-color);
position: relative;
padding-bottom: 1rem;
}

.section-title::after {
content: '';
position: absolute;
bottom: 0;
left: 50%;
transform: translateX(-50%);
width: 80px;
height: 4px;
background: var(--secondary-color);
border-radius: 2px;
}

.features-section,
.services-overview,
.process-section,
.testimonials-section,
.faq-section {
padding: 5rem 0;
}

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

.feature-card {
background: var(--bg-white);
padding: 2rem;
border-radius: 10px;
box-shadow: var(--shadow-sm);
transition: var(--transition);
text-align: center;
}

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

.feature-icon {
font-size: 3rem;
color: var(--secondary-color);
margin-bottom: 1rem;
}

.feature-card h3 {
margin-bottom: 1rem;
color: var(--primary-color);
}

.services-wrapper {
display: grid;
gap: 3rem;
}

.service-item {
display: grid;
grid-template-columns: 1fr 2fr;
gap: 2rem;
background: var(--bg-white);
border-radius: 10px;
overflow: hidden;
box-shadow: var(--shadow-sm);
transition: var(--transition);
}

.service-item:hover {
box-shadow: var(--shadow-lg);
transform: translateX(10px);
}

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

.service-details {
padding: 2rem;
display: flex;
flex-direction: column;
justify-content: center;
}

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

.service-meta {
display: flex;
gap: 1rem;
margin-top: 1rem;
}

.price-tag,
.duration-tag {
padding: 0.5rem 1rem;
background: var(--bg-light);
border-radius: 20px;
font-weight: 600;
color: var(--secondary-color);
}

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

.process-step {
background: var(--bg-white);
padding: 2rem;
border-radius: 10px;
box-shadow: var(--shadow-sm);
position: relative;
}

.step-number {
position: absolute;
top: -20px;
left: 20px;
background: var(--secondary-color);
color: var(--bg-white);
width: 50px;
height: 50px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 1.5rem;
font-weight: bold;
}

.process-step h3 {
margin: 1rem 0;
color: var(--primary-color);
}

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

.testimonial-card {
background: var(--bg-white);
padding: 2rem;
border-radius: 10px;
box-shadow: var(--shadow-sm);
transition: var(--transition);
}

.testimonial-card:hover {
box-shadow: var(--shadow-lg);
}

.testimonial-rating {
color: #f39c12;
margin-bottom: 1rem;
}

.testimonial-text {
font-style: italic;
margin-bottom: 1rem;
line-height: 1.8;
}

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

.testimonial-author strong {
color: var(--primary-color);
}

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

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

.faq-item {
background: var(--bg-white);
margin-bottom: 1rem;
border-radius: 10px;
overflow: hidden;
box-shadow: var(--shadow-sm);
}

.faq-question {
padding: 1.5rem;
cursor: pointer;
display: flex;
justify-content: space-between;
align-items: center;
transition: var(--transition);
}

.faq-question:hover {
background: var(--bg-light);
}

.faq-question h3 {
color: var(--primary-color);
font-size: 1.1rem;
}

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

.faq-item.active .faq-question i {
transform: rotate(180deg);
}

.faq-answer {
padding: 0 1.5rem;
max-height: 0;
overflow: hidden;
transition: var(--transition);
}

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

.cta-section {
background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
color: var(--bg-white);
padding: 5rem 0;
text-align: center;
}

.cta-content h2 {
font-size: 2.5rem;
margin-bottom: 1rem;
}

.cta-content p {
font-size: 1.2rem;
margin-bottom: 2rem;
}

.cta-button-secondary {
display: inline-block;
padding: 1rem 2.5rem;
background: var(--bg-white);
color: var(--secondary-color);
text-decoration: none;
border-radius: 50px;
font-weight: 600;
transition: var(--transition);
box-shadow: var(--shadow-md);
}

.cta-button-secondary:hover {
transform: translateY(-3px);
box-shadow: var(--shadow-lg);
}

.site-footer {
background: var(--primary-color);
color: var(--bg-white);
padding: 3rem 0 1rem;
}

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

.footer-logo {
height: 60px;
width: auto;
margin-bottom: 1rem;
}

.footer-description {
color: rgba(255,255,255,0.8);
margin-bottom: 1rem;
}

.footer-column h4 {
margin-bottom: 1rem;
}

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

.footer-links li,
.footer-contact li {
margin-bottom: 0.5rem;
}

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

.footer-links a:hover {
color: var(--bg-white);
padding-left: 5px;
}

.footer-contact i {
margin-right: 0.5rem;
color: var(--secondary-color);
}

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

.cookie-banner {
position: fixed;
bottom: 0;
left: 0;
right: 0;
background: var(--bg-white);
box-shadow: 0 -4px 6px rgba(0,0,0,0.1);
padding: 2rem;
z-index: 9999;
transform: translateY(100%);
transition: var(--transition);
}

.cookie-banner.show {
transform: translateY(0);
}

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

.cookie-text h3 {
color: var(--primary-color);
margin-bottom: 0.5rem;
display: flex;
align-items: center;
gap: 0.5rem;
}

.cookie-actions {
display: flex;
gap: 1rem;
flex-shrink: 0;
}

.cookie-btn {
padding: 0.75rem 1.5rem;
border: none;
border-radius: 5px;
cursor: pointer;
font-weight: 600;
transition: var(--transition);
}

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

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

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

.cookie-customize:hover {
background: #2980b9;
}

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

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

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

.page-header-section {
background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
color: var(--bg-white);
padding: 5rem 0 3rem;
text-align: center;
}

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

.page-subtitle {
font-size: 1.2rem;
opacity: 0.9;
}

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

.blog-post-card {
background: var(--bg-white);
border-radius: 10px;
overflow: hidden;
box-shadow: var(--shadow-sm);
transition: var(--transition);
position: relative;
}

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

.post-badge {
position: absolute;
top: 1rem;
right: 1rem;
background: var(--accent-color);
color: var(--bg-white);
padding: 0.5rem 1rem;
border-radius: 20px;
font-size: 0.8rem;
font-weight: 600;
z-index: 1;
}

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

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

.blog-post-card:hover .post-thumbnail {
transform: scale(1.1);
}

.post-content {
padding: 1.5rem;
}

.post-meta {
display: flex;
gap: 1rem;
margin-bottom: 1rem;
font-size: 0.9rem;
color: var(--text-light);
}

.post-title {
color: var(--primary-color);
margin-bottom: 1rem;
font-size: 1.3rem;
line-height: 1.4;
}

.post-excerpt {
color: var(--text-light);
margin-bottom: 1rem;
line-height: 1.6;
}

.read-more-link {
color: var(--secondary-color);
text-decoration: none;
font-weight: 600;
display: inline-flex;
align-items: center;
gap: 0.5rem;
transition: var(--transition);
}

.read-more-link:hover {
gap: 1rem;
}

.about-story-section {
padding: 5rem 0;
}

.story-content {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 3rem;
align-items: center;
}

.story-text h2 {
color: var(--primary-color);
margin-bottom: 1.5rem;
font-size: 2rem;
}

.story-text p {
margin-bottom: 1rem;
line-height: 1.8;
}

.about-img {
width: 100%;
border-radius: 10px;
box-shadow: var(--shadow-md);
}

.values-section {
padding: 5rem 0;
background: var(--bg-light);
}

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

.value-card {
background: var(--bg-white);
padding: 2rem;
border-radius: 10px;
box-shadow: var(--shadow-sm);
text-align: center;
transition: var(--transition);
}

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

.value-icon {
font-size: 3rem;
color: var(--secondary-color);
margin-bottom: 1rem;
}

.value-card h3 {
color: var(--primary-color);
margin-bottom: 1rem;
}

.team-section {
padding: 5rem 0;
}

.team-intro {
text-align: center;
max-width: 600px;
margin: 0 auto 3rem;
color: var(--text-light);
font-size: 1.1rem;
}

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

.team-member-card {
background: var(--bg-white);
border-radius: 10px;
overflow: hidden;
box-shadow: var(--shadow-sm);
transition: var(--transition);
text-align: center;
}

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

.team-photo {
width: 100%;
height: 300px;
object-fit: cover;
}

.team-member-card h3 {
color: var(--primary-color);
padding: 1rem 1rem 0.5rem;
}

.member-position {
color: var(--secondary-color);
font-weight: 600;
padding: 0 1rem;
}

.member-bio {
color: var(--text-light);
padding: 1rem;
line-height: 1.6;
}

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

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

.stat-item {
text-align: center;
}

.stat-number {
font-size: 3rem;
font-weight: bold;
margin-bottom: 0.5rem;
}

.stat-label {
font-size: 1.1rem;
opacity: 0.9;
}

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

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

.contact-info-box,
.contact-form-box {
background: var(--bg-white);
padding: 2rem;
border-radius: 10px;
box-shadow: var(--shadow-sm);
}

.contact-info-box h2,
.contact-form-box h2 {
color: var(--primary-color);
margin-bottom: 2rem;
}

.contact-detail-item {
display: flex;
gap: 1rem;
margin-bottom: 2rem;
}

.contact-icon {
flex-shrink: 0;
width: 50px;
height: 50px;
background: var(--bg-light);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
color: var(--secondary-color);
font-size: 1.5rem;
}

.contact-text h3 {
color: var(--primary-color);
margin-bottom: 0.5rem;
}

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

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

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

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

.form-group input,
.form-group textarea {
padding: 0.75rem;
border: 1px solid var(--border-color);
border-radius: 5px;
font-family: inherit;
transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
outline: none;
border-color: var(--secondary-color);
box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.submit-btn {
padding: 1rem 2rem;
background: var(--secondary-color);
color: var(--bg-white);
border: none;
border-radius: 5px;
font-weight: 600;
cursor: pointer;
transition: var(--transition);
display: inline-flex;
align-items: center;
justify-content: center;
gap: 0.5rem;
}

.submit-btn:hover {
background: #2980b9;
transform: translateY(-2px);
box-shadow: var(--shadow-md);
}

.map-section {
padding: 5rem 0;
background: var(--bg-light);
}

.map-container {
border-radius: 10px;
overflow: hidden;
box-shadow: var(--shadow-md);
}

.modal-overlay {
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: rgba(0,0,0,0.7);
display: none;
align-items: center;
justify-content: center;
z-index: 10000;
}

.modal-overlay.show {
display: flex;
}

.modal-content {
background: var(--bg-white);
padding: 3rem;
border-radius: 10px;
text-align: center;
max-width: 500px;
animation: modalSlideIn 0.3s ease;
}

.modal-icon {
font-size: 4rem;
color: var(--success-color);
margin-bottom: 1rem;
}

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

.modal-close-btn {
margin-top: 1.5rem;
padding: 0.75rem 2rem;
background: var(--secondary-color);
color: var(--bg-white);
border: none;
border-radius: 5px;
cursor: pointer;
font-weight: 600;
transition: var(--transition);
}

.modal-close-btn:hover {
background: #2980b9;
}

.blog-post-page {
background: var(--bg-white);
}

.post-hero-image {
height: 500px;
position: relative;
overflow: hidden;
}

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

.post-hero-overlay {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: linear-gradient(to bottom, transparent, rgba(0,0,0,0.5));
}

.post-header-content {
max-width: 900px;
margin: -100px auto 0;
padding: 0 20px;
position: relative;
z-index: 1;
}

.post-meta-info {
display: flex;
gap: 2rem;
margin-bottom: 1rem;
color: var(--bg-white);
font-size: 0.9rem;
}

.post-main-title {
color: var(--bg-white);
font-size: 3rem;
line-height: 1.2;
text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.post-content-wrapper {
display: grid;
grid-template-columns: 3fr 1fr;
gap: 3rem;
max-width: 1200px;
margin: 3rem auto;
padding: 0 20px;
}

.post-body {
background: var(--bg-white);
padding: 3rem;
border-radius: 10px;
box-shadow: var(--shadow-sm);
line-height: 1.8;
}

.lead-paragraph {
font-size: 1.2rem;
color: var(--text-light);
margin-bottom: 2rem;
line-height: 1.8;
}

.post-body h2 {
color: var(--primary-color);
margin: 2rem 0 1rem;
font-size: 1.8rem;
}

.post-body p {
margin-bottom: 1.5rem;
}

.post-sidebar {
display: flex;
flex-direction: column;
gap: 2rem;
}

.sidebar-widget {
background: var(--bg-white);
padding: 1.5rem;
border-radius: 10px;
box-shadow: var(--shadow-sm);
}

.sidebar-widget h3 {
color: var(--primary-color);
margin-bottom: 1rem;
}

.category-list,
.recent-posts-list {
list-style: none;
}

.category-list li,
.recent-posts-list li {
margin-bottom: 0.75rem;
}

.category-list a,
.recent-posts-list a {
color: var(--text-dark);
text-decoration: none;
transition: var(--transition);
}

.category-list a:hover,
.recent-posts-list a:hover {
color: var(--secondary-color);
padding-left: 5px;
}

.post-navigation {
text-align: center;
margin: 2rem 0;
}

.back-to-blog {
display: inline-flex;
align-items: center;
gap: 0.5rem;
padding: 0.75rem 1.5rem;
background: var(--secondary-color);
color: var(--bg-white);
text-decoration: none;
border-radius: 5px;
transition: var(--transition);
}

.back-to-blog:hover {
background: #2980b9;
gap: 1rem;
}

@keyframes fadeInUp {
from {
opacity: 0;
transform: translateY(30px);
}
to {
opacity: 1;
transform: translateY(0);
}
}

@keyframes pulse {
0%, 100% {
transform: scale(1);
}
50% {
transform: scale(1.1);
}
}

@keyframes modalSlideIn {
from {
transform: scale(0.8);
opacity: 0;
}
to {
transform: scale(1);
opacity: 1;
}
}

@media (max-width: 768px) {
.primary-nav {
position: fixed;
top: 70px;
left: 0;
right: 0;
background: var(--bg-white);
box-shadow: var(--shadow-md);
transform: translateX(-100%);
transition: var(--transition);
}

.primary-nav.active {
transform: translateX(0);
}

.primary-nav ul {
flex-direction: column;
padding: 2rem;
gap: 0;
}

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

.mobile-toggle {
display: block;
}

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

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

.service-item {
grid-template-columns: 1fr;
}

.service-image {
height: 250px;
}

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

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

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

.post-sidebar {
order: -1;
}

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

.cookie-content {
flex-direction: column;
}

.cookie-actions {
flex-direction: column;
width: 100%;
}

.cookie-btn {
width: 100%;
}

.post-main-title {
font-size: 2rem;
}

.post-body {
padding: 1.5rem;
}
}