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

:root {
    --primary-color: #1a5490;
    --secondary-color: #2c7bc4;
    --accent-color: #f39c12;
    --text-color: #333;
    --light-gray: #f4f4f4;
    --border-color: #ddd;
    --white: #ffffff;
    --dark-gray: #555;
    --success-color: #27ae60;
    --shadow: 0 2px 10px rgba(0,0,0,0.1);
}

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

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

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

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

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

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

.brand-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
}

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

.nav-menu a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s;
}

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

/* Hero Section */
.hero-section {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

.hero-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 84, 144, 0.8), rgba(44, 123, 196, 0.7));
}

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

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

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

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background-color: var(--accent-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.cta-button-secondary {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.cta-button-secondary:hover {
    background-color: var(--secondary-color);
}

/* Sections */
section {
    padding: 80px 0;
}

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

.intro-section {
    background-color: var(--white);
    text-align: center;
}

.intro-section p {
    font-size: 1.1rem;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.service-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

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

.service-card p {
    margin-bottom: 20px;
    line-height: 1.8;
}

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

.read-more:hover {
    color: var(--accent-color);
}

.semi-transparent {
    background-color: rgba(244, 244, 244, 0.5);
}

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

.process-step {
    text-align: center;
    padding: 30px 20px;
}

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

.process-step h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

/* Testimonials */
.testimonials-section {
    background-color: var(--light-gray);
}

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

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

.testimonial-card p {
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.8;
}

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

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

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

/* FAQ */
.faq-list {
    max-width: 900px;
    margin: 40px auto 0;
}

.faq-item {
    background: var(--white);
    padding: 25px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.faq-item h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.faq-item p {
    line-height: 1.8;
}

/* Blog Posts */
.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.post-preview {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s;
}

.post-preview:hover {
    transform: translateY(-5px);
}

.post-preview img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.post-preview h3 {
    padding: 20px 20px 10px;
    color: var(--primary-color);
    font-size: 1.3rem;
}

.post-preview p {
    padding: 0 20px 15px;
    line-height: 1.6;
}

.read-more-link {
    display: block;
    padding: 0 20px 20px;
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.read-more-link:hover {
    color: var(--accent-color);
}

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

/* Contact Preview */
.contact-preview {
    background-color: var(--primary-color);
    color: var(--white);
    text-align: center;
}

.contact-preview h2 {
    color: var(--white);
}

.contact-options {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.contact-option {
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-icon {
    font-size: 1.5rem;
}

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

/* Footer */
.site-footer {
    background-color: #2c3e50;
    color: var(--white);
    padding: 60px 0 20px;
}

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

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

.footer-column p {
    line-height: 1.8;
    margin-bottom: 10px;
}

.footer-column a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: var(--accent-color);
}

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

.footer-links li {
    margin-bottom: 10px;
}

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

.legal-links {
    margin-bottom: 15px;
}

.legal-links a {
    color: var(--white);
    text-decoration: none;
    margin: 0 15px;
    font-size: 0.9rem;
}

.legal-links a:hover {
    color: var(--accent-color);
}

/* Cookie Banner */
.cookie-banner {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0,0,0,0.95);
    color: var(--white);
    padding: 30px;
    z-index: 10000;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.3);
}

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

.cookie-content h3 {
    color: var(--accent-color);
    margin-bottom: 15px;
}

.cookie-content p {
    margin-bottom: 15px;
    line-height: 1.6;
}

.cookie-content ul {
    margin: 15px 0 20px 20px;
}

.cookie-content a {
    color: var(--accent-color);
}

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

.cookie-btn {
    padding: 12px 25px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: transform 0.3s;
}

.cookie-btn:hover {
    transform: translateY(-2px);
}

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

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

.cookie-btn.reject {
    background-color: #666;
    color: var(--white);
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

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

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

/* Blog Page */
.blog-posts-list {
    max-width: 1000px;
    margin: 0 auto;
}

.blog-post-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 40px;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
}

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

.post-content {
    padding: 30px;
}

.post-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    font-size: 0.9rem;
    color: var(--dark-gray);
}

.post-date,
.post-category {
    background-color: var(--light-gray);
    padding: 5px 12px;
    border-radius: 15px;
}

.blog-post-card h2 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.8rem;
    text-align: left;
}

.blog-post-card p {
    line-height: 1.8;
    margin-bottom: 20px;
}

.read-full-post {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.read-full-post:hover {
    color: var(--accent-color);
}

.blog-cta-section {
    background-color: var(--light-gray);
    text-align: center;
}

/* About Page */
.about-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-top: 40px;
}

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

.about-text h2 {
    text-align: left;
    margin-bottom: 20px;
}

.about-text p {
    line-height: 1.8;
    margin-bottom: 15px;
}

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

.value-card {
    text-align: center;
    padding: 30px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

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

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

.team-member {
    text-align: center;
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.team-member img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 20px;
}

.team-member h3 {
    color: var(--primary-color);
    margin-bottom: 8px;
}

.member-position {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 15px;
}

.member-bio {
    line-height: 1.7;
    font-size: 0.95rem;
}

.team-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    font-size: 1.1rem;
}

.timeline {
    max-width: 900px;
    margin: 40px auto 0;
    position: relative;
}

.timeline-item {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    padding: 20px;
    background: var(--white);
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.timeline-year {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    min-width: 80px;
}

.timeline-content h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

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

.cert-item {
    background: var(--white);
    padding: 20px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    text-align: center;
}

.cta-about {
    background-color: var(--primary-color);
    color: var(--white);
    text-align: center;
}

.cta-about h2 {
    color: var(--white);
}

/* Services Page */
.service-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 80px;
    align-items: center;
}

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

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

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

.service-detail-content p {
    line-height: 1.8;
    margin-bottom: 15px;
}

.service-detail-content h3 {
    color: var(--primary-color);
    margin: 25px 0 15px;
}

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

.service-list li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
}

.service-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.2rem;
}

.price-info {
    background-color: var(--light-gray);
    padding: 15px;
    border-radius: 5px;
    margin-top: 20px;
}

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

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

.process-step-detail {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
}

.step-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.process-step-detail h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

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

.pricing-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
    position: relative;
}

.pricing-card.featured {
    border: 3px solid var(--accent-color);
    transform: scale(1.05);
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: var(--accent-color);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.pricing-card h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 25px;
}

.pricing-features {
    list-style: none;
    margin-bottom: 30px;
    text-align: left;
}

.pricing-features li {
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
}

.pricing-cta {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.pricing-cta:hover {
    background-color: var(--secondary-color);
}

.pricing-note {
    text-align: center;
    margin-top: 30px;
    font-style: italic;
    color: var(--dark-gray);
}

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

.case-card {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.case-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.case-card p {
    margin-bottom: 12px;
    line-height: 1.7;
}

.services-cta {
    background-color: var(--primary-color);
    color: var(--white);
    text-align: center;
}

.services-cta h2 {
    color: var(--white);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

/* Contact Page */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    margin-top: 40px;
}

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

.contact-detail-block {
    margin-bottom: 30px;
}

.contact-detail-block h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.contact-detail-block p {
    line-height: 1.8;
}

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

.small-text {
    font-size: 0.9rem;
    color: var(--dark-gray);
}

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

.contact-form-container h2 {
    text-align: left;
    margin-bottom: 15px;
}

.contact-form-container > p {
    margin-bottom: 30px;
    line-height: 1.7;
}

.contact-form {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
}

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

.checkbox-group label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-weight: 400;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 4px;
}

.checkbox-group a {
    color: var(--secondary-color);
}

.submit-button {
    width: 100%;
    padding: 15px;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.submit-button:hover {
    background-color: var(--secondary-color);
}

.form-note {
    text-align: center;
    margin-top: 15px;
    font-size: 0.9rem;
    color: var(--dark-gray);
}

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

.alt-contact-card {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
}

.alt-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.alt-contact-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

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

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

.modal-content {
    background-color: var(--white);
    padding: 50px;
    border-radius: 10px;
    max-width: 500px;
    text-align: center;
    position: relative;
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 2rem;
    cursor: pointer;
    color: var(--dark-gray);
}

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

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

.modal-content p {
    margin-bottom: 15px;
    line-height: 1.7;
}

.modal-button {
    padding: 12px 30px;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
}

/* Blog Post Detail */
.blog-post {
    background-color: var(--white);
}

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

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

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

.post-excerpt {
    font-size: 1.2rem;
    line-height: 1.8;
    max-width: 900px;
}

.post-featured-image {
    max-width: 1200px;
    margin: -50px auto 0;
    padding: 0 20px;
}

.post-featured-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

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

.post-content .container {
    display: grid;
    grid-template-columns: 3fr 1fr;
    gap: 50px;
    max-width: 1200px;
}

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

.content-wrapper p {
    line-height: 1.9;
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.post-cta {
    background-color: var(--light-gray);
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    margin: 50px 0;
}

.post-cta h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.post-cta p {
    margin-bottom: 25px;
}

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

.sidebar-widget {
    background: var(--white);
    padding: 25px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    margin-bottom: 30px;
}

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

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

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

.related-posts a,
.categories-list a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s;
}

.related-posts a:hover,
.categories-list a:hover {
    color: var(--primary-color);
}

/* Responsive Design */
@media (max-width: 968px) {
    .nav-menu {
        flex-direction: column;
        gap: 15px;
        position: absolute;
        top: 70px;
        right: 20px;
        background: var(--white);
        padding: 20px;
        box-shadow: var(--shadow);
        display: none;
    }

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

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

    .about-content-grid,
    .service-detail,
    .contact-grid {
        grid-template-columns: 1fr;
    }

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

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

    .post-sidebar {
        position: static;
    }
}

@media (max-width: 768px) {
    section h2 {
        font-size: 2rem;
    }

    .hero-section {
        height: 400px;
    }

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

    .blog-post-card {
        flex-direction: column;
    }

    .pricing-card.featured {
        transform: scale(1);
    }
}