/* General Styles */
:root {
    --primary-color: #00205b;
    --secondary-color: #354e6b;
    --accent-color: #4a6fa5;
    --light-color: #f8f9fa;
    --dark-color: #2c3e50;
    --gray-color: #6c757d;
    --light-gray-color: #e9ecef;
    --border-color: #dee2e6;
    --success-color: #28a745;
    --error-color: #dc3545;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

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

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

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

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 15px;
    color: var(--primary-color);
}

p {
    margin-bottom: 15px;
}

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

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

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

ul, ol {
    margin-bottom: 15px;
    padding-left: 20px;
}

.btn {
    display: inline-block;
    padding: 12px 25px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.btn.primary {
    background-color: var(--primary-color);
    color: #fff;
}

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

.btn.secondary {
    background-color: #fff;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

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

.btn.tertiary {
    background-color: var(--light-gray-color);
    color: var(--dark-color);
}

.btn.tertiary:hover {
    background-color: var(--gray-color);
    color: #fff;
}

.center-btn {
    text-align: center;
    margin-top: 30px;
}

/* Header Styles */
header {
    background-color: #fff;
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
}

.logo img {
    height: 60px;
}

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

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    color: var(--dark-color);
    font-weight: 500;
    padding: 10px 0;
    position: relative;
}

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

nav ul li a.active::after,
nav ul li a:hover::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
}

.mobile-menu-btn {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

/* Hero Section */
.hero {
    background-color: var(--light-color);
    padding: 80px 0;
    text-align: center;
}

.hero-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.hero-content p {
    font-size: 20px;
    max-width: 800px;
    margin: 0 auto 30px;
    color: var(--secondary-color);
}

.welcome-multilingual {
    margin-bottom: 20px;
    font-style: italic;
    color: var(--gray-color);
}

.fun-fact {
    background-color: #e6f2ff;
    border-left: 4px solid var(--primary-color);
    padding: 15px;
    margin-bottom: 30px;
    border-radius: 4px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
}

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

/* Services Overview Section */
.services-overview {
    padding: 80px 0;
    background-color: #fff;
}

.services-overview h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 36px;
}

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

.service-card {
    background-color: #fff;
    border-radius: 8px;
    padding: 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
}

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

.service-card .icon {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.service-card p {
    color: var(--gray-color);
}

/* About Preview Section */
.about-preview {
    padding: 80px 0;
    background-color: var(--light-color);
}

.about-preview .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.about-content p {
    margin-bottom: 30px;
}

.about-image {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.about-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 32, 91, 0.1);
}

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

/* Blog Preview Section */
.blog-preview {
    padding: 80px 0;
}

.blog-preview h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 36px;
}

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

.blog-card {
    background-color: #fff;
    border-radius: 8px;
    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.1);
}

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

.blog-content {
    padding: 20px;
}

.blog-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.blog-content .date {
    color: var(--gray-color);
    font-size: 14px;
    margin-bottom: 10px;
    display: block;
}

.blog-content p {
    margin-bottom: 15px;
}

.read-more {
    font-weight: 600;
    color: var(--primary-color);
}

.read-more:hover {
    text-decoration: underline;
}

/* Contact Preview Section */
.contact-preview {
    padding: 80px 0;
    background-color: var(--light-color);
}

.contact-preview h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 36px;
}

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

.contact-info {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.contact-item {
    display: flex;
    margin-bottom: 20px;
}

.contact-item i {
    font-size: 24px;
    color: var(--primary-color);
    margin-right: 15px;
    margin-top: 5px;
}

.contact-item h3 {
    font-size: 18px;
    margin-bottom: 5px;
}

.registration-info {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--light-gray-color);
}

.contact-form-preview {
    padding: 30px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.contact-form-preview p {
    margin-bottom: 30px;
    text-align: center;
}

/* Footer Styles */
footer {
    background-color: var(--primary-color);
    color: #fff;
    padding: 80px 0 0;
}

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

.footer-about img {
    height: 60px;
    margin-bottom: 20px;
    background-color: #fff;
    padding: 5px;
    border-radius: 4px;
}

.footer-about p {
    color: rgba(255, 255, 255, 0.8);
}

.footer-links h3,
.footer-services h3,
.footer-contact h3 {
    color: #fff;
    font-size: 20px;
    margin-bottom: 20px;
}

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

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

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

.footer-links ul li a:hover,
.footer-services ul li a:hover {
    color: #fff;
    padding-left: 5px;
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 10px;
}

.footer-contact p i {
    margin-right: 10px;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-radius: 50%;
    font-size: 18px;
    transition: var(--transition);
}

.social-icons a:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0;
}

.legal-links a {
    color: rgba(255, 255, 255, 0.8);
    margin-left: 20px;
    transition: var(--transition);
}

.legal-links a:hover {
    color: #fff;
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #fff;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    z-index: 1000;
    display: none;
}

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

.cookie-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 20px 0;
}

.cookie-more-info {
    font-size: 14px;
    color: var(--gray-color);
}

/* Page Header */
.page-header {
    background-color: var(--light-color);
    padding: 50px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 40px;
    margin-bottom: 10px;
}

.breadcrumb {
    color: var(--gray-color);
}

.breadcrumb a {
    color: var(--primary-color);
}

.breadcrumb span {
    color: var(--gray-color);
}

/* About Page Styles */
.about-section {
    padding: 80px 0;
}

.about-section .about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.mission-vision {
    padding: 80px 0;
    background-color: var(--light-color);
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.mission-box, .vision-box {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.mission-box h3, .vision-box h3 {
    font-size: 24px;
    margin-bottom: 20px;
}

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

.values-section h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 36px;
}

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

.value-card {
    text-align: center;
    padding: 30px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.value-card .icon {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.value-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

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

.team-section h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 36px;
}

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

.team-card {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    text-align: center;
}

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

.team-card h3 {
    font-size: 22px;
    margin: 20px 0 5px;
}

.team-card p {
    color: var(--gray-color);
    margin-bottom: 10px;
}

.team-card p:nth-of-type(1) {
    font-weight: 600;
    color: var(--primary-color);
}

.team-card .social-icons {
    justify-content: center;
    margin: 15px 0 20px;
}

.team-card .social-icons a {
    background-color: var(--light-gray-color);
    color: var(--primary-color);
}

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

/* Services Page Styles */
.services-intro {
    padding: 80px 0;
}

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

.intro-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

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

.service-card {
    margin-bottom: 30px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: var(--shadow);
    padding: 30px;
}

.service-icon {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

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

.service-features li {
    padding-left: 25px;
    position: relative;
    margin-bottom: 10px;
}

.service-features li::before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: var(--primary-color);
    position: absolute;
    left: 0;
}

.service-process {
    padding: 80px 0;
}

.service-process h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 36px;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.step {
    display: flex;
    gap: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: var(--shadow);
    padding: 30px;
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    color: #fff;
    font-size: 24px;
    font-weight: 600;
    border-radius: 50%;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

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

.faq-section h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 36px;
}

.faq-item {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: var(--shadow);
    margin-bottom: 15px;
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question h3 {
    font-size: 18px;
    margin-bottom: 0;
}

.faq-question i {
    font-size: 18px;
    color: var(--primary-color);
    transition: var(--transition);
}

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

.faq-answer {
    padding: 0 20px 20px;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background-color: var(--primary-color);
    color: #fff;
    text-align: center;
}

.cta-section h2 {
    color: #fff;
    font-size: 36px;
    margin-bottom: 15px;
}

.cta-section p {
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-section .btn.primary {
    background-color: #fff;
    color: var(--primary-color);
}

.cta-section .btn.primary:hover {
    background-color: var(--light-gray-color);
}

/* Contact Page Styles */
.contact-section {
    padding: 80px 0;
}

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

.info-item {
    display: flex;
    margin-bottom: 30px;
}

.info-item .icon {
    font-size: 24px;
    color: var(--primary-color);
    margin-right: 15px;
    width: 50px;
    height: 50px;
    background-color: rgba(0, 32, 91, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-content h3 {
    font-size: 20px;
    margin-bottom: 5px;
}

.social-media h3 {
    margin-top: 30px;
}

.contact-form-container {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.contact-form-container h2 {
    margin-bottom: 30px;
}

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

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
}

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

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

.checkbox-group {
    display: flex;
    align-items: flex-start;
}

.checkbox-group input {
    width: auto;
    margin-right: 10px;
    margin-top: 5px;
}

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

.map-section h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 36px;
}

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

.transportation-info h3 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 24px;
}

.transport-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.transport-item {
    display: flex;
    align-items: center;
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.transport-item i {
    font-size: 24px;
    color: var(--primary-color);
    margin-right: 15px;
}

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

.popup-content {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    max-width: 400px;
    width: 90%;
}

.popup-content i {
    font-size: 60px;
    color: var(--success-color);
    margin-bottom: 20px;
}

.popup-content h2 {
    font-size: 24px;
    margin-bottom: 15px;
}

.popup-content p {
    margin-bottom: 20px;
}

/* Blog Page Styles */
.blog-section {
    padding: 80px 0;
}

.blog-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
}

.blog-post-card {
    display: flex;
    flex-direction: column;
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    margin-bottom: 30px;
}

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

.post-content {
    padding: 30px;
}

.post-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 10px;
    color: var(--gray-color);
    font-size: 14px;
}

.post-meta span i {
    margin-right: 5px;
}

.post-content h2 {
    font-size: 24px;
    margin-bottom: 15px;
}

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

.post-content h2 a:hover {
    color: var(--accent-color);
}

.post-content p {
    margin-bottom: 20px;
}

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

.read-more i {
    margin-left: 5px;
    transition: var(--transition);
}

.read-more:hover i {
    transform: translateX(5px);
}

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

.sidebar-widget {
    background-color: #fff;
    border-radius: 8px;
    padding: 30px;
    box-shadow: var(--shadow);
    margin-bottom: 30px;
}

.sidebar-widget h3 {
    font-size: 20px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--light-gray-color);
}

.search-form {
    display: flex;
}

.search-form input {
    flex: 1;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 4px 0 0 4px;
    font-family: inherit;
    font-size: 16px;
}

.search-form button {
    background-color: var(--primary-color);
    color: #fff;
    border: none;
    padding: 0 15px;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
}

.categories-widget ul {
    list-style: none;
    padding: 0;
}

.categories-widget ul li {
    margin-bottom: 10px;
}

.categories-widget ul li a {
    display: flex;
    justify-content: space-between;
    color: var(--dark-color);
}

.categories-widget ul li a:hover {
    color: var(--primary-color);
}

.recent-posts {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.recent-post {
    display: flex;
    gap: 15px;
}

.post-thumb {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    border-radius: 4px;
    overflow: hidden;
}

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

.post-info h4 {
    font-size: 16px;
    margin-bottom: 5px;
}

.post-info .date {
    font-size: 14px;
    color: var(--gray-color);
}

.tags-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tags-cloud a {
    display: inline-block;
    padding: 8px 15px;
    background-color: var(--light-gray-color);
    color: var(--dark-color);
    border-radius: 4px;
    font-size: 14px;
    transition: var(--transition);
}

.tags-cloud a:hover {
    background-color: var(--primary-color);
    color: #fff;
}

.contact-widget {
    text-align: center;
}

.contact-widget p {
    margin-bottom: 20px;
}

/* Blog Post Styles */
.blog-post-section {
    padding: 80px 0;
}

.blog-post-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
}

.blog-post-content {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

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

.post-header h1 {
    font-size: 32px;
    margin-bottom: 15px;
}

.post-featured-image {
    margin-top: 30px;
}

.post-featured-image img {
    width: 100%;
    height: auto;
}

.post-body {
    padding: 30px;
}

.post-body h2 {
    font-size: 24px;
    margin: 30px 0 15px;
}

.post-body h3 {
    font-size: 20px;
    margin: 25px 0 15px;
}

.post-body p, .post-body ul, .post-body ol {
    margin-bottom: 20px;
}

.post-body ul li, .post-body ol li {
    margin-bottom: 10px;
}

.post-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 0 30px 30px;
    border-bottom: 1px solid var(--light-gray-color);
}

.post-tags span {
    font-weight: 600;
    color: var(--dark-color);
}

.post-tags a {
    display: inline-block;
    padding: 5px 10px;
    background-color: var(--light-gray-color);
    color: var(--dark-color);
    border-radius: 4px;
    font-size: 14px;
    transition: var(--transition);
}

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

.post-share {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 30px;
    border-bottom: 1px solid var(--light-gray-color);
}

.post-share span {
    font-weight: 600;
    color: var(--dark-color);
}

.post-share a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--light-gray-color);
    color: var(--dark-color);
    border-radius: 50%;
    font-size: 18px;
    transition: var(--transition);
}

.post-share a:hover {
    background-color: var(--primary-color);
    color: #fff;
}

.post-author-bio {
    display: flex;
    gap: 20px;
    padding: 30px;
    border-bottom: 1px solid var(--light-gray-color);
}

.author-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

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

.author-info h3 {
    font-size: 18px;
    margin-bottom: 5px;
}

.author-info h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.author-social {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.author-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background-color: var(--light-gray-color);
    color: var(--dark-color);
    border-radius: 50%;
    font-size: 14px;
    transition: var(--transition);
}

.author-social a:hover {
    background-color: var(--primary-color);
    color: #fff;
}

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

.related-posts h3 {
    font-size: 20px;
    margin-bottom: 20px;
}

.related-posts-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.related-post img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 10px;
}

.related-post h4 {
    font-size: 16px;
    margin-bottom: 5px;
}

.related-post .date {
    font-size: 14px;
    color: var(--gray-color);
}

.post-navigation {
    display: flex;
    justify-content: space-between;
    padding: 30px;
}

.nav-previous, .nav-next {
    max-width: 45%;
}

.nav-previous a, .nav-next a {
    display: flex;
    flex-direction: column;
}

.nav-previous a span, .nav-next a span {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    color: var(--gray-color);
    margin-bottom: 5px;
}

.nav-previous a h4, .nav-next a h4 {
    font-size: 16px;
    margin-bottom: 0;
}

.nav-next a {
    text-align: right;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .hero-content h1 {
        font-size: 36px;
    }
    
    .hero-content p {
        font-size: 18px;
    }
    
    .about-preview .container,
    .contact-grid,
    .blog-grid,
    .blog-post-container {
        grid-template-columns: 1fr;
    }
    
    .about-section .about-content {
        grid-template-columns: 1fr;
    }
    
    .blog-sidebar {
        position: static;
    }
}

@media (max-width: 768px) {
    header .container {
        flex-direction: column;
        align-items: flex-start;
    }
    
    nav {
        width: 100%;
        margin-top: 15px;
    }
    
    nav ul {
        flex-direction: column;
    }
    
    nav ul li {
        margin-left: 0;
        margin-bottom: 10px;
    }
    
    .mobile-menu-btn {
        display: block;
        position: absolute;
        top: 15px;
        right: 15px;
    }
    
    nav {
        display: none;
    }
    
    nav.active {
        display: block;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .mission-vision-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .legal-links {
        margin-top: 15px;
    }
    
    .legal-links a {
        margin: 0 10px;
    }
    
    .related-posts-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 50px 0;
    }
    
    .hero-content h1 {
        font-size: 28px;
    }
    
    .services-overview h2,
    .about-content h2,
    .blog-preview h2,
    .contact-preview h2,
    .page-header h1 {
        font-size: 28px;
    }
    
    .post-meta {
        flex-direction: column;
        gap: 5px;
    }
    
    .post-tags, .post-share {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .post-author-bio {
        flex-direction: column;
    }
    
    .post-navigation {
        flex-direction: column;
        gap: 20px;
    }
    
    .nav-previous, .nav-next {
        max-width: 100%;
    }
}
