:root {
--primary-color: #1a5490;
--secondary-color: #2980b9;
--accent-color: #16a085;
--dark-color: #2c3e50;
--light-color: #ecf0f1;
--text-color: #333;
--border-color: #ddd;
--success-color: #27ae60;
--warning-color: #f39c12;
--danger-color: #e74c3c;
--white: #ffffff;
--gray: #95a5a6;
--shadow: 0 2px 10px rgba(0,0,0,0.1);
--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-color);
background-color: #f8f9fa;
}

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

img {
max-width: 100%;
height: auto;
display: block;
}

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

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

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

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

.logo-wrapper {
display: flex;
align-items: center;
gap: 15px;
}

.logo-img {
width: 50px;
height: 50px;
border-radius: 50%;
object-fit: cover;
}

.logo-text {
font-size: 1.5rem;
font-weight: bold;
color: var(--primary-color);
}

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

.nav-menu a {
color: var(--text-color);
font-weight: 500;
padding: 0.5rem 1rem;
border-radius: 5px;
display: flex;
align-items: center;
gap: 8px;
}

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

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

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

.hero-section {
position: relative;
height: 600px;
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(26,84,144,0.8), rgba(22,160,133,0.6));
z-index: 2;
}

.hero-content {
position: relative;
z-index: 3;
text-align: center;
color: var(--white);
padding: 0 20px;
}

.hero-title {
font-size: 3.5rem;
margin-bottom: 1rem;
text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
font-size: 1.5rem;
margin-bottom: 2rem;
text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.cta-button {
display: inline-block;
background: var(--accent-color);
color: var(--white);
padding: 1rem 2.5rem;
font-size: 1.1rem;
border-radius: 50px;
font-weight: bold;
box-shadow: 0 4px 15px rgba(0,0,0,0.2);
transition: var(--transition);
}

.cta-button:hover {
background: var(--success-color);
transform: translateY(-3px);
box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

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

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

.section-subtitle {
text-align: center;
font-size: 1.2rem;
color: var(--gray);
margin-top: -2rem;
margin-bottom: 3rem;
}

.features-section {
padding: 5rem 0;
background: var(--white);
}

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

.feature-card {
text-align: center;
padding: 2rem;
border-radius: 10px;
transition: var(--transition);
background: var(--light-color);
}

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

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

.feature-card h3 {
font-size: 1.5rem;
margin-bottom: 1rem;
color: var(--dark-color);
}

.intro-section {
padding: 5rem 0;
background: #f8f9fa;
}

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

.intro-text h2 {
font-size: 2.2rem;
color: var(--dark-color);
margin-bottom: 1.5rem;
}

.intro-text p {
margin-bottom: 1.5rem;
font-size: 1.1rem;
line-height: 1.8;
}

.intro-list {
list-style: none;
margin-top: 2rem;
}

.intro-list li {
padding: 0.8rem 0;
font-size: 1.1rem;
display: flex;
align-items: center;
gap: 10px;
}

.intro-list i {
color: var(--success-color);
font-size: 1.2rem;
}

.intro-image img {
border-radius: 10px;
box-shadow: var(--shadow);
}

.services-section {
padding: 5rem 0;
background: var(--white);
}

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

.service-item {
display: grid;
grid-template-columns: 400px 1fr;
gap: 2rem;
background: var(--light-color);
border-radius: 10px;
overflow: hidden;
transition: var(--transition);
}

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

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

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

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

.service-price {
display: inline-block;
margin-top: 1rem;
font-size: 1.3rem;
font-weight: bold;
color: var(--accent-color);
}

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

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

.testimonials-section .section-title::after {
background: var(--white);
}

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

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

.testimonial-rating {
color: var(--warning-color);
margin-bottom: 1rem;
font-size: 1.2rem;
}

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

.testimonial-author strong {
color: var(--primary-color);
display: block;
margin-bottom: 0.3rem;
}

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

.faq-section {
padding: 5rem 0;
background: var(--white);
}

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

.faq-item {
margin-bottom: 1rem;
border: 1px solid var(--border-color);
border-radius: 8px;
overflow: hidden;
}

.faq-question {
width: 100%;
background: var(--light-color);
border: none;
padding: 1.5rem;
text-align: left;
font-size: 1.1rem;
font-weight: 600;
cursor: pointer;
display: flex;
justify-content: space-between;
align-items: center;
transition: var(--transition);
}

.faq-question:hover {
background: var(--primary-color);
color: var(--white);
}

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

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

.faq-answer {
max-height: 0;
overflow: hidden;
transition: max-height 0.3s ease;
background: var(--white);
}

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

.faq-answer p {
padding: 1.5rem;
line-height: 1.8;
}

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

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

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

.cta-btn-secondary {
display: inline-block;
background: var(--white);
color: var(--accent-color);
padding: 1rem 2.5rem;
font-size: 1.1rem;
border-radius: 50px;
font-weight: bold;
transition: var(--transition);
}

.cta-btn-secondary:hover {
background: var(--dark-color);
color: var(--white);
transform: translateY(-3px);
box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.main-footer {
background: var(--dark-color);
color: var(--light-color);
padding: 3rem 0 1rem;
}

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

.footer-column h3 {
color: var(--white);
margin-bottom: 1rem;
font-size: 1.3rem;
}

.footer-column p {
line-height: 1.8;
}

.footer-reg {
margin-top: 1rem;
font-size: 0.9rem;
color: var(--gray);
}

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

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

.footer-links a {
color: var(--light-color);
transition: var(--transition);
}

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

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

.footer-contact li {
margin-bottom: 1rem;
display: flex;
gap: 10px;
line-height: 1.6;
}

.footer-contact i {
color: var(--accent-color);
margin-top: 3px;
}

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

.cookie-banner {
position: fixed;
bottom: 0;
left: 0;
right: 0;
background: var(--white);
box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
padding: 2rem;
z-index: 9999;
display: none;
}

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

.cookie-content {
max-width: 1200px;
margin: 0 auto;
display: grid;
grid-template-columns: 1fr auto;
gap: 2rem;
align-items: center;
}

.cookie-text h3 {
margin-bottom: 0.5rem;
display: flex;
align-items: center;
gap: 10px;
}

.cookie-text h3 i {
color: var(--warning-color);
}

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

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

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

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

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

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

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

.cookie-decline {
background: var(--gray);
color: var(--white);
}

.cookie-decline:hover {
background: #7f8c8d;
}

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

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

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

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

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

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

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

.blog-image-wrapper {
position: relative;
overflow: hidden;
height: 250px;
}

.blog-image-wrapper img {
width: 100%;
height: 100%;
object-fit: cover;
transition: var(--transition);
}

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

.badge-new {
position: absolute;
top: 15px;
right: 15px;
background: var(--danger-color);
color: var(--white);
padding: 0.5rem 1rem;
border-radius: 20px;
font-weight: bold;
font-size: 0.8rem;
}

.blog-content {
padding: 1.5rem;
}

.blog-meta {
display: flex;
gap: 1.5rem;
margin-bottom: 1rem;
font-size: 0.9rem;
color: var(--gray);
}

.blog-content h2 {
font-size: 1.5rem;
margin-bottom: 1rem;
line-height: 1.4;
}

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

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

.blog-content p {
color: var(--text-color);
margin-bottom: 1rem;
line-height: 1.6;
}

.read-more {
color: var(--primary-color);
font-weight: 600;
display: inline-flex;
align-items: center;
gap: 5px;
}

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

.newsletter-section {
padding: 4rem 0;
background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
color: var(--white);
}

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

.newsletter-content h2 {
font-size: 2rem;
margin-bottom: 1rem;
}

.newsletter-form {
display: flex;
gap: 1rem;
margin-top: 2rem;
}

.newsletter-form input {
flex: 1;
padding: 1rem;
border: none;
border-radius: 5px;
font-size: 1rem;
}

.newsletter-btn {
background: var(--dark-color);
color: var(--white);
padding: 1rem 2rem;
border: none;
border-radius: 5px;
font-weight: bold;
cursor: pointer;
transition: var(--transition);
}

.newsletter-btn:hover {
background: var(--success-color);
}

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

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

.about-intro-content p {
font-size: 1.1rem;
line-height: 1.8;
margin-bottom: 1.5rem;
}

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

.stat-item {
text-align: center;
padding: 2rem;
background: var(--light-color);
border-radius: 10px;
}

.stat-number {
font-size: 3rem;
font-weight: bold;
color: var(--primary-color);
margin-bottom: 0.5rem;
}

.stat-label {
color: var(--gray);
font-size: 1.1rem;
}

.team-section {
padding: 4rem 0;
background: #f8f9fa;
}

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

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

.team-card:hover {
transform: translateY(-10px);
}

.team-image {
height: 400px;
overflow: hidden;
}

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

.team-info {
padding: 2rem;
}

.team-info h3 {
font-size: 1.5rem;
color: var(--dark-color);
margin-bottom: 0.5rem;
}

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

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

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

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

.value-card {
text-align: center;
padding: 2rem;
}

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

.value-card h3 {
font-size: 1.5rem;
color: var(--dark-color);
margin-bottom: 1rem;
}

.contact-section {
padding: 4rem 0;
background: var(--white);
}

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

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

.contact-details {
margin-top: 2rem;
}

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

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

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

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

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
width: 100%;
padding: 1rem;
border: 1px solid var(--border-color);
border-radius: 5px;
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(26,84,144,0.1);
}

.checkbox-label {
display: flex;
align-items: center;
gap: 10px;
cursor: pointer;
}

.checkbox-label input {
width: auto;
cursor: pointer;
}

.submit-btn {
background: var(--primary-color);
color: var(--white);
padding: 1rem 2rem;
border: none;
border-radius: 5px;
font-size: 1.1rem;
font-weight: bold;
cursor: pointer;
transition: var(--transition);
display: flex;
align-items: center;
justify-content: center;
gap: 10px;
}

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

.map-section {
padding: 4rem 0;
background: #f8f9fa;
}

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

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

.modal.show {
display: flex;
}

.modal-content {
background: var(--white);
padding: 3rem;
border-radius: 10px;
text-align: center;
max-width: 500px;
margin: 0 20px;
}

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

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

.modal-close-btn {
margin-top: 2rem;
background: var(--primary-color);
color: var(--white);
padding: 1rem 2rem;
border: none;
border-radius: 5px;
cursor: pointer;
font-weight: bold;
transition: var(--transition);
}

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

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

.post-header {
padding: 2rem 0;
background: #f8f9fa;
}

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

.back-link {
color: var(--primary-color);
font-weight: 600;
display: flex;
align-items: center;
gap: 5px;
}

.post-date {
color: var(--gray);
}

.post-title {
font-size: 2.5rem;
color: var(--dark-color);
margin-bottom: 1.5rem;
line-height: 1.3;
}

.post-author-info {
display: flex;
flex-wrap: wrap;
gap: 2rem;
color: var(--gray);
}

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

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

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

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

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

.post-content h2 {
font-size: 2rem;
color: var(--dark-color);
margin: 2.5rem 0 1.5rem;
}

.post-content h3 {
font-size: 1.5rem;
color: var(--dark-color);
margin: 2rem 0 1rem;
}

.post-content p {
margin-bottom: 1.5rem;
line-height: 1.8;
font-size: 1.1rem;
}

.post-content ul,
.post-content ol {
margin: 1.5rem 0 1.5rem 2rem;
line-height: 1.8;
}

.post-content li {
margin-bottom: 0.8rem;
}

.post-navigation {
background: #f8f9fa;
padding: 2rem 0;
}

.post-navigation .container {
display: flex;
justify-content: space-between;
}

.nav-prev,
.nav-next {
padding: 1rem 2rem;
background: var(--primary-color);
color: var(--white);
border-radius: 5px;
font-weight: 600;
transition: var(--transition);
}

.nav-prev:hover,
.nav-next:hover {
background: var(--secondary-color);
}

.related-posts {
padding: 4rem 0;
background: var(--white);
}

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

.related-card {
background: #f8f9fa;
border-radius: 10px;
overflow: hidden;
transition: var(--transition);
}

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

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

.related-card h3 {
padding: 1rem 1.5rem 0.5rem;
font-size: 1.2rem;
}

.related-card h3 a {
color: var(--dark-color);
}

.related-date {
display: block;
padding: 0 1.5rem 1.5rem;
color: var(--gray);
font-size: 0.9rem;
}

@media (max-width: 768px) {
.mobile-toggle {
display: flex;
}

.nav-menu {
position: absolute;
top: 100%;
left: 0;
right: 0;
background: var(--white);
flex-direction: column;
padding: 1rem;
box-shadow: var(--shadow);
display: none;
}

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

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

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

.intro-content,
.contact-wrapper,
.service-item {
grid-template-columns: 1fr;
}

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

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

.newsletter-form {
flex-direction: column;
}

.post-title {
font-size: 1.8rem;
}

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

@media (max-width: 480px) {
.hero-section {
height: 400px;
}

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

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