/* General Styles */
:root {
    --primary-color: #0056b3;
    --secondary-color: #004a9f;
    --accent-color: #ff9800;
    --light-color: #f8f9fa;
    --dark-color: #343a40;
    --gray-color: #6c757d;
    --light-gray-color: #e9ecef;
    --success-color: #28a745;
    --warning-color: #ffc107;
    --danger-color: #dc3545;
    --body-font: 'Roboto', 'Arial', sans-serif;
    --heading-font: 'Montserrat', 'Arial', sans-serif;
    --border-radius: 4px;
    --box-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: var(--body-font);
    font-size: 16px;
    line-height: 1.6;
    color: var(--dark-color);
    background-color: #fff;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1.5rem;
}

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

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

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

ul, ol {
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}

button, .btn {
    cursor: pointer;
    display: inline-block;
    font-weight: 500;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    user-select: none;
    border: 1px solid transparent;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.btn-secondary {
    background-color: var(--gray-color);
    border-color: var(--gray-color);
    color: white;
}

.btn-secondary:hover {
    background-color: #5a6268;
    border-color: #5a6268;
}

.btn-light {
    background-color: white;
    border-color: white;
    color: var(--primary-color);
}

.btn-light:hover {
    background-color: var(--light-color);
    border-color: var(--light-color);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.section-title {
    text-align: center;
    margin-bottom: 2.5rem;
    position: relative;
    padding-bottom: 1rem;
}

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

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: white;
    z-index: 1000;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

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

.logo img {
    height: auto;
    max-height: 60px;
}

.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-item {
    margin-left: 2rem;
}

.nav-item a {
    font-weight: 500;
    color: var(--dark-color);
    padding: 0.5rem 0;
    position: relative;
}

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

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

.nav-item.active a {
    color: var(--primary-color);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--dark-color);
    margin: 2px 0;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    padding: 10rem 0 6rem;
    background-color: var(--light-color);
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    text-align: center;
    margin: 0 auto;
    color: white;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: white;
}

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

/* Parallax Effect */
.parallax-section {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

/* Features Section */
.features {
    padding: 5rem 0;
    background-color: white;
}

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

.feature-item {
    text-align: center;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-icon {
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.feature-icon svg {
    width: 50px;
    height: 50px;
}

.feature-item h3 {
    margin-bottom: 1rem;
}

/* Recent Posts Section */
.recent-posts {
    padding: 5rem 0;
    background-color: var(--light-color);
}

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

.post-card {
    background-color: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

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

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

.post-content {
    padding: 1.5rem;
}

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

.post-excerpt {
    margin-bottom: 1rem;
    color: var(--gray-color);
}

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

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

.posts-more {
    text-align: center;
    margin-top: 3rem;
}

/* Checklist Section */
.checklist {
    padding: 5rem 0;
    background-color: white;
}

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

.checklist-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    padding: 1rem;
    background-color: var(--light-color);
    border-radius: var(--border-radius);
}

.checklist-item input[type="checkbox"] {
    margin-right: 1rem;
    width: 20px;
    height: 20px;
}

.checklist-item label {
    cursor: pointer;
    flex: 1;
}

/* CTA Section */
.cta {
    padding: 5rem 0;
    background-color: var(--primary-color);
    background-size: cover;
    background-position: center;
    position: relative;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    text-align: center;
    margin: 0 auto;
    color: white;
}

.cta-content h2 {
    color: white;
    margin-bottom: 1.5rem;
}

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

/* Footer Styles */
.footer {
    background-color: var(--dark-color);
    padding: 5rem 0 2rem;
    color: white;
}

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

.footer-logo img {
    margin-bottom: 1rem;
    max-height: 60px;
}

.footer-logo p {
    opacity: 0.8;
}

.footer-links h3 {
    color: white;
    margin-bottom: 1.5rem;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

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

.footer-links a:hover {
    color: white;
}

.footer-contact h3 {
    color: white;
    margin-bottom: 1.5rem;
}

.footer-contact p {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.footer-contact i {
    margin-right: 0.75rem;
}

.social-icons {
    display: flex;
    margin-top: 1.5rem;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    margin-right: 0.75rem;
    transition: var(--transition);
    color: white;
}

.social-icons a:hover {
    background-color: var(--primary-color);
}

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

.footer-bottom p {
    opacity: 0.7;
    margin: 0;
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    color: white;
    z-index: 9999;
    padding: 1rem 0;
    display: none;
}

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

.cookie-content p {
    margin: 0 1rem 1rem 0;
    flex: 1;
    min-width: 300px;
}

.cookie-buttons {
    display: flex;
    flex-wrap: wrap;
}

.cookie-buttons button {
    margin: 0.5rem;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

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

.btn-settings {
    background-color: var(--light-color);
    border-color: var(--light-color);
    color: var(--dark-color);
}

.btn-reject {
    background-color: transparent;
    border-color: white;
    color: white;
}

/* Page Header */
.page-header {
    padding: 10rem 0 4rem;
    background-color: var(--primary-color);
    background-size: cover;
    background-position: center;
    position: relative;
    text-align: center;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.page-header h1 {
    color: white;
    position: relative;
    z-index: 2;
    margin-bottom: 1rem;
}

.page-header p {
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    z-index: 2;
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
}

/* Blog Page Styles */
.blog-section {
    padding: 5rem 0;
}

.blog-posts {
    max-width: 900px;
    margin: 0 auto;
}

.blog-post {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 3rem;
    background-color: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.blog-image {
    flex: 0 0 300px;
}

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

.blog-content {
    flex: 1;
    padding: 2rem;
}

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

.blog-date, .blog-category {
    margin-right: 1.5rem;
}

.blog-title {
    margin-bottom: 1rem;
}

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

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

.blog-excerpt {
    margin-bottom: 1.5rem;
}

/* Subscribe Form */
.subscribe-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
}

.subscribe-form input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: none;
    border-radius: var(--border-radius) 0 0 var(--border-radius);
    font-size: 1rem;
}

.subscribe-form button {
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

/* About Page Styles */
.about-section {
    padding: 5rem 0;
    background-color: white;
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 3rem;
}

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

.about-image {
    flex: 0 0 400px;
}

.values-list {
    list-style: none;
    padding: 0;
}

.values-list li {
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
}

.values-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

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

.section-description {
    text-align: center;
    max-width: 700px;
    margin: -1rem auto 3rem;
}

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

.team-member {
    background-color: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: var(--transition);
}

.team-member:hover {
    transform: translateY(-5px);
}

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

.team-member h3 {
    margin: 1.5rem 0 0.5rem;
}

.team-member p {
    margin: 0 1.5rem 1.5rem;
    color: var(--gray-color);
}

.social-links {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--light-color);
    margin: 0 0.5rem;
    transition: var(--transition);
    color: var(--dark-color);
}

.social-links a:hover {
    background-color: var(--primary-color);
    color: white;
}

.stats-section {
    padding: 5rem 0;
    background-color: var(--primary-color);
    background-size: cover;
    background-position: center;
    position: relative;
    color: white;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
}

.stats-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

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

.stat-title {
    font-size: 1.2rem;
    opacity: 0.9;
}

.testimonials-section {
    padding: 5rem 0;
    background-color: white;
}

.testimonials-slider {
    max-width: 800px;
    margin: 0 auto;
}

.testimonial {
    background-color: var(--light-color);
    padding: 2rem;
    border-radius: var(--border-radius);
    margin-bottom: 2rem;
}

.testimonial-content {
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 1rem;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-info h4 {
    margin: 0 0 0.25rem;
}

.testimonial-info p {
    margin: 0;
    color: var(--gray-color);
}

/* Contact Page Styles */
.contact-section {
    padding: 5rem 0;
    background-color: white;
}

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

.info-item {
    display: flex;
    margin-bottom: 2rem;
}

.info-icon {
    margin-right: 1.5rem;
    color: var(--primary-color);
}

.info-text h3 {
    margin-bottom: 0.5rem;
}

.info-text p, .info-text a {
    color: var(--gray-color);
}

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

.social-block {
    margin-top: 2rem;
}

.social-block h3 {
    margin-bottom: 1rem;
}

.contact-form-wrapper {
    background-color: var(--light-color);
    padding: 2rem;
    border-radius: var(--border-radius);
}

.contact-form {
    display: grid;
    grid-gap: 1.5rem;
}

.form-group {
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

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

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

.form-checkbox {
    display: flex;
    align-items: center;
}

.form-checkbox input {
    width: auto;
    margin-right: 0.75rem;
}

.form-checkbox label {
    margin: 0;
}

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

.map-container {
    height: 450px;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.faq-section {
    padding: 5rem 0;
    background-color: white;
}

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

.faq-item {
    background-color: var(--light-color);
    padding: 2rem;
    border-radius: var(--border-radius);
}

.faq-question {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.faq-answer {
    margin: 0;
    color: var(--gray-color);
}

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

.modal-content {
    background-color: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    max-width: 500px;
    width: 90%;
    position: relative;
}

.close-modal {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 1.5rem;
    cursor: pointer;
}

.thank-you-content {
    text-align: center;
}

.check-icon {
    color: var(--success-color);
    margin: 0 auto 1.5rem;
}

/* Blog Post Page Styles */
.blog-post-page {
    padding-top: 80px;
}

.post-header {
    padding: 8rem 0 4rem;
    background-color: var(--primary-color);
    background-size: cover;
    background-position: center;
    position: relative;
}

.post-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.post-header-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    color: white;
    text-align: center;
}

.post-header .post-meta {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.post-header .post-date,
.post-header .post-category,
.post-header .post-author {
    margin: 0 1rem;
}

.post-title {
    color: white;
    font-size: 2.5rem;
}

.post-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 3rem;
    padding: 5rem 0;
}

.post-content {
    font-size: 1.1rem;
    line-height: 1.8;
}

.post-intro {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--gray-color);
    margin-bottom: 2rem;
    border-left: 4px solid var(--primary-color);
    padding-left: 1.5rem;
}

.post-content h2 {
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.post-content h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.image-block {
    margin: 2.5rem 0;
}

.image-caption {
    text-align: center;
    margin-top: 0.75rem;
    color: var(--gray-color);
    font-style: italic;
}

.info-box,
.warning-box,
.error-box,
.resources-box,
.definition-box,
.tip-box,
.info-note {
    padding: 2rem;
    border-radius: var(--border-radius);
    margin: 2rem 0;
}

.info-box {
    background-color: #e3f2fd;
    border-left: 4px solid #2196f3;
}

.warning-box {
    background-color: #fff8e1;
    border-left: 4px solid #ffc107;
}

.error-box {
    background-color: #ffebee;
    border-left: 4px solid #f44336;
}

.resources-box {
    background-color: #e8f5e9;
    border-left: 4px solid #4caf50;
}

.definition-box {
    background-color: #f3e5f5;
    border-left: 4px solid #9c27b0;
}

.info-note {
    background-color: #e8eaf6;
    border-left: 4px solid #3f51b5;
}

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

.sidebar-widget {
    background-color: var(--light-color);
    padding: 2rem;
    border-radius: var(--border-radius);
    margin-bottom: 2rem;
}

.sidebar-widget h3 {
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--primary-color);
}

.author-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.author-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-bottom: 1rem;
    object-fit: cover;
}

.author-info h4 {
    margin-bottom: 0.5rem;
}

.author-info p {
    color: var(--gray-color);
    margin-bottom: 0;
}

.related-posts ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.related-posts li {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--light-gray-color);
}

.related-posts li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

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

.sidebar-form input {
    padding: 0.75rem 1rem;
    border: 1px solid var(--light-gray-color);
    border-radius: var(--border-radius);
    font-size: 1rem;
    margin-bottom: 1rem;
}

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

.tags-list {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
}

.tags-list li {
    margin-right: 0.75rem;
    margin-bottom: 0.75rem;
}

.tags-list a {
    display: block;
    padding: 0.5rem 1rem;
    background-color: var(--light-color);
    border-radius: var(--border-radius);
    color: var(--gray-color);
    font-size: 0.9rem;
    transition: var(--transition);
}

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

.post-share {
    display: flex;
    align-items: center;
    margin-bottom: 3rem;
}

.post-share h3 {
    margin: 0 1.5rem 0 0;
}

.share-buttons {
    display: flex;
}

.share-button {
    display: flex;
    align-items: center;
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
    margin-right: 0.75rem;
    color: white;
}

.share-button svg {
    margin-right: 0.5rem;
}

.facebook {
    background-color: #3b5998;
}

.twitter {
    background-color: #1da1f2;
}

.linkedin {
    background-color: #0077b5;
}

.post-navigation {
    border-top: 1px solid var(--light-gray-color);
    padding-top: 2rem;
}

.post-nav-links {
    display: flex;
    justify-content: space-between;
}

.post-nav-prev,
.post-nav-next,
.post-nav-back {
    display: flex;
    align-items: center;
    color: var(--gray-color);
}

.post-nav-prev svg,
.post-nav-back svg {
    margin-right: 0.5rem;
}

.post-nav-next svg {
    margin-left: 0.5rem;
}

.post-nav-prev:hover,
.post-nav-next:hover,
.post-nav-back:hover {
    color: var(--primary-color);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .post-content-wrapper {
        grid-template-columns: 1fr;
    }
    
    .post-sidebar {
        position: static;
        margin-top: 3rem;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .blog-post {
        flex-direction: column;
    }
    
    .blog-image {
        flex: auto;
        height: 200px;
    }
}

@media (max-width: 768px) {
    .header-inner {
        padding: 0.75rem 0;
    }
    
    .nav {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: white;
        transition: var(--transition);
        z-index: 999;
    }
    
    .nav.active {
        left: 0;
    }
    
    .nav-list {
        flex-direction: column;
        align-items: center;
        padding: 2rem 0;
    }
    
    .nav-item {
        margin: 0 0 1.5rem;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .features-grid,
    .posts-grid,
    .team-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .about-content {
        flex-direction: column;
    }
    
    .about-image {
        order: -1;
        margin-bottom: 2rem;
    }
    
    .post-header .post-title {
        font-size: 2rem;
    }
    
    .post-header .post-meta {
        flex-direction: column;
    }
    
    .post-header .post-date,
    .post-header .post-category,
    .post-header .post-author {
        margin: 0.25rem 0;
    }
    
    .post-nav-links {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 1.5rem;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form-wrapper {
        order: -1;
        margin-bottom: 3rem;
    }
    
    .post-header .post-title {
        font-size: 1.8rem;
    }
    
    .post-content {
        font-size: 1rem;
    }
    
    .post-intro {
        font-size: 1.1rem;
    }
    
    .post-share {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .post-share h3 {
        margin: 0 0 1rem;
    }
    
    .share-buttons {
        flex-wrap: wrap;
    }
    
    .share-button {
        margin-bottom: 0.75rem;
    }
}

/* Additional styles for specific components */
.timeline {
    position: relative;
    padding-left: 2rem;
    margin: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 2px;
    height: 100%;
    background-color: var(--primary-color);
}

.timeline-item {
    position: relative;
    margin-bottom: 2rem;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-date {
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.timeline-content {
    padding-left: 1rem;
}

.timeline-content h4 {
    margin-bottom: 0.5rem;
}

.two-column {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 2rem 0;
}

.check-list {
    list-style: none;
    padding: 0;
}

.check-list li {
    padding-left: 2rem;
    position: relative;
    margin-bottom: 1rem;
}

.check-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.formula-box {
    background-color: #f5f5f5;
    padding: 1rem;
    border-radius: var(--border-radius);
    text-align: center;
    margin: 1.5rem 0;
}

.formula-box p {
    font-family: monospace;
    font-size: 1.1rem;
    margin: 0;
}

.accordion {
    margin: 2rem 0;
}

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

.accordion-header {
    background-color: var(--light-color);
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.accordion-header h3 {
    margin: 0;
    font-size: 1.2rem;
}

.accordion-icon {
    font-size: 1.5rem;
    transition: var(--transition);
}

.accordion-content {
    display: none;
    padding: 1.5rem;
    border-top: 1px solid var(--light-gray-color);
}

.accordion-item.active .accordion-icon {
    transform: rotate(45deg);
}

.accordion-item.active .accordion-content {
    display: block;
}

.metrics-grid,
.examples-grid,
.tips-grid,
.benefits-grid,
.reasons-grid,
.recommendations-list,
.strategies-list,
.response-steps,
.steps-timeline,
.documents-grid,
.problems-solutions {
    display: grid;
    gap: 2rem;
    margin: 2rem 0;
}

.metrics-grid,
.documents-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.examples-grid,
.tips-grid,
.benefits-grid,
.reasons-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.metric-item,
.example-item,
.tip-item,
.benefit-item,
.reason-item,
.recommendation-item,
.strategy-item,
.response-step,
.step-item,
.document-category,
.problem-item {
    background-color: var(--light-color);
    padding: 2rem;
    border-radius: var(--border-radius);
    position: relative;
}

.tip-number,
.recommendation-number,
.step-number {
    position: absolute;
    top: -15px;
    left: 20px;
    width: 36px;
    height: 36px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.benefit-icon,
.reason-icon,
.strategy-icon,
.step-icon {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.metric-target {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.strategy-content,
.step-content {
    padding-left: 1rem;
}

.step-tip {
    margin-top: 1rem;
    padding: 1rem;
    background-color: rgba(0, 0, 0, 0.05);
    border-radius: var(--border-radius);
    font-style: italic;
}

.problem-item {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.solution {
    background-color: #e8f5e9;
    padding: 1.5rem;
    border-radius: var(--border-radius);
}

.solution h4 {
    color: var(--success-color);
    margin-bottom: 0.75rem;
}

.comparison-table {
    overflow-x: auto;
    margin: 2rem 0;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--light-gray-color);
}

.comparison-table th {
    background-color: var(--light-color);
    font-weight: 700;
}

.comparison-table tr:nth-child(even) {
    background-color: #f9f9f9;
}

.table-note {
    margin-top: 1rem;
    color: var(--gray-color);
    font-style: italic;
    text-align: right;
}

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

.standard-item {
    border: 1px solid var(--light-gray-color);
    border-radius: var(--border-radius);
    overflow: hidden;
}

.standard-header {
    background-color: var(--primary-color);
    padding: 1.5rem;
}

.standard-header h3 {
    color: white;
    margin: 0;
}

.standard-body {
    padding: 1.5rem;
}

.tool-review {
    margin-bottom: 3rem;
}

.tool-details {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 1.5rem;
    margin-top: 1rem;
}

.tool-logo img {
    width: 100%;
    border-radius: var(--border-radius);
}

.tool-description h4 {
    margin: 1.5rem 0 0.75rem;
}

.benefit-list {
    padding-left: 2rem;
}

.benefit-list li {
    margin-bottom: 0.75rem;
}

.differences-table {
    overflow-x: auto;
    margin: 2rem 0;
}

.differences-table table {
    width: 100%;
    border-collapse: collapse;
}

.differences-table th,
.differences-table td {
    padding: 1rem;
    text-align: left;
    border: 1px solid var(--light-gray-color);
}

.differences-table th {
    background-color: var(--primary-color);
    color: white;
}

.differences-table tr:nth-child(even) {
    background-color: #f9f9f9;
}

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

.checklist-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.checklist-item input[type="checkbox"] {
    margin-right: 0.75rem;
}

.resource-box {
    background-color: #f5f5f5;
    padding: 2rem;
    border-radius: var(--border-radius);
    margin: 2rem 0;
}

.error-list li {
    margin-bottom: 0.75rem;
}

@media (max-width: 768px) {
    .two-column,
    .tool-details {
        grid-template-columns: 1fr;
    }
    
    .problem-item {
        grid-template-columns: 1fr;
    }
}
