:root {
    --purple-primary: #4F46E5;
    --purple-dark: #4338CA;
    --purple-gradient-start: #6366f1;
    --purple-gradient-end: #4f46e5;
    --pink-accent: #E11D48;
    --pink-gradient-start: #fb7185;
    --pink-gradient-end: #e11d48;
    --orange-accent: #EA580C;
    --blue-light: #EEF2FF;
    --white: #FFFFFF;
    --dark: #111827;
    --gray: #4B5563;
    --gray-light: #F8F9FA;
    --background: #f8f9fa;
    --text-dark: #333;
    --gradient-purple: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-pink: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-orange: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
    --font-main: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --line-height: 1.7;
    --spacing-xs: 5px;
    --spacing-sm: 10px;
    --spacing-md: 15px;
    --spacing-lg: 20px;
    --spacing-xl: 30px;
    --spacing-2xl: 40px;
    --section-padding: 100px 0;
    --blog-padding: 50px 0 100px 0;
    --radius-sm: 5px;
    --radius-md: 10px;
    --radius-lg: 15px;
    --radius-xl: 20px;
    --radius-round: 50%;
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 5px 15px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 10px 40px rgba(108, 99, 255, 0.15);
    --shadow-hover: 0 15px 50px rgba(108, 99, 255, 0.25);
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    --transition-fast: all 0.2s ease;
    --transition: all 0.3s ease;
    --transition-slow: all 0.5s ease;
    --z-dropdown: 100;
    --z-sticky: 500;
    --z-fixed: 1000;
    --z-top: 1001;
    --z-modal: 1050;
    --header-height: 80px;
    --topbar-height: 44px;
    --total-header-height: 124px;
    --body-font-size: 1rem;
    --body-font-weight:400;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}

html,
body {
    overflow-x: hidden !important;
    scroll-padding-top: var(--total-header-height);
}

body {
  margin: 0;
  font-family: var(--font-main);
  font-size: var(--body-font-size);
  font-weight: var(--body-font-weight);
  line-height: var(--line-height);
  color: var(--dark);
  padding-top: var(--total-header-height);
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

body.no-top-bar {
    --topbar-height: 0px;
    --total-header-height: var(--header-height);
}

@media (max-width:768px) {
    body.top-bar-only-desktop {
        --topbar-height: 0px;
        --total-header-height: var(--header-height);
    }
}

@media (min-width:769px) {
    body.top-bar-only-mobile {
        --topbar-height: 0px;
        --total-header-height: var(--header-height);
    }
}

a {
    text-decoration: none;
}

img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.py-5 {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
}

.mt-3 {
    margin-top: 1rem !important;
}

.mb-3 {
    margin-bottom: 1rem !important;
}

.mb-5 {
    margin-bottom: 3rem !important;
}

.note-float-left {
    margin-right: 15px;
}

.note-float-right {
    margin-left: 15px;
}

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

.top-bar {
    background: var(--gradient-purple);
    color: var(--white);
    font-size: 14px;
    padding: var(--spacing-sm) 0;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: var(--z-top);
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--spacing-md);
}

.top-bar-left,
.top-bar-right {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
    flex-wrap: wrap;
}

.top-bar a {
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
}

.top-bar a:hover {
    opacity: 0.8;
}

.top-bar i {
    font-size: 12px;
}

.social-links {
    display: flex;
    gap: var(--spacing-sm);
    margin-left: var(--spacing-md);
    padding-left: var(--spacing-md);
    border-left: 1px solid rgba(255, 255, 255, 0.3);
}

.social-links a {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-round);
    background: rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.social-links a:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    opacity: 1;
}

.header {
    background: var(--white);
    padding: 10px 20px 0 20px;
    position: fixed;
    width: 100%;
    top: var(--topbar-height);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

.logo {
    font-size: 28px;
    font-weight: 700;
    color: var(--purple-primary);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
}

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

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

/* CTA Button in navigation - override general nav-menu a styles */
.nav-menu .cta-button {
    background: var(--gradient-purple);
    color: var(--white) !important;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: var(--shadow);
    margin: 0;
}

.nav-menu .cta-button:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
    color: var(--white) !important;
}


/* ========================================
   CTA Buttons - Used in Hero and Editor
   ======================================== */

/* Editor buttons container - above the editor */
.cta-editor-buttons {
    margin-bottom: 10px;
    text-align: right;
    padding: 10px 0;
}

/* Container for CTA buttons in content */
.cta-buttons-container {
    margin: 30px 0;
    text-align: center;
    clear: both;
}

/* Base CTA button styles */
.cta-button {
    display: inline-block;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    margin: 10px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-family: inherit;
    line-height: 1.5;
}

/* Call button - Yellow/Orange gradient */
.cta-call {
    background: linear-gradient(135deg, #FFC107 0%, #FF9800 100%);
    color: #000 !important;
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.4);
}

.cta-call:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 193, 7, 0.6);
    background: linear-gradient(135deg, #FFD54F 0%, #FFB74D 100%);
}

.cta-call:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(255, 193, 7, 0.4);
}

/* WhatsApp button - Green gradient */
.cta-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #fff !important;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.cta-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
    background: linear-gradient(135deg, #2FE074 0%, #1AA88A 100%);
}

.cta-whatsapp:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(37, 211, 102, 0.4);
}

/* Icon spacing */
.cta-button i {
    margin-right: 8px;
}

/* ========================================
   Table of Contents (TOC) Styles
   ======================================== */

.table-of-contents {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    padding: 25px 30px;
    margin: 30px 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.toc-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
    margin: 0 0 20px 0;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--purple-primary);
}

.toc-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.toc-item {
    margin: 0;
    padding: 0;
}

.toc-link {
    display: block;
    padding: 10px 15px;
    color: var(--dark);
    text-decoration: none;
    transition: all 0.2s ease;
    border-radius: 6px;
    font-size: 15px;
    line-height: 1.6;
}

.toc-link:hover {
    background: #fff;
    color: var(--purple-primary);
    transform: translateX(5px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.toc-number {
    color: var(--purple-primary);
    font-weight: 600;
    margin-right: 8px;
}

.toc-text {
    color: inherit;
}

/* Nested TOC lists */
.toc-sublist {
    list-style: none;
    padding-left: 25px;
    margin: 5px 0;
}

.toc-level-3 .toc-link {
    font-size: 14px;
    padding: 8px 12px;
}

.toc-level-4 .toc-link,
.toc-level-5 .toc-link,
.toc-level-6 .toc-link {
    font-size: 13px;
    padding: 6px 10px;
    opacity: 0.9;
}

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Responsive TOC */
@media (max-width: 768px) {
    .table-of-contents {
        padding: 20px;
        margin: 20px 0;
    }

    .toc-title {
        font-size: 18px;
    }

    .toc-link {
        font-size: 14px;
        padding: 8px 12px;
    }

    .toc-sublist {
        padding-left: 15px;
    }
}

/* Print styles - hide TOC when printing */
@media print {
    .table-of-contents {
        display: none;
    }
}


.nav-menu li {
    position: relative;
}

.nav-menu li.has-dropdown>a {
    display: flex;
    align-items: center;
}

.dropdown-icon {
    margin-left: 8px;
    font-size: 10px;
    color: #000;
    transition: var(--transition);
}

.nav-menu li.has-dropdown:hover .dropdown-icon {
    color: var(--purple-primary);
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 220px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    padding: 15px 0;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 1000;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.nav-menu li.has-dropdown:hover>.dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    width: 100%;
    margin: 0;
    padding: 0;
}

.dropdown-menu a {
    display: block !important;
    padding: 10px 25px !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    color: var(--dark) !important;
    text-decoration: none !important;
    transition: all 0.2s ease !important;
}

.dropdown-menu a:hover {
    background: var(--blue-light) !important;
    color: var(--purple-primary) !important;
    padding-left: 30px !important;
}

.mobile-menu li {
    width: 100%;
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.mobile-menu-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.mobile-menu-item a {
    flex: 1;
}

.mobile-dropdown-toggle {
    background: none;
    border: none;
    color: var(--dark);
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition);
}

.mobile-submenu {
    list-style: none;
    background: rgba(108, 99, 255, 0.03);
    padding: 5px 0;
    margin: 0;
}

.mobile-submenu a {
    padding: 10px 25px !important;
    font-size: 14px !important;
    opacity: 0.9 !important;
}

.mobile-submenu .mobile-submenu {
    background: rgba(108, 99, 255, 0.05);
}

.mobile-submenu .mobile-submenu a {
    padding-left: 45px !important;
    font-size: 13px !important;
}

.mobile-submenu li:last-child {
    border-bottom: none;
}

.dropdown-menu .sub-menu {
    left: 100%;
    top: 0;
    margin-top: -10px;
    display: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.nav-menu li.has-dropdown:hover>.dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu .sub-menu.show {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: none;
}

.dropdown-menu .sub-menu.open-left {
    left: auto;
    right: 100%;
}

.nav-menu>li:last-child>.dropdown-menu,
.nav-menu>li:nth-last-child(2)>.dropdown-menu {
    left: auto;
    right: 0;
}

.dropdown-menu li {
    position: relative;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 28px;
    color: var(--dark);
    cursor: pointer;
    padding: 10px;
    transition: var(--transition);
}

.mobile-menu-toggle:hover {
    color: var(--purple-primary);
}

.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: var(--gradient-purple);
    position: relative;
    overflow: hidden;
    padding-top: 70px;
}

.hero::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    top: -200px;
    right: -100px;
    animation: float 15s infinite ease-in-out;
}

.hero::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    bottom: -100px;
    left: -50px;
    animation: float 20s infinite ease-in-out reverse;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-30px) rotate(180deg);
    }
}

.hero-content {
    position: relative;
    z-index: 1;
    color: var(--white);
    max-width: 100%;
    text-align: center;
}

.hero-subtitle {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 20px;
    opacity: 0.9;
}

.hero-title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-description {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.95;
    margin-left: auto;
    margin-right: auto;
    max-width: 800px;
}

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

.btn {
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
}

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

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--dark);
}

.section-description {
    font-size: 16px;
    color: #4a4a4a;
    max-width: 1000px;
    margin: 0 auto;
}

.specialization {
    padding: var(--section-padding);
    background: var(--white);
}

.spec-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

@media (max-width:1200px) {
    .spec-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width:768px) {
    .spec-grid {
        grid-template-columns: 1fr;
    }
}

.spec-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
}

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

.spec-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-purple);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 36px;
    color: var(--white);
}

.spec-card:nth-child(2) .spec-icon {
    background: var(--gradient-pink);
}

.spec-card:nth-child(3) .spec-icon {
    background: var(--gradient-orange);
}

.spec-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--dark);
}

.spec-description {
    color: var(--gray);
    line-height: 1.8;
}

.features {
    padding: var(--section-padding);
    background: var(--gradient-purple);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.features::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    bottom: -200px;
    left: -200px;
}

.features .section-title,
.features .section-description {
    color: var(--white);
}

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

.feature-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 35px 25px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
    opacity: 0.9;
}

.feature-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
}

.feature-description {
    font-size: 14px;
    opacity: 0.9;
    line-height: 1.7;
}

.blog {
    padding: var(--blog-padding);
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

@media (max-width:992px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width:768px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
}

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

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

.blog-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    padding: 0;
    margin: 0;
    display: block;
}

.blog-image img {
    width: 100% !important;
    height: 200px !important;
    object-fit: cover !important;
    display: block !important;
}

.blog-card:nth-child(2) .blog-image {
    background: var(--gradient-pink);
}

.blog-card:nth-child(3) .blog-image {
    background: var(--gradient-orange);
}

.blog-content {
    padding: 25px;
}

.blog-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--dark);
    line-height: 1.4;
}

.blog-excerpt {
    color: var(--gray);
    font-size: 14px;
    line-height: 1.7;
}

.footer {
    background: var(--dark);
    color: var(--white);
    padding: 60px 0 20px;
}

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

.footer-section h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--white);
}

.footer-section p,
.footer-section a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--white);
}

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

.footer-bottom-left p {
    margin: 0;
}

.footer-bottom-right {
    display: flex;
    gap: 20px;
    align-items: center;
}

.footer-bottom-right a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.footer-bottom-right a:hover {
    color: var(--white);
}

.floating-buttons {
    position: fixed;
    right: 5px;
    top: 40%;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.float-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 22px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    cursor: pointer;
}

.float-btn:hover {
    transform: scale(1.1);
}

.float-btn.phone {
    background: var(--gradient-purple);
}

.float-btn.whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

.float-btn.telegram {
    background: linear-gradient(135deg, #0088cc 0%, #005580 100%);
}

.float-btn.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.page-header {
    background: var(--dark);
    color: var(--white);
    padding: 100px 0 60px;
    text-align: center;
}

.page-header h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 10px;
    font-size: 14px;
    opacity: 0.8;
}

.breadcrumb a {
    color: var(--white);
    text-decoration: none;
}

.page-content {
    padding: var(--topbar-height) 0;
    background: var(--gray-light);
}

.content-wrapper {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.sidebar {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    height: fit-content;
    position: sticky;
    top: 100px;
    width: 300px;
    flex-shrink: 0;
}

.sidebar h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
}

.sidebar-menu {
    list-style: none;
}

.sidebar-menu li {
    margin-bottom: 10px;
}

.sidebar-menu a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 15px;
    background: var(--gray-light);
    border-radius: 8px;
    color: var(--dark);
    text-decoration: none;
    transition: var(--transition);
    font-size: 14px;
}

.sidebar-menu a:hover,
.sidebar-menu a.active {
    background: var(--gradient-purple);
    color: var(--white);
    transform: translateX(5px);
}

.sidebar-cta {
    background: var(--gradient-purple);
    color: var(--white);
    padding: 30px 20px;
    border-radius: 10px;
    text-align: center;
    margin-top: 30px;
}

.sidebar-cta h4 {
    font-size: 18px;
    margin-bottom: 15px;
}

.sidebar-cta p {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
}

.sidebar-cta .btn {
    background: var(--white);
    color: var(--purple-primary);
    width: 100%;
    text-align: center;
    padding: 12px;
}

.main-content {
    flex: 1;
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.content-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 30px;
    overflow: hidden;
}

.content-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
    display: block;
}

.content-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--dark);
    line-height: 1.3;
}

.content-subtitle {
    font-size: 24px;
    font-weight: 600;
    margin: 30px 0 15px;
}

.content-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 20px;
}

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

.content-text h2,
.content-text h3,
.content-text h4 {
    margin-top: 10px;
    margin-bottom: 10px;
    color: var(--dark);
}

.content-text ul,
.content-text ol {
    margin-bottom: 20px;
    padding-left: 30px;
}

.content-text img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-md);
    margin: 10px 0;
}

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

.content-list li {
    padding: 10px 0 10px 30px;
    position: relative;
    color: var(--gray);
}

.content-list li::before {
    content: '?';
    position: absolute;
    left: 0;
    color: var(--purple-primary);
    font-weight: 700;
}

.sidebar-column {
    width: 350px;
    flex-shrink: 0;
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    list-style: none;
    margin: 40px 0;
}

.pagination li {
    display: inline-block;
}

.pagination a,
.pagination span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 45px;
    height: 45px;
    padding: 0 15px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: var(--transition);
    background: var(--gradient-purple);
    color: var(--white);
    border: 2px solid transparent;
}

.pagination a:hover {
    background: var(--white);
    color: var(--purple-primary);
    border-color: var(--gray-light);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.pagination .active span {
    background: var(--white);
    color: var(--purple-primary);
    border-color: var(--purple-primary);
    box-shadow: var(--shadow);
}

.pagination .disabled span {
    opacity: 0.5;
    cursor: not-allowed;
    background: var(--gray-light);
    color: var(--gray);
}

.pagination li:first-child a,
.pagination li:last-child a {
    font-weight: 700;
}

.desktop-nav {
    display: block;
}

.offcanvas-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.offcanvas-overlay.active {
    opacity: 1;
    visibility: visible;
}

.offcanvas-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 320px;
    max-width: 85%;
    height: calc(100% + 1px);
    background: var(--white);
    z-index: 999;
    overflow-y: auto;
    transition: left 0.3s ease;
    box-shadow: 2px 0 20px rgba(0, 0, 0, 0.2);
}

.offcanvas-menu.active {
    left: 0;
}

.offcanvas-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 20px 30px 20px;
    border-bottom: 1px solid #eee;
    background: var(--gradient-purple);
}

.offcanvas-header .logo {
    color: var(--white);
    font-size: 24px;
    font-weight: 700;
}

.offcanvas-close {
    background: none;
    border: none;
    font-size: 28px;
    color: var(--white);
    cursor: pointer;
    padding: 5px;
    transition: var(--transition);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1001;
    position: relative;
    pointer-events: auto;
}

.offcanvas-close:hover {
    transform: rotate(90deg);
    opacity: 0.8;
}

.offcanvas-nav {
    padding: 20px 10px 10px 10px;
}

.mobile-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-menu>li:not(:first-child):not(:last-child) {
    padding: 10px 5px 10px 20px;
    border-bottom: 1px solid #f0f0f0;
}

.mobile-menu-item {
    padding-left: 0;
}

.mobile-menu>li>a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px;
    color: var(--dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: var(--transition);
}

.mobile-menu>li>a i {
    color: var(--purple-primary);
    width: 24px;
    font-size: 18px;
    text-align: center;
}

.mobile-menu>li>a:hover,
.mobile-menu>li>a:active {
    background: var(--blue-light);
    color: var(--purple-primary);
    padding-left: 24px;
}

.mobile-menu>li.cta-link a,
.mobile-menu>li>a.cta-link {
    background: var(--gradient-purple);
    color: var(--white) !important;
    margin: 10px;
    border-radius: 10px;
    font-weight: 600;
    justify-content: center;
    text-align: center;
}

.mobile-menu>li>a.cta-link>i {
    color: var(--white);
}

.mobile-menu>li.cta-link a:hover,
.mobile-menu>li>a.cta-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(108, 99, 255, 0.3);
}

.has-submenu>a {
    position: relative;
    justify-content: space-between;
}

.submenu-toggle {
    margin-left: auto;
    transition: transform 0.3s ease;
    font-size: 14px;
}

.has-submenu.open .submenu-toggle {
    transform: rotate(180deg);
}

.submenu {
    list-style: none;
    padding: 0;
    margin: 0;
    max-height: 0;
    overflow: hidden;
    background: #f8f9fa;
    transition: max-height 0.3s ease;
}

.has-submenu.open .submenu {
    max-height: 500px;
}

.submenu li a {
    display: block;
    padding: 12px 20px 12px 56px;
    color: var(--gray);
    text-decoration: none;
    font-size: 15px;
    transition: var(--transition);
}

.submenu li a:hover {
    background: #e9ecef;
    color: var(--purple-primary);
    padding-left: 60px;
}

.mobile-social-links {
    display: flex;
    gap: 15px;
    padding: 20px;
    justify-content: center;
    border-top: 1px solid #f0f0f0;
    margin-top: 10px;
}

.mobile-social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #f8f9fa;
    color: var(--purple-primary);
    text-decoration: none;
    transition: var(--transition);
    border: 1px solid rgba(108, 99, 255, 0.1);
}

.mobile-social-links a:hover {
    background: var(--purple-primary);
    color: var(--white);
    transform: translateY(-3px);
}

.mobile-auth-buttons {
    display: flex;
    gap: 10px;
    padding: 0 10px 15px 10px;
    margin-bottom: 10px;
    border-bottom: 1px solid #f0f0f0;
}

.mobile-auth-buttons .btn {
    flex: 1;
    border-radius: 5px;
    padding: 10px 15px;
    background: #2563eb;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    box-shadow: none;
}

.mobile-auth-buttons .btn:hover {
    background: #1d4ed8;
    transform: none;
}

.sidebar-cta-widget {
    background: #1a1a1a;
    color: #ffffff;
    padding: 30px 10px;
    border-radius: 4px;
    text-align: center;
    margin-top: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.cta-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.cta-icon {
    width: 50px;
    height: 50px;
    border: 2px solid #ffd700;
    border-radius: 10px;
    transform: rotate(45deg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    flex-shrink: 0;
}

.cta-icon i {
    font-size: 20px;
    color: #ffd700;
    transform: rotate(-45deg);
}

.sidebar-cta-widget h4 {
    font-size: 22px;
    font-weight: 800;
    color: #ffffff;
    text-transform: uppercase;
    font-family: 'Arial Black', sans-serif;
    margin: 0;
    line-height: 1;
}

.cta-subtitle {
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
}

.cta-phone-box {
    background: #ffffff;
    padding: 20px 15px;
    margin-bottom: 0;
    position: relative;
    z-index: 2;
}

.cta-label {
    display: block;
    color: #000000;
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-phone {
    display: block;
    color: #555555;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
}

.cta-phone:hover {
    color: #000000;
}

.cta-btn {
    background: #ffa500;
    border: none;
    padding: 15px;
    font-weight: 700;
    text-transform: uppercase;
    width: 80%;
    margin: -15px auto 0;
    display: block;
    color: #000000 !important;
    text-decoration: none;
    transition: all 0.3s;
    position: relative;
    z-index: 3;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    font-size: 14px;
}

.cta-btn:hover {
    background: #ffb732;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 10px;
    width: 50px;
    height: 50px;
    background: rgba(108, 99, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6C63FF;
    font-size: 20px;
    cursor: pointer;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    outline: none;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: #6C63FF;
    color: #fff;
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(108, 99, 255, 0.4);
}

.back-to-top i {
    transition: transform 0.3s ease;
}

.back-to-top:hover i {
    transform: scale(1.2);
}

@media (max-width:768px) {
    .top-bar-desktop {
        display: none !important;
    }

    .top-bar {
        font-size: 12px;
        padding: 8px 0;
    }

    .top-bar-content {
        gap: var(--spacing-sm);
    }

    .top-bar-left,
    .top-bar-right {
        gap: var(--spacing-sm);
        font-size: 11px;
    }

    .social-links {
        margin-left: var(--spacing-sm);
        padding-left: var(--spacing-sm);
    }

    .social-links a {
        width: 24px;
        height: 24px;
    }

    .header {
        padding: 10px !important;
    }
}

@media (min-width:769px) {
    .top-bar-mobile {
        display: none !important;
    }
}

@media (max-width:992px) {
    .desktop-nav {
        display: none !important;
    }

    .mobile-menu-toggle {
        display: block !important;
    }

    .content-wrapper {
        flex-direction: column;
    }

    .sidebar {
        position: static;
        width: 100%;
    }

    .sidebar-column {
        width: 100%;
        order: 2;
    }

    .main-content {
        order: 1;
    }
}

@media (max-width:768px) {
    .container {
        padding: 0 15px !important;
        max-width: 100% !important;
    }

    /* CTA Buttons responsive */
    .cta-buttons-container {
        margin: 20px 0;
    }

    .cta-button {
        display: block;
        width: 100%;
        max-width: 300px;
        margin: 10px auto;
        padding: 12px 25px;
        font-size: 15px;
    }

    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        padding: 20px;
        box-shadow: var(--shadow);
    }

    .nav-menu.active {
        display: flex;
    }

    .hero {
        min-height: 90vh;
        padding: 100px 0 60px;
        overflow: hidden;
    }

    .hero-content {
        max-width: 100%;
        padding: 0 15px;
    }

    .hero-title {
        font-size: 32px !important;
        line-height: 1.3;
        word-wrap: break-word;
    }

    .hero-description {
        font-size: 16px;
        word-wrap: break-word;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }

    .btn {
        width: 100%;
        max-width: 100%;
        text-align: center;
        padding: 14px 28px;
        box-sizing: border-box;
    }

    .section-title {
        font-size: 28px;
        word-wrap: break-word;
    }

    .header-content {
        padding: 0 !important;
        margin: 0;
    }

    .main-content {
        padding: 25px;
    }

    .content-title {
        font-size: 24px;
    }

    .back-to-top {
        bottom: 20px;
        right: 10px;
        width: 45px;
        height: 45px;
    }
}

@media (min-width:993px) {
    .mobile-menu-toggle {
        display: none !important;
    }

    .offcanvas-menu {
        display: none !important;
    }

    .offcanvas-overlay {
        display: none !important;
    }
}

@media (max-width:576px) {

    .pagination a,
    .pagination span {
        min-width: 40px;
        height: 40px;
        font-size: 14px;
        padding: 0 10px;
    }

    .pagination {
        gap: 5px;
    }
}

@media (max-width:480px) {
    .hero-title {
        font-size: 28px !important;
    }

    .logo {
        font-size: 20px !important;
    }

    .mobile-menu-toggle {
        font-size: 34px;
    }

    .hero-content {
        padding: 0 10px;
    }

    .section-title {
        font-size: 22px !important;
        line-height: 1.3;
    }

    h1 {
        font-size: 26px !important;
        line-height: 1.3;
    }

    h2 {
        font-size: 24px !important;
        line-height: 1.3;
    }

    h3 {
        font-size: 20px !important;
        line-height: 1.3;
    }
}

.post-tags {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid var(--gray-light);
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.tags-label {
    color: #3730A3;
    font-size: 16px;
    font-weight: 700;
}

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

.tag-item {
    display: inline-block !important;
    background: var(--gray-light) !important;
    color: var(--dark) !important;
    padding: 6px 18px !important;
    border-radius: 50px !important;
    font-size: 14px !important;
    text-decoration: none !important;
    transition: var(--transition) !important;
    border: 1px solid transparent !important;
}

.tag-item:hover {
    background: var(--blue-light) !important;
    color: var(--purple-primary) !important;
    border-color: var(--purple-primary) !important;
    transform: translateY(-2px) !important;
    box-shadow: var(--shadow-sm) !important;
}

.why-choose-us {
    padding: 80px 0;
    background: #f8f9fa;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.why-choose-image {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.why-choose-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.why-choose-content {
    padding: 5px;
}

.why-choose-content .section-title {
    text-align: left;
    margin-bottom: 15px;
    font-size: 26px;
}

.why-choose-content .section-description {
    text-align: left;
    margin-bottom: 30px;
}

.why-choose-content .btn {
    margin-top: 20px;
}

.why-choose-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.why-choose-list li {
    padding: 12px 0;
    font-size: 16px;
    color: #333;
    display: flex;
    align-items: center;
    gap: 12px;
}

.why-choose-list li i {
    color: #28a745;
    font-size: 20px;
}

@media (max-width:768px) {
    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}



.btn-call {
    background: #ffc107 !important;
    color: #000 !important;
    border: none !important
}

.btn-call:hover {
    background: #e0a800 !important;
    color: #000 !important
}

.btn-whatsapp {
    background: #25d366 !important;
    color: #fff !important;
    border: none !important
}

.btn-whatsapp:hover {
    background: #128c7e !important;
    color: #fff !important
}

/* Contact Page Styles */
.contact-flex-layout {
    display: flex;
    flex-wrap: wrap;
    gap: var(--topbar-height);
    align-items: flex-start;
}

.contact-info-side {
    flex: 1;
    min-width: 350px;
}

.contact-form-side {
    flex: 1.2;
    min-width: 350px;
    margin-top: 40px;
}

.contact-heading {
    font-size: 48px;
    font-weight: 800;
    color: var(--dark);
    letter-spacing: -1px;
}

.contact-subtext {
    font-size: 16px;
    color: var(--gray);
    line-height: 1.6;
    max-width: 500px;
}

.info-items {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-item-premium {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 5px 0;
}

.info-icon-box {
    width: 54px;
    height: 54px;
    background: var(--blue-light);
    color: var(--purple-primary);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
    transition: var(--transition);
}

.info-item-premium:hover .info-icon-box {
    background: var(--purple-primary);
    color: var(--white);
    transform: scale(1.05);
}

.info-tag {
    display: block;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--purple-primary);
    margin-bottom: 4px;
}

.info-text p {
    font-size: 16px;
    font-weight: 500;
    color: var(--dark);
    margin: 0;
}

.info-text a {
    color: var(--dark);
    text-decoration: none;
    transition: var(--transition);
}

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

.social-links-premium {
    border-top: 1px solid #eee;
    padding-top: 30px;
}

.social-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--gray);
    margin-bottom: 15px;
}

.social-icons-premium {
    display: flex;
    gap: 15px;
}

.social-icon-btn {
    width: 44px;
    height: 44px;
    background: #f1f5f9;
    color: var(--dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: var(--transition);
    text-decoration: none;
}

.social-icon-btn:hover {
    color: var(--white);
    transform: translateY(-5px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.social-icon-btn.fb:hover {
    background: #1877f2;
}

.social-icon-btn.ig:hover {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%);
}

.social-icon-btn.tw:hover {
    background: #1da1f2;
}

.social-icon-btn.yt:hover {
    background: #ff0000;
}

.contact-card-premium {
    background: var(--white);
    padding: 50px;
    border-radius: 24px;
    box-shadow: var(--shadow-xl);
}

.card-title-premium {
    font-size: 28px;
    font-weight: 700;
    color: var(--dark);
    letter-spacing: -0.5px;
}

.premium-label {
    font-size: 14px;
    font-weight: 700;
    color: var(--dark);
    margin: 10px 0;
    display: block;
}

.premium-input {
    background: #f8fafc !important;
    border: 2px solid #f1f5f9 !important;
    border-radius: 12px !important;
    padding: 14px 20px !important;
    font-size: 15px !important;
    font-weight: 500 !important;
    color: var(--dark) !important;
    transition: var(--transition) !important;
    width: 100% !important;
    display: block !important;
}

.premium-input:focus {
    background: var(--white) !important;
    border-color: var(--purple-primary) !important;
    box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.1) !important;
    outline: none !important;
}

.btn-premium-send {
    background: var(--gradient-purple);
    color: var(--white);
    border: none;
    padding: 16px 36px;
    border-radius: 14px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    box-shadow: 0 10px 20px rgba(79, 70, 229, 0.2);
}

.btn-premium-send:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 25px rgba(79, 70, 229, 0.3);
    opacity: 0.95;
}

@media (max-width: 1200px) {
    .contact-flex-layout {
        gap: 40px;
    }

    .contact-heading {
        font-size: 38px;
    }

    .contact-card-premium {
        padding: 35px;
    }
}

@media (max-width: 991px) {
    .contact-flex-layout {
        flex-direction: column;
        gap: 60px;
    }

    .contact-info-side,
    .contact-form-side {
        width: 100%;
        flex: none;
    }
}

@media (max-width: 576px) {
    .contact-heading {
        font-size: 32px;
    }

    .contact-card-premium {
        padding: 25px;
    }

    .btn-premium-send {
        width: 100%;
        justify-content: center;
    }
}
/* Custom Grid Layout for Related Posts */
.related-posts-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

@media (max-width: 768px) {
    .related-posts-grid {
        grid-template-columns: 1fr;
    }
}

.related-post-item {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.related-post-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.related-post-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.related-post-image-wrapper {
    width: 100%;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
    position: relative;
    background-color: #f8f9fa;
}

.related-post-image,
.related-post-image-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.no-image-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #e9ecef;
    color: #adb5bd;
}

.related-post-content {
    padding: 1.25rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.related-post-title {
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 0.5rem;
    color: #333;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.related-post-summary {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #6c757d;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex-grow: 1;
}

.btn-read-more {
    display: inline-block;
    background-color: var(--purple-primary);
    color: #fff;
    font-size: 0.85rem;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    text-align: center;
    align-self: flex-start;
    transition: background-color 0.2s;
}

.btn-read-more:hover {
    background-color: var(--purple-dark);
}

/* Internal Links Styling */
.internal-link {
    color: var(--purple-primary);
    text-decoration: underline;
    text-decoration-style: dotted;
    text-underline-offset: 3px;
    transition: var(--transition);
    font-weight: 500;
}

.internal-link:hover {
    color: var(--purple-dark);
    text-decoration-style: solid;
    text-decoration-thickness: 2px;
}

