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

:root {
    --primary-color: #2c5f7f;
    --secondary-color: #4a9eca;
    --accent-color: #f39c12;
    --text-dark: #2c3e50;
    --text-light: #ecf0f1;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #dfe6e9;
    --success-color: #27ae60;
    --warning-color: #e67e22;
    --danger-color: #e74c3c;
    --shadow: 0 2px 10px rgba(0,0,0,0.1);
    --shadow-hover: 0 5px 20px rgba(0,0,0,0.15);
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--bg-light);
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

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

.navbar-primary {
    padding: 1rem 0;
}

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

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

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

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

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: var(--text-dark);
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.nav-active {
    background: var(--primary-color);
    color: var(--text-light);
}

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

.hamburger-line {
    width: 30px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 3px;
    transition: var(--transition);
}

.hero-banner,
.page-hero {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(44,95,127,0.7), rgba(74,158,202,0.5));
    z-index: 1;
}

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

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

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

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

.cta-button-primary,
.cta-button-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 50px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.cta-button-primary {
    background: var(--accent-color);
    color: var(--text-light);
}

.cta-button-primary:hover {
    background: #e67e22;
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

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

.cta-button-secondary:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.content-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.article-container {
    background: var(--bg-white);
    border-radius: 10px;
    padding: 3rem;
    box-shadow: var(--shadow);
}

.section-heading {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    border-bottom: 3px solid var(--accent-color);
    padding-bottom: 0.5rem;
}

.intro-section {
    margin-bottom: 3rem;
}

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

.road-type-card {
    background: var(--bg-light);
    border-radius: 10px;
    padding: 2rem;
    margin-bottom: 3rem;
    border-left: 5px solid var(--secondary-color);
}

.road-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 1.5rem;
}

.card-title {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.card-content p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.feature-list,
.speed-limits,
.route-list,
.safety-tips,
.stop-points {
    margin: 1.5rem 0;
    padding-left: 1rem;
}

.feature-list li,
.safety-tips li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.icon-check {
    color: var(--success-color);
    font-weight: bold;
}

.icon-alert {
    color: var(--warning-color);
}

.speed-limits li {
    margin-bottom: 0.5rem;
    font-size: 1.05rem;
}

.route-highlight {
    background: var(--bg-white);
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1rem 0;
    border-left: 4px solid var(--accent-color);
}

.tips-box {
    background: #fff3cd;
    border: 2px solid var(--warning-color);
    border-radius: 10px;
    padding: 1.5rem;
    margin: 2rem 0;
}

.tips-box h4 {
    color: var(--warning-color);
    margin-bottom: 1rem;
}

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

.tip-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.tip-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.tip-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.tip-card ul li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.tip-card ul li:before {
    content: "▸";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
}

.route-cards {
    margin-top: 2rem;
}

.route-card {
    background: var(--bg-white);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 3rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.route-card:hover {
    box-shadow: var(--shadow-hover);
}

.route-img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.route-details {
    padding: 2rem;
}

.route-details h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.route-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.route-meta span {
    background: var(--bg-light);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
}

.difficulty {
    font-weight: bold;
}

.difficulty-easy {
    background: #d4edda;
    color: var(--success-color);
}

.difficulty-medium {
    background: #fff3cd;
    color: var(--warning-color);
}

.difficulty-hard {
    background: #f8d7da;
    color: var(--danger-color);
}

.route-highlights {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 1rem;
}

.route-highlights ul li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.route-highlights ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

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

.update-card {
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.warning-card {
    background: #fff3cd;
    border-left: 5px solid var(--warning-color);
}

.success-card {
    background: #d4edda;
    border-left: 5px solid var(--success-color);
}

.update-card h3 {
    margin-bottom: 1rem;
}

.update-card ul li {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.roadwork-alert {
    background: #f8d7da;
    border: 2px solid var(--danger-color);
    border-radius: 10px;
    padding: 2rem;
    margin-top: 2rem;
}

.roadwork-alert h3 {
    color: var(--danger-color);
    margin-bottom: 1rem;
}

.testimonials-container {
    display: grid;
    gap: 2rem;
    margin-top: 2rem;
}

.testimonial-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    border-left: 5px solid var(--secondary-color);
}

.testimonial-header {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--secondary-color);
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
}

.testimonial-info h4 {
    color: var(--primary-color);
    margin-bottom: 0.3rem;
}

.testimonial-location {
    font-size: 0.9rem;
    color: #7f8c8d;
}

.testimonial-rating {
    color: var(--accent-color);
    margin-top: 0.3rem;
}

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

.testimonial-route {
    font-weight: bold;
    color: var(--secondary-color);
}

.cta-box {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--text-light);
    padding: 3rem;
    border-radius: 10px;
    text-align: center;
    margin-top: 3rem;
}

.cta-box h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.newsletter-section {
    background: var(--primary-color);
    color: var(--text-light);
    padding: 3rem;
    border-radius: 10px;
    margin-top: 3rem;
    text-align: center;
}

.newsletter-container h2 {
    margin-bottom: 1rem;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 600px;
    margin: 2rem auto 1rem;
}

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

.btn-subscribe {
    padding: 1rem 2rem;
    background: var(--accent-color);
    color: var(--text-light);
    border: none;
    border-radius: 50px;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition);
}

.btn-subscribe:hover {
    background: #e67e22;
}

.newsletter-privacy {
    font-size: 0.9rem;
    opacity: 0.9;
}

.site-footer {
    background: var(--text-dark);
    color: var(--text-light);
    padding: 3rem 2rem 1rem;
    margin-top: 4rem;
}

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

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

.footer-column h3,
.footer-column h4 {
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.footer-logo-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-top: 1rem;
}

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

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

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

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

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

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

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

.cookie-content h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.cookie-details {
    margin-top: 0.5rem;
    font-size: 0.9rem;
}

.cookie-details a {
    color: var(--secondary-color);
    text-decoration: underline;
}

.cookie-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

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

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

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

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

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

.cookie-decline {
    background: var(--border-color);
    color: var(--text-dark);
}

.cookie-decline:hover {
    background: #bdc3c7;
}

.blog-main,
.about-main,
.contact-main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.blog-intro,
.contact-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.blog-intro h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

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

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

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

.post-image-wrapper {
    position: relative;
}

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

.post-category {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--accent-color);
    color: var(--text-light);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
}

.post-content {
    padding: 1.5rem;
}

.post-title a {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: bold;
    display: block;
    margin-bottom: 1rem;
}

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

.post-excerpt {
    color: #555;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.post-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.9rem;
    color: #7f8c8d;
    margin-bottom: 1rem;
}

.read-more-btn {
    color: var(--secondary-color);
    font-weight: bold;
    transition: var(--transition);
}

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

.blog-newsletter {
    margin-top: 4rem;
}

.about-story {
    margin-bottom: 3rem;
}

.story-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    text-align: justify;
}

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

.mission-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
}

.mission-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.mission-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.team-intro {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

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

.team-member-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

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

.team-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1rem;
    border: 5px solid var(--secondary-color);
}

.team-member-card h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

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

.team-bio {
    line-height: 1.6;
    color: #555;
}

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

.stat-card {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--text-light);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
}

.cta-section {
    background: var(--bg-light);
    padding: 3rem;
    border-radius: 10px;
    text-align: center;
    margin-top: 3rem;
}

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

.contact-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.contact-form-section h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.8rem;
    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(--secondary-color);
}

.btn-submit {
    padding: 1rem 2rem;
    background: var(--primary-color);
    color: var(--text-light);
    border: none;
    border-radius: 5px;
    font-weight: bold;
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition);
}

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

.info-card {
    background: var(--bg-white);
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    margin-bottom: 1.5rem;
}

.info-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.info-detail {
    font-size: 0.9rem;
    color: #7f8c8d;
    margin-top: 0.5rem;
}

.working-hours {
    list-style: none;
}

.working-hours li {
    margin-bottom: 0.5rem;
}

.email-subscribe-section {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 10px;
    margin: 3rem 0;
}

.subscribe-container {
    text-align: center;
}

.subscribe-form {
    display: flex;
    gap: 1rem;
    max-width: 600px;
    margin: 1.5rem auto;
}

.subscribe-form input {
    flex: 1;
    padding: 0.8rem;
    border: 1px solid var(--border-color);
    border-radius: 5px;
}

.subscribe-note {
    font-size: 0.9rem;
    color: #7f8c8d;
}

.map-section {
    margin-top: 3rem;
}

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

.faq-section {
    margin-top: 3rem;
}

.faq-list {
    margin-top: 2rem;
}

.faq-item {
    background: var(--bg-white);
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 1rem;
    box-shadow: var(--shadow);
}

.faq-item h3 {
    color: var(--primary-color);
    margin-bottom: 0.8rem;
}

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

.success-modal.active {
    display: flex;
}

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

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 2rem;
    cursor: pointer;
    color: #7f8c8d;
}

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

.post-article {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
}

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

.post-hero-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 10px;
}

.post-header-content {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 10px;
    margin-top: -100px;
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: var(--shadow);
}

.post-category-badge {
    background: var(--accent-color);
    color: var(--text-light);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 1rem;
    font-weight: bold;
}

.post-header-content h1 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.post-meta-info {
    display: flex;
    gap: 2rem;
    color: #7f8c8d;
    flex-wrap: wrap;
}

.post-content-wrapper {
    display: grid;
    grid-template-columns: 3fr 1fr;
    gap: 3rem;
}

.post-body {
    background: var(--bg-white);
    padding: 3rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

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

.post-body h2 {
    color: var(--primary-color);
    font-size: 2rem;
    margin: 2rem 0 1rem;
}

.post-body h3 {
    color: var(--secondary-color);
    font-size: 1.5rem;
    margin: 1.5rem 0 1rem;
}

.post-body p {
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.post-body ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.post-body ul li {
    list-style: disc;
    margin-bottom: 0.5rem;
}

.post-content-img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 2rem 0;
    box-shadow: var(--shadow);
}

blockquote {
    background: var(--bg-light);
    border-left: 5px solid var(--accent-color);
    padding: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    border-radius: 5px;
}

.info-box {
    background: #e3f2fd;
    border: 2px solid var(--secondary-color);
    padding: 1.5rem;
    border-radius: 10px;
    margin: 2rem 0;
}

.info-box h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.cost-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    box-shadow: var(--shadow);
}

.cost-table thead {
    background: var(--primary-color);
    color: var(--text-light);
}

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

.cost-table tbody tr:nth-child(even) {
    background: var(--bg-light);
}

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

.sidebar-widget {
    background: var(--bg-white);
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    margin-bottom: 2rem;
}

.sidebar-widget h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.popular-posts li {
    margin-bottom: 0.8rem;
}

.popular-posts a {
    color: var(--text-dark);
    transition: var(--transition);
}

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

.sidebar-newsletter {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.sidebar-newsletter input {
    padding: 0.8rem;
    border: 1px solid var(--border-color);
    border-radius: 5px;
}

.sidebar-newsletter button {
    padding: 0.8rem;
    background: var(--secondary-color);
    color: var(--text-light);
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition);
}

.sidebar-newsletter button:hover {
    background: var(--primary-color);
}

.post-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 3rem;
    gap: 1rem;
}

.btn-back,
.btn-next {
    padding: 1rem 2rem;
    background: var(--secondary-color);
    color: var(--text-light);
    border-radius: 5px;
    font-weight: bold;
    transition: var(--transition);
}

.btn-back:hover,
.btn-next:hover {
    background: var(--primary-color);
    transform: translateX(-3px);
}

.btn-next:hover {
    transform: translateX(3px);
}

@media (max-width: 1200px) {
    .post-content-wrapper {
        grid-template-columns: 1fr;
    }
    
    .post-sidebar {
        position: static;
    }
}

@media (max-width: 992px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .update-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .mobile-toggle {
        display: flex;
    }
    
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-white);
        flex-direction: column;
        padding: 1rem;
        box-shadow: var(--shadow);
        display: none;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .hero-banner,
    .page-hero {
        height: 400px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .article-container {
        padding: 2rem 1rem;
    }
    
    .tips-grid,
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .newsletter-form,
    .subscribe-form {
        flex-direction: column;
    }
    
    .cookie-actions {
        flex-direction: column;
    }
    
    .cookie-btn {
        width: 100%;
    }
    
    .post-header-content h1 {
        font-size: 1.8rem;
    }
    
    .post-meta-info {
        flex-direction: column;
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    .container-nav {
        padding: 0 1rem;
    }
    
    .brand-name {
        font-size: 1.2rem;
    }
    
    .hero-title {
        font-size: 1.5rem;
    }
    
    .section-heading {
        font-size: 1.8rem;
    }
    
    .route-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
}