:root {
--primary-color: #2563eb;
--primary-dark: #1e40af;
--secondary-color: #0ea5e9;
--accent-color: #f59e0b;
--text-dark: #1f2937;
--text-light: #6b7280;
--bg-light: #f9fafb;
--bg-white: #ffffff;
--border-color: #e5e7eb;
--success-color: #10b981;
--error-color: #ef4444;
}

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

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

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

.primary-nav {
background-color: var(--bg-white);
box-shadow: 0 2px 8px rgba(0,0,0,0.1);
position: sticky;
top: 0;
z-index: 1000;
}

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

.site-logo {
display: flex;
align-items: center;
gap: 12px;
text-decoration: none;
color: var(--text-dark);
font-weight: 700;
font-size: 1.5rem;
}

.site-logo img {
border-radius: 50%;
}

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

.nav-links a {
text-decoration: none;
color: var(--text-dark);
font-weight: 500;
padding: 8px 16px;
border-radius: 6px;
transition: all 0.3s ease;
}

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

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

.hero-section {
position: relative;
min-height: 600px;
display: flex;
align-items: center;
justify-content: center;
color: var(--bg-white);
overflow: hidden;
}

.hero-bg {
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(37,99,235,0.85), rgba(14,165,233,0.75));
z-index: 0;
}

.hero-content {
position: relative;
z-index: 1;
text-align: center;
max-width: 900px;
padding: 40px 20px;
}

.hero-content h1 {
font-size: 3.5rem;
margin-bottom: 20px;
font-weight: 800;
text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-content p {
font-size: 1.4rem;
margin-bottom: 35px;
text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

.hero-cta {
display: flex;
gap: 20px;
justify-content: center;
flex-wrap: wrap;
}

.cta-primary,
.cta-secondary,
.btn-primary,
.btn-secondary {
padding: 14px 32px;
text-decoration: none;
border-radius: 8px;
font-weight: 600;
font-size: 1.1rem;
transition: all 0.3s ease;
display: inline-block;
text-align: center;
border: 2px solid transparent;
}

.cta-primary,
.btn-primary {
background-color: var(--accent-color);
color: var(--bg-white);
}

.cta-primary:hover,
.btn-primary:hover {
background-color: #d97706;
transform: translateY(-2px);
box-shadow: 0 5px 15px rgba(245,158,11,0.4);
}

.cta-secondary,
.btn-secondary {
background-color: transparent;
color: var(--bg-white);
border-color: var(--bg-white);
}

.cta-secondary:hover,
.btn-secondary:hover {
background-color: var(--bg-white);
color: var(--primary-color);
}

.btn-white {
background-color: var(--bg-white);
color: var(--primary-color);
padding: 14px 32px;
text-decoration: none;
border-radius: 8px;
font-weight: 600;
font-size: 1.1rem;
transition: all 0.3s ease;
display: inline-block;
}

.btn-white:hover {
background-color: var(--bg-light);
transform: translateY(-2px);
box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

section {
padding: 80px 0;
}

h2 {
font-size: 2.5rem;
margin-bottom: 15px;
color: var(--text-dark);
text-align: center;
}

.section-subtitle {
text-align: center;
font-size: 1.2rem;
color: var(--text-light);
margin-bottom: 50px;
}

.services-preview {
background-color: var(--bg-light);
}

.services-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 30px;
margin-top: 50px;
}

.service-card {
background-color: var(--bg-white);
padding: 35px;
border-radius: 12px;
box-shadow: 0 4px 6px rgba(0,0,0,0.1);
transition: all 0.3s ease;
}

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

.service-icon {
width: 70px;
height: 70px;
background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
margin-bottom: 20px;
color: var(--bg-white);
font-size: 2rem;
}

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

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

.service-link {
color: var(--primary-color);
text-decoration: none;
font-weight: 600;
display: inline-flex;
align-items: center;
gap: 8px;
transition: gap 0.3s ease;
}

.service-link:hover {
gap: 12px;
}

.why-choose {
background-color: var(--bg-white);
}

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

.why-text h2 {
text-align: left;
margin-bottom: 30px;
}

.features-list {
list-style: none;
}

.features-list li {
display: flex;
gap: 15px;
margin-bottom: 25px;
align-items: flex-start;
}

.features-list i {
color: var(--success-color);
font-size: 1.5rem;
flex-shrink: 0;
}

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

.features-list p {
color: var(--text-light);
line-height: 1.6;
}

.why-image img {
width: 100%;
border-radius: 12px;
box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}

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

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

.step {
background-color: var(--bg-white);
padding: 30px;
border-radius: 12px;
text-align: center;
position: relative;
box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

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

.step h3 {
margin-bottom: 15px;
color: var(--text-dark);
}

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

.testimonials-section {
background-color: var(--bg-white);
}

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

.testimonial-card {
background-color: var(--bg-light);
padding: 30px;
border-radius: 12px;
box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.stars {
color: var(--accent-color);
margin-bottom: 15px;
font-size: 1.2rem;
}

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

.testimonial-author strong {
display: block;
color: var(--text-dark);
font-weight: 600;
}

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

.recent-posts {
background-color: var(--bg-light);
}

.blog-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
gap: 35px;
margin-top: 50px;
}

.blog-card {
background-color: var(--bg-white);
border-radius: 12px;
overflow: hidden;
box-shadow: 0 4px 6px rgba(0,0,0,0.1);
transition: all 0.3s ease;
}

.blog-card:hover {
transform: translateY(-5px);
box-shadow: 0 12px 24px rgba(0,0,0,0.15);
}

.blog-card img {
width: 100%;
height: 250px;
object-fit: cover;
}

.blog-content {
padding: 25px;
}

.blog-date {
color: var(--text-light);
font-size: 0.9rem;
display: inline-flex;
align-items: center;
gap: 6px;
margin-bottom: 10px;
}

.blog-card h3 {
font-size: 1.4rem;
margin-bottom: 12px;
color: var(--text-dark);
}

.blog-card p {
color: var(--text-light);
margin-bottom: 18px;
line-height: 1.6;
}

.read-more {
color: var(--primary-color);
text-decoration: none;
font-weight: 600;
display: inline-flex;
align-items: center;
gap: 8px;
transition: gap 0.3s ease;
}

.read-more:hover {
gap: 12px;
}

.blog-cta {
text-align: center;
margin-top: 50px;
}

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

.cta-content h2 {
color: var(--bg-white);
margin-bottom: 20px;
}

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

.site-footer {
background-color: #1f2937;
color: #d1d5db;
padding: 60px 0 20px;
}

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

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

.footer-col p {
line-height: 1.7;
margin-bottom: 15px;
}

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

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

.footer-col a {
color: #d1d5db;
text-decoration: none;
transition: color 0.3s ease;
display: inline-flex;
align-items: center;
gap: 8px;
}

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

.contact-info li {
display: flex;
gap: 10px;
align-items: flex-start;
margin-bottom: 15px;
}

.contact-info i {
color: var(--secondary-color);
margin-top: 4px;
}

.registration-info {
font-size: 0.9rem;
color: #9ca3af;
font-style: italic;
margin-top: 10px;
}

.footer-bottom {
border-top: 1px solid #374151;
padding-top: 25px;
text-align: center;
}

.footer-legal {
margin-bottom: 15px;
display: flex;
justify-content: center;
gap: 15px;
flex-wrap: wrap;
}

.footer-legal a {
color: #d1d5db;
text-decoration: none;
transition: color 0.3s ease;
}

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

.footer-legal span {
color: #6b7280;
}

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

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

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

.cookie-text {
flex: 1;
min-width: 300px;
}

.cookie-text h3 {
font-size: 1.2rem;
margin-bottom: 10px;
color: var(--text-dark);
display: flex;
align-items: center;
gap: 10px;
}

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

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

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

.cookie-btn {
padding: 12px 24px;
border: none;
border-radius: 6px;
font-weight: 600;
cursor: pointer;
transition: all 0.3s ease;
}

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

.accept-btn:hover {
background-color: #059669;
}

.decline-btn {
background-color: var(--text-light);
color: var(--bg-white);
}

.decline-btn:hover {
background-color: #4b5563;
}

.page-header {
position: relative;
min-height: 350px;
display: flex;
align-items: center;
justify-content: center;
color: var(--bg-white);
overflow: hidden;
}

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

.header-overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: linear-gradient(135deg, rgba(37,99,235,0.9), rgba(14,165,233,0.8));
z-index: 0;
}

.page-header .container {
position: relative;
z-index: 1;
text-align: center;
}

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

.page-header p {
font-size: 1.3rem;
text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

.services-detailed {
padding: 80px 0;
}

.service-detail-block {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 60px;
align-items: center;
margin-bottom: 80px;
}

.service-detail-block.reverse {
direction: rtl;
}

.service-detail-block.reverse > * {
direction: ltr;
}

.service-icon-large {
width: 80px;
height: 80px;
background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
color: var(--bg-white);
font-size: 2.5rem;
margin-bottom: 25px;
}

.service-detail-content h2 {
text-align: left;
font-size: 2.2rem;
margin-bottom: 20px;
}

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

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

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

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

.service-features i {
color: var(--success-color);
margin-top: 4px;
}

.service-pricing {
display: flex;
align-items: center;
gap: 25px;
margin-top: 30px;
flex-wrap: wrap;
}

.price-tag {
font-size: 1.8rem;
font-weight: 700;
color: var(--primary-color);
}

.service-detail-image img {
width: 100%;
border-radius: 12px;
box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}

.service-guarantee {
background-color: var(--bg-light);
padding: 80px 0;
}

.guarantee-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 30px;
margin-top: 50px;
}

.guarantee-item {
text-align: center;
padding: 30px;
}

.guarantee-item i {
font-size: 3rem;
color: var(--primary-color);
margin-bottom: 20px;
}

.guarantee-item h3 {
margin-bottom: 12px;
color: var(--text-dark);
}

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

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

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

.faq-item {
background-color: var(--bg-light);
margin-bottom: 15px;
border-radius: 8px;
overflow: hidden;
}

.faq-question {
padding: 20px 25px;
cursor: pointer;
display: flex;
justify-content: space-between;
align-items: center;
font-weight: 600;
color: var(--text-dark);
transition: background-color 0.3s ease;
}

.faq-question:hover {
background-color: #e5e7eb;
}

.faq-question h3 {
font-size: 1.1rem;
}

.faq-question i {
color: var(--primary-color);
transition: transform 0.3s ease;
}

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

.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 25px 20px;
color: var(--text-light);
line-height: 1.7;
}

.blog-main {
padding: 80px 0;
}

.blog-intro {
max-width: 800px;
margin: 0 auto 50px;
text-align: center;
}

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

.blog-posts-list {
display: flex;
flex-direction: column;
gap: 50px;
}

.blog-post-item {
display: grid;
grid-template-columns: 400px 1fr;
gap: 35px;
background-color: var(--bg-white);
border-radius: 12px;
overflow: hidden;
box-shadow: 0 4px 6px rgba(0,0,0,0.1);
transition: all 0.3s ease;
}

.blog-post-item:hover {
box-shadow: 0 12px 24px rgba(0,0,0,0.15);
}

.post-image {
position: relative;
}

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

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

.post-details {
padding: 30px 30px 30px 0;
}

.post-meta {
display: flex;
gap: 20px;
margin-bottom: 15px;
flex-wrap: wrap;
}

.post-meta span {
color: var(--text-light);
font-size: 0.9rem;
display: inline-flex;
align-items: center;
gap: 6px;
}

.post-details h2 {
text-align: left;
font-size: 1.8rem;
margin-bottom: 15px;
}

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

.post-details h2 a:hover {
color: var(--primary-color);
}

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

.post-tags {
display: flex;
gap: 10px;
flex-wrap: wrap;
margin-bottom: 20px;
align-items: center;
}

.post-tags i {
color: var(--text-light);
}

.post-tags span {
background-color: var(--bg-light);
padding: 5px 12px;
border-radius: 15px;
font-size: 0.85rem;
color: var(--text-dark);
}

.read-more-btn {
color: var(--primary-color);
text-decoration: none;
font-weight: 600;
display: inline-flex;
align-items: center;
gap: 8px;
transition: gap 0.3s ease;
}

.read-more-btn:hover {
gap: 12px;
}

.blog-subscribe {
background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
padding: 60px 0;
}

.subscribe-content {
display: flex;
justify-content: space-between;
align-items: center;
gap: 30px;
flex-wrap: wrap;
}

.subscribe-text h2 {
color: var(--bg-white);
text-align: left;
margin-bottom: 10px;
}

.subscribe-text p {
color: var(--bg-white);
font-size: 1.1rem;
}

.about-story {
padding: 80px 0;
}

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

.story-text h2 {
text-align: left;
margin-bottom: 25px;
}

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

.story-image img {
width: 100%;
border-radius: 12px;
box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}

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

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

.value-card {
background-color: var(--bg-white);
padding: 35px;
border-radius: 12px;
text-align: center;
box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.value-card i {
font-size: 3rem;
color: var(--primary-color);
margin-bottom: 20px;
}

.value-card h3 {
margin-bottom: 12px;
color: var(--text-dark);
}

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

.team-section {
padding: 80px 0;
}

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

.team-member {
background-color: var(--bg-light);
border-radius: 12px;
overflow: hidden;
text-align: center;
box-shadow: 0 4px 6px rgba(0,0,0,0.1);
transition: all 0.3s ease;
}

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

.team-member img {
width: 100%;
height: 400px;
object-fit: cover;
}

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

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

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

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

.cert-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 30px;
margin-top: 50px;
}

.cert-item {
background-color: var(--bg-white);
padding: 30px;
border-radius: 12px;
text-align: center;
}

.cert-item i {
font-size: 2.5rem;
color: var(--accent-color);
margin-bottom: 15px;
}

.cert-item h3 {
margin-bottom: 10px;
color: var(--text-dark);
}

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

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

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

.stat-item {
text-align: center;
color: var(--bg-white);
}

.stat-number {
font-size: 3.5rem;
font-weight: 800;
margin-bottom: 10px;
}

.stat-item p {
font-size: 1.2rem;
}

.contact-main {
padding: 80px 0;
}

.contact-intro {
max-width: 800px;
margin: 0 auto 50px;
text-align: center;
}

.contact-intro h2 {
margin-bottom: 20px;
}

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

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

.contact-info-section h3,
.contact-form-section h3 {
font-size: 1.8rem;
margin-bottom: 30px;
color: var(--text-dark);
}

.contact-details {
display: flex;
flex-direction: column;
gap: 25px;
}

.contact-detail-item {
display: flex;
gap: 20px;
}

.contact-icon {
width: 50px;
height: 50px;
background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
color: var(--bg-white);
font-size: 1.3rem;
flex-shrink: 0;
}

.contact-detail-text h4 {
margin-bottom: 8px;
color: var(--text-dark);
}

.contact-detail-text p {
color: var(--text-light);
line-height: 1.6;
}

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

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

.contact-note {
font-size: 0.9rem;
color: var(--text-light);
font-style: italic;
}

.contact-form {
background-color: var(--bg-light);
padding: 35px;
border-radius: 12px;
}

.form-group {
margin-bottom: 20px;
}

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

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

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

.form-group textarea {
resize: vertical;
min-height: 120px;
}

.submit-btn {
background-color: var(--primary-color);
color: var(--bg-white);
padding: 14px 35px;
border: none;
border-radius: 6px;
font-size: 1.1rem;
font-weight: 600;
cursor: pointer;
display: inline-flex;
align-items: center;
gap: 10px;
transition: all 0.3s ease;
}

.submit-btn:hover {
background-color: var(--primary-dark);
transform: translateY(-2px);
box-shadow: 0 5px 15px rgba(37,99,235,0.3);
}

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

.letter-wrapper {
max-width: 900px;
margin: 0 auto;
background-color: var(--bg-white);
padding: 50px;
border-radius: 12px;
box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.letter-header {
text-align: center;
margin-bottom: 40px;
padding-bottom: 30px;
border-bottom: 2px solid var(--border-color);
}

.letter-header img {
margin-bottom: 20px;
border-radius: 50%;
}

.letter-header h2 {
margin-bottom: 10px;
}

.letter-date {
color: var(--text-light);
font-style: italic;
}

.letter-content p {
color: var(--text-dark);
line-height: 1.8;
margin-bottom: 20px;
}

.letter-signature {
margin-top: 40px;
padding-top: 30px;
border-top: 1px solid var(--border-color);
}

.letter-signature p {
margin-bottom: 10px;
}

.letter-signature strong {
font-size: 1.1rem;
}

.signature-details {
margin-top: 15px;
color: var(--text-light);
font-size: 0.95rem;
line-height: 1.6;
}

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

.map-container {
margin-top: 40px;
border-radius: 12px;
overflow: hidden;
box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

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

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

.modal-content {
background-color: var(--bg-white);
padding: 50px;
border-radius: 12px;
text-align: center;
max-width: 500px;
margin: 20px;
box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

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

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

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

.modal-close-btn {
background-color: var(--primary-color);
color: var(--bg-white);
padding: 12px 30px;
border: none;
border-radius: 6px;
font-size: 1rem;
font-weight: 600;
cursor: pointer;
transition: all 0.3s ease;
}

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

.post-container {
padding-top: 0;
}

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

.post-breadcrumb {
display: flex;
align-items: center;
gap: 10px;
margin-bottom: 20px;
font-size: 0.9rem;
}

.post-breadcrumb a {
color: var(--primary-color);
text-decoration: none;
}

.post-breadcrumb a:hover {
text-decoration: underline;
}

.post-breadcrumb i {
font-size: 0.7rem;
color: var(--text-light);
}

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

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

.post-meta-info {
display: flex;
gap: 25px;
flex-wrap: wrap;
}

.post-meta-info span {
color: var(--text-light);
display: inline-flex;
align-items: center;
gap: 8px;
}

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

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

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

.content-wrapper {
display: grid;
grid-template-columns: 1fr 350px;
gap: 60px;
}

.main-content {
max-width: 100%;
}

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

.main-content h2 {
text-align: left;
font-size: 2rem;
margin: 40px 0 20px;
color: var(--text-dark);
}

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

.main-content ul,
.main-content ol {
margin: 20px 0 20px 25px;
}

.main-content li {
color: var(--text-light);
line-height: 1.8;
margin-bottom: 10px;
}

.main-content strong {
color: var(--text-dark);
}

.content-image {
width: 100%;
border-radius: 12px;
margin: 30px 0;
box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.sidebar {
position: sticky;
top: 100px;
align-self: flex-start;
}

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

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

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

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

.author-info h4 {
margin-bottom: 8px;
color: var(--text-dark);
}

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

.related-services {
list-style: none;
}

.related-services li {
margin-bottom: 12px;
}

.related-services a {
color: var(--text-dark);
text-decoration: none;
display: flex;
align-items: center;
gap: 10px;
padding: 10px;
border-radius: 6px;
transition: all 0.3s ease;
}

.related-services a:hover {
background-color: var(--bg-white);
color: var(--primary-color);
}

.related-services i {
color: var(--primary-color);
}

.popular-posts {
list-style: none;
}

.popular-posts li {
margin-bottom: 15px;
}

.popular-posts a {
display: flex;
gap: 12px;
text-decoration: none;
color: var(--text-dark);
align-items: flex-start;
transition: opacity 0.3s ease;
}

.popular-posts a:hover {
opacity: 0.7;
}

.popular-posts img {
border-radius: 6px;
object-fit: cover;
flex-shrink: 0;
}

.popular-posts span {
font-size: 0.95rem;
line-height: 1.5;
}

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

.cta-widget h3 {
color: var(--bg-white);
}

.cta-widget p {
color: var(--bg-white);
margin-bottom: 20px;
line-height: 1.6;
}

@media (max-width: 992px) {
.nav-links {
display: none;
position: absolute;
top: 100%;
left: 0;
right: 0;
background-color: var(--bg-white);
flex-direction: column;
gap: 0;
box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.nav-links.active {
display: flex;
}

.nav-links li {
border-bottom: 1px solid var(--border-color);
}

.nav-links a {
display: block;
padding: 15px 20px;
border-radius: 0;
}

.mobile-toggle {
display: block;
}

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

.why-content,
.story-content,
.service-detail-block {
grid-template-columns: 1fr;
}

.service-detail-block.reverse {
direction: ltr;
}

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

.sidebar {
position: static;
}

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

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

.post-image {
height: 300px;
}

.post-details {
padding: 30px;
}
}

@media (max-width: 768px) {
.hero-content h1 {
font-size: 2rem;
}

.hero-content p {
font-size: 1.1rem;
}

h2 {
font-size: 2rem;
}

.page-header h1 {
font-size: 2.2rem;
}

.service-detail-content h2 {
font-size: 1.8rem;
}

.letter-wrapper {
padding: 30px 20px;
}

.stats-grid {
grid-template-columns: repeat(2, 1fr);
}
}

@media (max-width: 480px) {
.hero-cta,
.cookie-buttons {
flex-direction: column;
width: 100%;
}

.cta-primary,
.cta-secondary,
.btn-primary,
.btn-white {
width: 100%;
}

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