:root {
--primary-color: #1a4d7d;
--secondary-color: #c89b3c;
--text-dark: #2c3e50;
--text-light: #6c757d;
--bg-light: #f8f9fa;
--bg-white: #ffffff;
--border-color: #dee2e6;
--success-color: #28a745;
--danger-color: #dc3545;
--font-primary: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

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

body {
font-family: var(--font-primary);
line-height: 1.7;
color: var(--text-dark);
background-color: var(--bg-light);
}

.main-header {
background: linear-gradient(135deg, var(--primary-color) 0%, #2c5f8d 100%);
box-shadow: 0 4px 12px rgba(0,0,0,0.15);
padding: 0;
position: sticky;
top: 0;
z-index: 1000;
}

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

.logo-section {
display: flex;
align-items: center;
gap: 1.2rem;
}

.site-logo {
border-radius: 8px;
box-shadow: 0 3px 8px rgba(0,0,0,0.2);
}

.brand-name {
color: var(--bg-white);
font-size: 1.8rem;
font-weight: 700;
letter-spacing: 0.5px;
}

.main-navigation ul {
display: flex;
list-style: none;
gap: 2.5rem;
}

.main-navigation a {
color: var(--bg-white);
text-decoration: none;
font-weight: 600;
font-size: 1.05rem;
transition: all 0.3s ease;
padding: 0.6rem 1.2rem;
border-radius: 6px;
}

.main-navigation a:hover {
background-color: rgba(255,255,255,0.15);
color: var(--secondary-color);
transform: translateY(-2px);
}

.hero-banner {
position: relative;
height: 650px;
display: flex;
align-items: center;
justify-content: center;
overflow: hidden;
margin-bottom: 4rem;
}

.hero-banner::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: linear-gradient(135deg, rgba(26,77,125,0.85) 0%, rgba(44,95,141,0.75) 100%);
z-index: 1;
}

.hero-image {
position: absolute;
width: 100%;
height: 100%;
object-fit: cover;
}

.hero-content {
position: relative;
z-index: 2;
text-align: center;
color: var(--bg-white);
max-width: 850px;
padding: 0 2rem;
}

.hero-content h2 {
font-size: 3.5rem;
margin-bottom: 1.5rem;
font-weight: 800;
text-shadow: 2px 4px 8px rgba(0,0,0,0.3);
line-height: 1.2;
}

.hero-content p {
font-size: 1.4rem;
margin-bottom: 2.5rem;
font-weight: 400;
text-shadow: 1px 2px 4px rgba(0,0,0,0.3);
}

.cta-button {
display: inline-block;
background-color: var(--secondary-color);
color: var(--bg-white);
padding: 1.1rem 2.8rem;
text-decoration: none;
border-radius: 50px;
font-weight: 700;
font-size: 1.15rem;
transition: all 0.3s ease;
box-shadow: 0 6px 20px rgba(200,155,60,0.4);
text-transform: uppercase;
letter-spacing: 1px;
}

.cta-button:hover {
background-color: #b08830;
transform: translateY(-3px);
box-shadow: 0 8px 25px rgba(200,155,60,0.5);
}

.section-wrapper {
max-width: 1300px;
margin: 0 auto;
padding: 0 2.5rem;
}

.services-section,
.process-section,
.pricing-section,
.testimonials-section,
.interview-section,
.faq-section,
.cta-section,
.glossary-section {
padding: 5rem 0;
}

.services-section h2,
.process-section h2,
.pricing-section h2,
.testimonials-section h2,
.interview-section h2,
.faq-section h2,
.glossary-section h2 {
text-align: center;
font-size: 2.8rem;
margin-bottom: 3.5rem;
color: var(--primary-color);
font-weight: 800;
position: relative;
padding-bottom: 1.2rem;
}

.services-section h2::after,
.process-section h2::after,
.pricing-section h2::after,
.testimonials-section h2::after,
.interview-section h2::after,
.faq-section h2::after,
.glossary-section h2::after {
content: '';
position: absolute;
bottom: 0;
left: 50%;
transform: translateX(-50%);
width: 100px;
height: 4px;
background: linear-gradient(to right, var(--secondary-color), var(--primary-color));
border-radius: 2px;
}

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

.service-card {
background: var(--bg-white);
padding: 2.5rem;
border-radius: 12px;
box-shadow: 0 5px 20px rgba(0,0,0,0.08);
transition: all 0.3s ease;
text-align: center;
border: 2px solid transparent;
}

.service-card:hover {
transform: translateY(-8px);
box-shadow: 0 12px 30px rgba(0,0,0,0.15);
border-color: var(--secondary-color);
}

.service-card .icon {
font-size: 3.5rem;
margin-bottom: 1.5rem;
display: block;
}

.service-card h3 {
font-size: 1.5rem;
margin-bottom: 1.2rem;
color: var(--primary-color);
font-weight: 700;
}

.service-card p {
color: var(--text-light);
line-height: 1.8;
font-size: 1.05rem;
}

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

.step-item {
background: var(--bg-white);
padding: 2.2rem;
border-radius: 10px;
text-align: center;
box-shadow: 0 4px 15px rgba(0,0,0,0.08);
position: relative;
transition: all 0.3s ease;
}

.step-item:hover {
box-shadow: 0 8px 25px rgba(0,0,0,0.12);
transform: translateY(-5px);
}

.step-number {
background: linear-gradient(135deg, var(--primary-color), #2c5f8d);
color: var(--bg-white);
width: 60px;
height: 60px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 1.8rem;
font-weight: 700;
margin: 0 auto 1.5rem;
box-shadow: 0 4px 12px rgba(26,77,125,0.3);
}

.step-item h3 {
font-size: 1.35rem;
margin-bottom: 1rem;
color: var(--primary-color);
font-weight: 700;
}

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

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

.pricing-card {
background: var(--bg-white);
border-radius: 12px;
padding: 2.8rem;
box-shadow: 0 5px 20px rgba(0,0,0,0.08);
text-align: center;
transition: all 0.3s ease;
border: 2px solid var(--border-color);
}

.pricing-card.featured {
border-color: var(--secondary-color);
transform: scale(1.05);
box-shadow: 0 10px 30px rgba(200,155,60,0.25);
}

.pricing-card:hover {
transform: translateY(-8px) scale(1.02);
box-shadow: 0 12px 35px rgba(0,0,0,0.15);
}

.pricing-card h3 {
font-size: 1.6rem;
color: var(--primary-color);
margin-bottom: 1.5rem;
font-weight: 700;
}

.price {
font-size: 2.5rem;
color: var(--secondary-color);
font-weight: 800;
margin-bottom: 2rem;
display: block;
}

.pricing-card ul {
list-style: none;
text-align: left;
margin-top: 1.5rem;
}

.pricing-card li {
padding: 0.8rem 0;
border-bottom: 1px solid var(--border-color);
color: var(--text-dark);
}

.pricing-card li:last-child {
border-bottom: none;
}

.pricing-card li::before {
content: '✓ ';
color: var(--success-color);
font-weight: 700;
margin-right: 0.5rem;
}

.testimonials-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
gap: 2.5rem;
margin-top: 3rem;
}

.testimonial-card {
background: var(--bg-white);
padding: 2.5rem;
border-radius: 12px;
box-shadow: 0 5px 20px rgba(0,0,0,0.08);
border-left: 5px solid var(--secondary-color);
transition: all 0.3s ease;
}

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

.testimonial-card p {
font-style: italic;
color: var(--text-dark);
margin-bottom: 1.5rem;
line-height: 1.8;
font-size: 1.05rem;
}

.client-info {
display: flex;
flex-direction: column;
gap: 0.3rem;
}

.client-info strong {
color: var(--primary-color);
font-size: 1.1rem;
}

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

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

.interview-content {
display: grid;
grid-template-columns: 1fr 2fr;
gap: 3rem;
align-items: start;
margin-top: 2rem;
}

.expert-photo {
width: 100%;
border-radius: 12px;
box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.interview-text h3 {
color: var(--primary-color);
font-size: 1.6rem;
margin-bottom: 2rem;
font-weight: 700;
}

.qa-block {
margin-bottom: 2rem;
}

.question {
color: var(--primary-color);
font-size: 1.15rem;
margin-bottom: 1rem;
font-weight: 600;
}

.answer {
color: var(--text-dark);
line-height: 1.8;
padding-left: 1.5rem;
border-left: 3px solid var(--secondary-color);
}

.faq-container {
max-width: 950px;
margin: 3rem auto 0;
}

.faq-item {
background: var(--bg-white);
padding: 2rem;
margin-bottom: 1.5rem;
border-radius: 10px;
box-shadow: 0 4px 15px rgba(0,0,0,0.08);
border-left: 4px solid var(--primary-color);
transition: all 0.3s ease;
}

.faq-item:hover {
box-shadow: 0 8px 25px rgba(0,0,0,0.12);
transform: translateX(5px);
}

.faq-item h3 {
color: var(--primary-color);
font-size: 1.3rem;
margin-bottom: 1rem;
font-weight: 700;
}

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

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

.cta-section h2 {
color: var(--bg-white);
font-size: 2.5rem;
margin-bottom: 1.5rem;
}

.cta-section h2::after {
background: var(--secondary-color);
}

.cta-section p {
font-size: 1.25rem;
margin-bottom: 2.5rem;
}

.cta-button-secondary {
display: inline-block;
background-color: var(--bg-white);
color: var(--primary-color);
padding: 1.1rem 2.8rem;
text-decoration: none;
border-radius: 50px;
font-weight: 700;
font-size: 1.15rem;
transition: all 0.3s ease;
box-shadow: 0 6px 20px rgba(255,255,255,0.3);
}

.cta-button-secondary:hover {
background-color: var(--secondary-color);
color: var(--bg-white);
transform: translateY(-3px);
box-shadow: 0 8px 25px rgba(255,255,255,0.4);
}

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

.glossary-term {
background: var(--bg-white);
padding: 2rem;
border-radius: 10px;
box-shadow: 0 4px 15px rgba(0,0,0,0.08);
transition: all 0.3s ease;
}

.glossary-term:hover {
box-shadow: 0 8px 25px rgba(0,0,0,0.12);
transform: translateY(-5px);
}

.glossary-term h4 {
color: var(--primary-color);
font-size: 1.3rem;
margin-bottom: 1rem;
font-weight: 700;
}

.glossary-term p {
color: var(--text-dark);
line-height: 1.7;
}

.main-footer {
background: linear-gradient(135deg, #1a3a52 0%, #2c5f8d 100%);
color: var(--bg-white);
padding: 4rem 0 0;
margin-top: 5rem;
}

.footer-content {
max-width: 1300px;
margin: 0 auto;
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 3rem;
padding: 0 2.5rem 3rem;
}

.footer-section h3 {
font-size: 1.4rem;
margin-bottom: 1.5rem;
color: var(--secondary-color);
font-weight: 700;
}

.footer-section p,
.footer-section a {
color: rgba(255,255,255,0.85);
line-height: 1.9;
text-decoration: none;
transition: all 0.3s ease;
}

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

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

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

.footer-bottom {
background: rgba(0,0,0,0.2);
text-align: center;
padding: 1.8rem;
border-top: 1px solid rgba(255,255,255,0.1);
}

.page-header {
background: linear-gradient(135deg, var(--primary-color) 0%, #2c5f8d 100%);
color: var(--bg-white);
padding: 4rem 0;
text-align: center;
margin-bottom: 4rem;
}

.header-content h2 {
font-size: 2.8rem;
margin-bottom: 1rem;
font-weight: 800;
}

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

.blog-container {
max-width: 1400px;
margin: 0 auto;
padding: 0 2.5rem;
display: grid;
grid-template-columns: 2fr 1fr;
gap: 4rem;
margin-bottom: 5rem;
}

.blog-grid {
display: grid;
gap: 3rem;
}

.blog-post-card {
background: var(--bg-white);
border-radius: 12px;
overflow: hidden;
box-shadow: 0 5px 20px rgba(0,0,0,0.08);
transition: all 0.3s ease;
display: grid;
grid-template-columns: 400px 1fr;
}

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

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

.post-content {
padding: 2rem;
}

.post-category {
display: inline-block;
background: var(--secondary-color);
color: var(--bg-white);
padding: 0.4rem 1rem;
border-radius: 20px;
font-size: 0.85rem;
font-weight: 600;
margin-bottom: 1rem;
}

.post-content h3 {
margin-bottom: 1rem;
}

.post-content h3 a {
color: var(--primary-color);
text-decoration: none;
font-size: 1.5rem;
font-weight: 700;
transition: color 0.3s ease;
}

.post-content h3 a:hover {
color: var(--secondary-color);
}

.post-excerpt {
color: var(--text-dark);
line-height: 1.7;
margin-bottom: 1.5rem;
}

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

.read-more {
color: var(--primary-color);
font-weight: 600;
text-decoration: none;
transition: all 0.3s ease;
display: inline-block;
}

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

.blog-sidebar {
position: sticky;
top: 120px;
height: fit-content;
}

.sidebar-widget {
background: var(--bg-white);
padding: 2rem;
border-radius: 12px;
box-shadow: 0 4px 15px rgba(0,0,0,0.08);
margin-bottom: 2rem;
}

.sidebar-widget h3 {
color: var(--primary-color);
font-size: 1.4rem;
margin-bottom: 1.5rem;
font-weight: 700;
border-bottom: 2px solid var(--border-color);
padding-bottom: 0.8rem;
}

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

.category-list li {
padding: 0.8rem 0;
border-bottom: 1px solid var(--border-color);
display: flex;
justify-content: space-between;
align-items: center;
}

.category-list li:last-child {
border-bottom: none;
}

.category-list a {
color: var(--text-dark);
text-decoration: none;
transition: all 0.3s ease;
flex: 1;
}

.category-list a:hover {
color: var(--primary-color);
padding-left: 5px;
}

.category-list span {
background: var(--bg-light);
padding: 0.2rem 0.6rem;
border-radius: 12px;
font-size: 0.85rem;
color: var(--text-light);
}

.popular-posts {
display: flex;
flex-direction: column;
gap: 1rem;
}

.popular-post-item a {
color: var(--text-dark);
text-decoration: none;
display: block;
padding: 0.8rem;
border-left: 3px solid var(--secondary-color);
background: var(--bg-light);
border-radius: 4px;
transition: all 0.3s ease;
}

.popular-post-item a:hover {
background: var(--primary-color);
color: var(--bg-white);
padding-left: 1.2rem;
}

.cta-widget {
background: linear-gradient(135deg, var(--primary-color), #2c5f8d);
color: var(--bg-white);
}

.cta-widget h3 {
color: var(--bg-white);
border-bottom-color: rgba(255,255,255,0.2);
}

.sidebar-cta {
display: block;
background: var(--secondary-color);
color: var(--bg-white);
padding: 0.8rem 1.5rem;
text-align: center;
border-radius: 25px;
text-decoration: none;
font-weight: 600;
transition: all 0.3s ease;
margin-top: 1rem;
}

.sidebar-cta:hover {
background: var(--bg-white);
color: var(--primary-color);
transform: translateY(-2px);
}

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

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

.intro-content h2 {
color: var(--primary-color);
font-size: 2.2rem;
margin-bottom: 1.5rem;
font-weight: 800;
}

.intro-content p {
color: var(--text-dark);
line-height: 1.8;
margin-bottom: 1.2rem;
}

.intro-image {
width: 100%;
border-radius: 12px;
box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

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

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

.value-card {
background: var(--bg-white);
padding: 2.5rem;
border-radius: 12px;
box-shadow: 0 5px 20px rgba(0,0,0,0.08);
text-align: center;
transition: all 0.3s ease;
}

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

.value-icon {
font-size: 3rem;
margin-bottom: 1.5rem;
display: block;
}

.value-card h3 {
color: var(--primary-color);
font-size: 1.4rem;
margin-bottom: 1rem;
font-weight: 700;
}

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

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

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

.team-card {
background: var(--bg-light);
border-radius: 12px;
overflow: hidden;
box-shadow: 0 5px 20px rgba(0,0,0,0.08);
transition: all 0.3s ease;
}

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

.team-card img {
width: 100%;
display: block;
}

.team-card h3 {
color: var(--primary-color);
font-size: 1.4rem;
margin: 1.5rem 1.5rem 0.5rem;
font-weight: 700;
}

.team-role {
color: var(--secondary-color);
font-weight: 600;
margin: 0 1.5rem 1rem;
font-size: 1.05rem;
}

.team-bio {
color: var(--text-dark);
line-height: 1.7;
padding: 0 1.5rem 1.5rem;
}

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

.stats-section h2 {
color: var(--bg-white);
}

.stats-section h2::after {
background: var(--secondary-color);
}

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

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

.stat-number {
display: block;
font-size: 3.5rem;
font-weight: 800;
color: var(--secondary-color);
margin-bottom: 0.8rem;
}

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

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

.mission-content {
max-width: 950px;
margin: 2rem auto 0;
}

.mission-content p {
color: var(--text-dark);
line-height: 1.9;
font-size: 1.1rem;
margin-bottom: 1.5rem;
text-align: justify;
}

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

.contact-container {
max-width: 1300px;
margin: 0 auto;
padding: 0 2.5rem;
display: grid;
grid-template-columns: 1fr 1.5fr;
gap: 4rem;
}

.contact-info {
background: var(--bg-white);
padding: 2.5rem;
border-radius: 12px;
box-shadow: 0 5px 20px rgba(0,0,0,0.08);
height: fit-content;
}

.contact-info h2 {
color: var(--primary-color);
font-size: 2rem;
margin-bottom: 2rem;
font-weight: 700;
}

.info-block {
display: flex;
gap: 1.5rem;
margin-bottom: 2rem;
padding-bottom: 2rem;
border-bottom: 1px solid var(--border-color);
}

.info-block:last-child {
border-bottom: none;
}

.info-icon {
font-size: 2rem;
}

.info-text h3 {
color: var(--primary-color);
font-size: 1.2rem;
margin-bottom: 0.5rem;
font-weight: 700;
}

.info-text p,
.info-text a {
color: var(--text-dark);
line-height: 1.7;
text-decoration: none;
transition: color 0.3s ease;
}

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

.contact-form-wrapper {
background: var(--bg-white);
padding: 3rem;
border-radius: 12px;
box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

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

.form-description {
color: var(--text-light);
margin-bottom: 2rem;
line-height: 1.7;
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
padding: 0.9rem 1.2rem;
border: 2px solid var(--border-color);
border-radius: 8px;
font-size: 1rem;
font-family: inherit;
transition: all 0.3s ease;
}

.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,77,125,0.1);
}

.checkbox-group label {
display: flex;
align-items: center;
gap: 0.8rem;
font-weight: 400;
cursor: pointer;
}

.checkbox-group input[type="checkbox"] {
width: auto;
cursor: pointer;
}

.checkbox-group a {
color: var(--primary-color);
text-decoration: none;
}

.checkbox-group a:hover {
text-decoration: underline;
}

.submit-button {
background: linear-gradient(135deg, var(--primary-color), #2c5f8d);
color: var(--bg-white);
padding: 1.1rem 2.5rem;
border: none;
border-radius: 8px;
font-size: 1.1rem;
font-weight: 700;
cursor: pointer;
transition: all 0.3s ease;
text-transform: uppercase;
letter-spacing: 1px;
}

.submit-button:hover {
background: linear-gradient(135deg, #2c5f8d, var(--primary-color));
transform: translateY(-2px);
box-shadow: 0 8px 20px rgba(26,77,125,0.3);
}

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

.map-container {
margin-top: 2rem;
border-radius: 12px;
overflow: hidden;
box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

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

.benefits-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
gap: 2.5rem;
margin-top: 3rem;
}

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

.benefit-icon {
display: inline-block;
background: var(--success-color);
color: var(--bg-white);
width: 60px;
height: 60px;
border-radius: 50%;
font-size: 2rem;
line-height: 60px;
margin-bottom: 1.5rem;
font-weight: 700;
}

.benefit-item h3 {
color: var(--primary-color);
font-size: 1.3rem;
margin-bottom: 0.8rem;
font-weight: 700;
}

.benefit-item p {
color: var(--text-dark);
}

.modal {
display: none;
position: fixed;
z-index: 2000;
left: 0;
top: 0;
width: 100%;
height: 100%;
background-color: rgba(0,0,0,0.6);
}

.modal.show {
display: flex;
align-items: center;
justify-content: center;
}

.modal-content {
background-color: var(--bg-white);
margin: auto;
padding: 0;
border-radius: 12px;
max-width: 550px;
width: 90%;
box-shadow: 0 10px 40px rgba(0,0,0,0.3);
position: relative;
animation: modalSlideIn 0.3s ease;
}

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

.close-modal {
position: absolute;
right: 1.5rem;
top: 1.5rem;
font-size: 2rem;
font-weight: 700;
color: var(--text-light);
cursor: pointer;
transition: color 0.3s ease;
}

.close-modal:hover {
color: var(--danger-color);
}

.modal-body {
padding: 3rem;
text-align: center;
}

.success-icon {
display: inline-block;
background: var(--success-color);
color: var(--bg-white);
width: 80px;
height: 80px;
border-radius: 50%;
font-size: 3rem;
line-height: 80px;
margin-bottom: 1.5rem;
}

.modal-body h2 {
color: var(--primary-color);
font-size: 2rem;
margin-bottom: 1.5rem;
font-weight: 700;
}

.modal-body p {
color: var(--text-dark);
line-height: 1.7;
margin-bottom: 1rem;
}

.modal-close-btn {
background: var(--primary-color);
color: var(--bg-white);
padding: 0.9rem 2.5rem;
border: none;
border-radius: 25px;
font-size: 1.05rem;
font-weight: 600;
cursor: pointer;
margin-top: 1.5rem;
transition: all 0.3s ease;
}

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

.cookie-banner {
display: none;
position: fixed;
bottom: 0;
left: 0;
right: 0;
background: var(--bg-white);
box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
z-index: 1500;
padding: 2rem;
border-top: 4px solid var(--primary-color);
}

.cookie-banner.show {
display: block;
animation: slideUp 0.4s ease;
}

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

.cookie-content {
max-width: 1200px;
margin: 0 auto;
}

.cookie-content h3 {
color: var(--primary-color);
font-size: 1.5rem;
margin-bottom: 1rem;
font-weight: 700;
}

.cookie-content p {
color: var(--text-dark);
line-height: 1.7;
margin-bottom: 1.5rem;
}

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

.cookie-btn {
padding: 0.8rem 1.8rem;
border: none;
border-radius: 6px;
font-weight: 600;
cursor: pointer;
transition: all 0.3s ease;
font-size: 1rem;
}

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

.cookie-btn.accept:hover {
background: #218838;
transform: translateY(-2px);
}

.cookie-btn.reject {
background: var(--danger-color);
color: var(--bg-white);
}

.cookie-btn.reject:hover {
background: #c82333;
transform: translateY(-2px);
}

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

.cookie-btn.customize:hover {
background: #2c5f8d;
transform: translateY(-2px);
}

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

.cookie-link:hover {
text-decoration: underline;
}

.post-article {
max-width: 950px;
margin: 0 auto 5rem;
padding: 0 2.5rem;
}

.post-header {
margin-bottom: 3rem;
}

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

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

.back-link:hover {
color: var(--secondary-color);
transform: translateX(-5px);
display: inline-block;
}

.post-header h1 {
color: var(--primary-color);
font-size: 2.8rem;
line-height: 1.3;
margin-bottom: 1.5rem;
font-weight: 800;
}

.post-author {
font-weight: 600;
color: var(--primary-color);
}

.post-featured-image {
width: 100%;
border-radius: 12px;
margin-bottom: 3rem;
box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.post-content {
color: var(--text-dark);
line-height: 1.9;
font-size: 1.08rem;
}

.lead-paragraph {
font-size: 1.25rem;
font-weight: 500;
color: var(--text-dark);
margin-bottom: 2.5rem;
line-height: 1.8;
padding-left: 1.5rem;
border-left: 4px solid var(--secondary-color);
}

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

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

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

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

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

.post-content strong {
color: var(--primary-color);
font-weight: 700;
}

.post-footer {
margin-top: 4rem;
padding-top: 2rem;
border-top: 2px solid var(--border-color);
}

.post-tags {
margin-bottom: 2rem;
}

.post-tags strong {
color: var(--text-dark);
margin-right: 1rem;
}

.post-tags a {
display: inline-block;
background: var(--bg-light);
color: var(--primary-color);
padding: 0.4rem 1rem;
border-radius: 20px;
text-decoration: none;
margin: 0.3rem;
transition: all 0.3s ease;
font-size: 0.95rem;
}

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

.post-share {
margin-bottom: 2rem;
}

.post-share strong {
display: block;
margin-bottom: 1rem;
color: var(--text-dark);
}

.share-btn {
background: var(--primary-color);
color: var(--bg-white);
padding: 0.6rem 1.5rem;
border: none;
border-radius: 6px;
margin-right: 0.8rem;
cursor: pointer;
transition: all 0.3s ease;
font-size: 0.95rem;
}

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

.related-posts {
margin-top: 4rem;
background: var(--bg-light);
padding: 3rem;
border-radius: 12px;
}

.related-posts h3 {
color: var(--primary-color);
font-size: 1.8rem;
margin-bottom: 2rem;
font-weight: 700;
}

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

.related-card {
background: var(--bg-white);
border-radius: 10px;
overflow: hidden;
text-decoration: none;
box-shadow: 0 4px 15px rgba(0,0,0,0.08);
transition: all 0.3s ease;
}

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

.related-card img {
width: 100%;
display: block;
}

.related-card h4 {
color: var(--primary-color);
padding: 1.5rem;
font-size: 1.2rem;
font-weight: 700;
}

.post-cta {
background: linear-gradient(135deg, var(--primary-color), #2c5f8d);
color: var(--bg-white);
padding: 3rem;
border-radius: 12px;
text-align: center;
margin-top: 4rem;
}

.post-cta h3 {
color: var(--bg-white);
font-size: 2rem;
margin-bottom: 1rem;
font-weight: 700;
}

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

@media (max-width: 1200px) {
.intro-content {
grid-template-columns: 1fr;
}
.interview-content {
grid-template-columns: 1fr;
}
}

@media (max-width: 992px) {
.header-container {
flex-direction: column;
gap: 1.5rem;
}
.main-navigation ul {
flex-direction: column;
gap: 1rem;
text-align: center;
}
.hero-content h2 {
font-size: 2.5rem;
}
.blog-container {
grid-template-columns: 1fr;
}
.blog-post-card {
grid-template-columns: 1fr;
}
.contact-container {
grid-template-columns: 1fr;
}
}

@media (max-width: 768px) {
.hero-content h2 {
font-size: 2rem;
}
.hero-content p {
font-size: 1.1rem;
}
.services-grid,
.process-steps,
.pricing-grid,
.testimonials-grid,
.values-grid,
.team-grid,
.stats-grid,
.benefits-grid {
grid-template-columns: 1fr;
}
.footer-content {
grid-template-columns: 1fr;
text-align: center;
}
.cookie-buttons {
flex-direction: column;
}
.post-header h1 {
font-size: 2rem;
}
}