:root {
    --graphite-gray: #3C3C3C;
    --deep-navy: #1A2332;
    --warm-light-gray: #D4D4D4;
    --white: #FFFFFF;
    --accent-color: #4A6FA5;
    --hover-color: #2C4E7A;
    --text-dark: #2B2B2B;
    --text-light: #6B6B6B;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--white);
}

.main-header {
    background: linear-gradient(135deg, var(--graphite-gray) 0%, var(--deep-navy) 100%);
    box-shadow: 0 3px 15px rgba(0,0,0,0.2);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navigation-bar {
    padding: 0;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 2.5rem;
}

.brand-section {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--warm-light-gray);
}

.brand-name {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a {
    color: var(--warm-light-gray);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-links a:hover,
.nav-links a.active-link {
    color: var(--white);
    background-color: rgba(255,255,255,0.1);
    transform: translateY(-2px);
}

.hero-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1400px;
    margin: 5rem auto;
    padding: 0 2.5rem;
    align-items: center;
    text-align: center;
}

.hero-content h1 {
    font-size: 3rem;
    color: var(--deep-navy);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.hero-content p {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent-color), var(--hover-color));
    color: var(--white);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(74, 111, 165, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(74, 111, 165, 0.4);
}

.hero-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.features-section,
.process-section,
.testimonials-section,
.pricing-section,
.faq-section,
.latest-posts-section {
    max-width: 1400px;
    margin: 6rem auto;
    padding: 0 2.5rem;
    text-align: center;
}

.features-section h2,
.process-section h2,
.testimonials-section h2,
.pricing-section h2,
.faq-section h2,
.latest-posts-section h2 {
    font-size: 2.5rem;
    color: var(--deep-navy);
    margin-bottom: 3rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.feature-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 35px rgba(0,0,0,0.12);
}

.feature-icon {
    font-size: 3.5rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    color: var(--graphite-gray);
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.8;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.process-step {
    text-align: center;
    padding: 2rem;
}

.step-number {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--accent-color), var(--hover-color));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: bold;
    margin: 0 auto 1.5rem;
}

.process-step h3 {
    font-size: 1.4rem;
    color: var(--deep-navy);
    margin-bottom: 1rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.testimonial-card {
    background: var(--warm-light-gray);
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.testimonial-card p {
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.testimonial-author strong {
    color: var(--deep-navy);
    font-size: 1.1rem;
}

.testimonial-author span {
    color: var(--text-light);
    font-size: 0.95rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.pricing-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 35px rgba(0,0,0,0.15);
}

.featured-card {
    border: 3px solid var(--accent-color);
    transform: scale(1.05);
}

.pricing-card h3 {
    font-size: 1.8rem;
    color: var(--graphite-gray);
    margin-bottom: 1rem;
}

.price {
    font-size: 2.5rem;
    color: var(--accent-color);
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.price-features {
    list-style: none;
    text-align: left;
}

.price-features li {
    padding: 0.8rem 0;
    color: var(--text-dark);
    border-bottom: 1px solid var(--warm-light-gray);
}

.price-features i {
    color: var(--accent-color);
    margin-right: 0.8rem;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
}

.faq-item {
    background: var(--white);
    padding: 2rem;
    margin-bottom: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
}

.faq-item h3 {
    color: var(--deep-navy);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.faq-item i {
    color: var(--accent-color);
}

.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.post-preview {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    text-align: left;
}

.post-preview:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 35px rgba(0,0,0,0.15);
}

.post-preview img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.post-preview h3 {
    padding: 1.5rem;
    color: var(--deep-navy);
    font-size: 1.3rem;
}

.post-preview p {
    padding: 0 1.5rem 1rem;
    color: var(--text-light);
}

.read-more {
    display: inline-block;
    padding: 1rem 1.5rem;
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.read-more:hover {
    color: var(--hover-color);
    padding-left: 2rem;
}

.main-footer {
    background: linear-gradient(135deg, var(--deep-navy) 0%, var(--graphite-gray) 100%);
    color: var(--warm-light-gray);
    padding: 4rem 2.5rem 1rem;
    margin-top: 6rem;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
    text-align: center;
}

.footer-column h4 {
    color: var(--white);
    font-size: 1.3rem;
    margin-bottom: 1.2rem;
}

.footer-column p {
    line-height: 1.8;
    margin-bottom: 0.8rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: var(--warm-light-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--white);
}

.registration-number {
    font-style: italic;
    font-size: 0.9rem;
    margin-top: 1rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(212, 212, 212, 0.2);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--deep-navy);
    color: var(--white);
    padding: 2rem;
    box-shadow: 0 -5px 25px rgba(0,0,0,0.3);
    z-index: 9999;
    display: none;
}

.cookie-banner.active {
    display: block;
}

.cookie-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    text-align: center;
    flex-wrap: wrap;
}

.cookie-text h3 {
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
}

.cookie-text p {
    line-height: 1.6;
}

.cookie-text a {
    color: var(--accent-color);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.cookie-btn {
    padding: 0.8rem 1.8rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.accept-btn {
    background: var(--accent-color);
    color: var(--white);
}

.accept-btn:hover {
    background: var(--hover-color);
}

.reject-btn {
    background: var(--warm-light-gray);
    color: var(--deep-navy);
}

.reject-btn:hover {
    background: var(--white);
}

.page-hero {
    background: linear-gradient(135deg, var(--graphite-gray) 0%, var(--deep-navy) 100%);
    color: var(--white);
    text-align: center;
    padding: 5rem 2.5rem;
    margin-bottom: 4rem;
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-hero p {
    font-size: 1.3rem;
    color: var(--warm-light-gray);
}

.company-story {
    max-width: 1400px;
    margin: 5rem auto;
    padding: 0 2.5rem;
}

.story-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.story-text h2 {
    font-size: 2.3rem;
    color: var(--deep-navy);
    margin-bottom: 2rem;
    text-align: center;
}

.story-text p {
    color: var(--text-dark);
    line-height: 1.9;
    margin-bottom: 1.5rem;
    text-align: center;
}

.story-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.values-section {
    max-width: 1400px;
    margin: 6rem auto;
    padding: 0 2.5rem;
    text-align: center;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.value-card {
    padding: 2.5rem;
}

.value-icon {
    font-size: 3.5rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.value-card h3 {
    font-size: 1.5rem;
    color: var(--graphite-gray);
    margin-bottom: 1rem;
}

.team-section {
    max-width: 1400px;
    margin: 6rem auto;
    padding: 0 2.5rem;
    text-align: center;
}

.team-section h2 {
    font-size: 2.5rem;
    color: var(--deep-navy);
    margin-bottom: 1rem;
}

.team-intro {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.team-member {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 35px rgba(0,0,0,0.15);
}

.team-member img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 1.5rem;
}

.team-member h3 {
    font-size: 1.5rem;
    color: var(--deep-navy);
    margin-bottom: 0.5rem;
}

.member-position {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.team-member p {
    color: var(--text-dark);
    line-height: 1.7;
}

.achievements-section {
    max-width: 1400px;
    margin: 6rem auto;
    padding: 0 2.5rem;
    text-align: center;
}

.achievements-section h2 {
    font-size: 2.5rem;
    color: var(--deep-navy);
    margin-bottom: 3rem;
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.achievement-card {
    padding: 2rem;
}

.achievement-number {
    font-size: 3rem;
    color: var(--accent-color);
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.achievement-card p {
    color: var(--text-dark);
    font-size: 1.1rem;
}

.cta-section {
    background: var(--warm-light-gray);
    padding: 5rem 2.5rem;
    text-align: center;
    margin: 6rem 0;
}

.cta-section h2 {
    font-size: 2.5rem;
    color: var(--deep-navy);
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
}

.blog-posts-section {
    max-width: 1400px;
    margin: 5rem auto;
    padding: 0 2.5rem;
}

.blog-container {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.blog-post-card {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 2.5rem;
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.blog-post-card:hover {
    box-shadow: 0 10px 35px rgba(0,0,0,0.15);
    transform: translateY(-5px);
}

.post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.post-content {
    padding: 2.5rem;
    text-align: left;
}

.post-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.post-date,
.post-category {
    color: var(--text-light);
    font-size: 0.95rem;
}

.post-content h2 {
    font-size: 1.8rem;
    color: var(--deep-navy);
    margin-bottom: 1rem;
}

.post-content p {
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.read-more-btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: var(--accent-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-weight: 600;
}

.read-more-btn:hover {
    background: var(--hover-color);
    transform: translateX(5px);
}

.blog-cta-section {
    background: var(--warm-light-gray);
    padding: 5rem 2.5rem;
    text-align: center;
    margin: 5rem 0;
}

.blog-cta-section h2 {
    font-size: 2.3rem;
    color: var(--deep-navy);
    margin-bottom: 1rem;
}

.blog-cta-section p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.contact-section {
    max-width: 1400px;
    margin: 5rem auto;
    padding: 0 2.5rem;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
}

.contact-info h2 {
    font-size: 2rem;
    color: var(--deep-navy);
    margin-bottom: 2rem;
    text-align: center;
}

.info-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.info-icon {
    font-size: 2rem;
    color: var(--accent-color);
    min-width: 40px;
}

.info-item h3 {
    color: var(--graphite-gray);
    margin-bottom: 0.5rem;
}

.info-item p,
.info-item a {
    color: var(--text-dark);
    line-height: 1.7;
}

.info-item a {
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-item a:hover {
    color: var(--accent-color);
}

.contact-form-wrapper h2 {
    font-size: 2rem;
    color: var(--deep-navy);
    margin-bottom: 2rem;
    text-align: center;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: var(--graphite-gray);
    margin-bottom: 0.5rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-group input,
.form-group textarea {
    padding: 1rem;
    border: 2px solid var(--warm-light-gray);
    border-radius: 6px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(74, 111, 165, 0.1);
}

.submit-btn {
    padding: 1rem 2.5rem;
    background: var(--accent-color);
    color: var(--white);
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
}

.submit-btn:hover {
    background: var(--hover-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(74, 111, 165, 0.3);
}

.map-section {
    max-width: 1400px;
    margin: 5rem auto;
    padding: 0 2.5rem;
    text-align: center;
}

.map-section h2 {
    font-size: 2.3rem;
    color: var(--deep-navy);
    margin-bottom: 2rem;
}

.map-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
}

.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.6);
    justify-content: center;
    align-items: center;
}

.modal.show {
    display: flex;
}

.modal-content {
    background-color: var(--white);
    padding: 3rem;
    border-radius: 12px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    position: relative;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

.close-modal {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 2rem;
    color: var(--text-light);
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-modal:hover {
    color: var(--deep-navy);
}

.modal-icon {
    font-size: 4rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.modal-content h2 {
    color: var(--deep-navy);
    margin-bottom: 1rem;
    font-size: 2rem;
}

.modal-content p {
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.modal-btn {
    padding: 0.8rem 2.5rem;
    background: var(--accent-color);
    color: var(--white);
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1.5rem;
}

.modal-btn:hover {
    background: var(--hover-color);
}

.blog-post {
    max-width: 900px;
    margin: 3rem auto;
    padding: 0 2.5rem;
}

.post-header {
    text-align: center;
    margin-bottom: 3rem;
}

.post-meta-info {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.post-date,
.post-category,
.reading-time {
    color: var(--text-light);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.post-header h1 {
    font-size: 2.8rem;
    color: var(--deep-navy);
    margin-bottom: 2rem;
    line-height: 1.3;
}

.post-featured-image {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.post-content {
    line-height: 1.9;
    color: var(--text-dark);
}

.post-content h2 {
    font-size: 2rem;
    color: var(--deep-navy);
    margin: 2.5rem 0 1.5rem;
}

.post-content p {
    margin-bottom: 1.5rem;
    text-align: justify;
}

.post-content ul {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.post-content li {
    margin-bottom: 0.8rem;
}

.post-footer {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 2px solid var(--warm-light-gray);
}

.post-tags {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
    align-items: center;
}

.post-tags i {
    color: var(--accent-color);
}

.tag {
    background: var(--warm-light-gray);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    color: var(--text-dark);
    font-size: 0.9rem;
}

.post-navigation {
    text-align: center;
}

.back-to-blog {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: var(--accent-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-weight: 600;
}

.back-to-blog:hover {
    background: var(--hover-color);
    transform: translateX(-5px);
}

.related-posts {
    max-width: 1400px;
    margin: 5rem auto;
    padding: 0 2.5rem;
    text-align: center;
}

.related-posts h2 {
    font-size: 2.3rem;
    color: var(--deep-navy);
    margin-bottom: 2.5rem;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.related-post {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    text-align: left;
}

.related-post:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 35px rgba(0,0,0,0.15);
}

.related-post img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.related-post h3 {
    padding: 1.5rem;
    color: var(--deep-navy);
    font-size: 1.2rem;
}

.related-post a {
    display: inline-block;
    padding: 0 1.5rem 1.5rem;
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.related-post a:hover {
    color: var(--hover-color);
    padding-left: 2rem;
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .nav-links {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-section,
    .story-container,
    .contact-container,
    .blog-post-card {
        grid-template-columns: 1fr;
    }
    
    .hero-content h1,
    .page-hero h1 {
        font-size: 2rem;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .post-header h1 {
        font-size: 2rem;
    }
}

h1, h2, h3, h4, h5, h6 {word-break: break-word;}
