:root {
    --primary-color: #FF8C00;
    --secondary-color: #FFD700;
    --accent-color: #FFA500;
    --dark-color: #2C3E50;
    --light-color: #F8F9FA;
    --white: #FFFFFF;
    --text-dark: #333333;
    --text-light: #666666;
    --gradient-primary: linear-gradient(135deg, #FF8C00 0%, #FFD700 100%);
    --gradient-secondary: linear-gradient(135deg, #FFA500 0%, #FF8C00 100%);
    --shadow: 0 10px 30px rgba(255, 140, 0, 0.1);
    --shadow-hover: 0 15px 40px rgba(255, 140, 0, 0.2);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    padding: 1rem 0;
}

.navbar-brand {
    font-weight: bold;
    font-size: 1.5rem;
    color: var(--primary-color) !important;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-link {
    color: var(--text-dark) !important;
    font-weight: 500;
    margin: 0 0.5rem;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color) !important;
}

.hero-banner {
    background: var(--gradient-primary);
    padding: 150px 0 100px;
    position: relative;
    overflow: hidden;
}

.hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.05)"/><circle cx="20" cy="60" r="0.5" fill="rgba(255,255,255,0.05)"/><circle cx="80" cy="40" r="0.5" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.hero-banner__content {
    position: relative;
    z-index: 2;
}

.hero-banner__content h4 {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.hero-banner__content h1 {
    color: var(--white);
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-banner__content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.button {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
}

.button-hero {
    background: var(--white);
    color: var(--primary-color);
    box-shadow: var(--shadow);
}

.button-hero:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
    color: var(--primary-color);
}

.hero-banner__img {
    position: relative;
    z-index: 2;
}

.hero-banner__img img {
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.pet_care_section {
    padding: 100px 0;
    background: var(--white);
}

.pet_image img {
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
    width: 100%;
}

.pet_image:hover img {
    transform: scale(1.05);
}

.section_header h3 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

.section_header h3 span {
    color: var(--primary-color);
}

.section_header p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.boxed-button3 {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}

.boxed-button3:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
    color: var(--white);
}

.pricing-section {
    padding: 100px 0;
    background: var(--light-color);
}

.main_title {
    text-align: center;
    margin-bottom: 4rem;
}

.main_title h2 {
    font-size: 3rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.main_title p {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.pricing-item {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
}

.pricing-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient-primary);
}

.pricing-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.pricing-item.featured {
    transform: scale(1.05);
    border: 3px solid var(--primary-color);
}

.pricing-item.featured::before {
    height: 8px;
}

.pricing-header h4 {
    font-size: 1.5rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.pricing-header h1 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.pricing-header h1 span {
    font-size: 1.2rem;
    color: var(--text-light);
}

.pricing-list {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing-list li {
    padding: 0.75rem 0;
    color: var(--text-dark);
    position: relative;
    padding-left: 2rem;
}

.pricing-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.2rem;
}

.pricing-btn {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
    width: 80%;
}

.pricing-btn:hover {
    transform: translateY(-2px);
    color: var(--white);
}

.featured-btn {
    background: var(--dark-color);
}

.feature-showcase-section {
    padding: 100px 0;
    background: var(--gradient-primary);
    text-align: center;
}

.feature-showcase {
    max-width: 800px;
    margin: 0 auto;
}

.feature-showcase .main-title {
    color: var(--white);
    font-size: 3rem;
    margin-bottom: 3rem;
}

.feature-showcase ul {
    list-style: none;
    text-align: left;
}

.feature-showcase li {
    background: rgba(255, 255, 255, 0.1);
    margin: 1rem 0;
    padding: 1.5rem;
    border-radius: 15px;
    color: var(--white);
    font-size: 1.1rem;
    position: relative;
    padding-left: 3rem;
    backdrop-filter: blur(10px);
}

.feature-showcase li::before {
    content: '⭐';
    position: absolute;
    left: 1rem;
    font-size: 1.5rem;
}

.employee-area {
    padding: 100px 0;
    background: var(--white);
}

.section-top {
    margin-bottom: 4rem;
}

.section-top h2 {
    font-size: 3rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.section-top p {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.single-slide {
    background: var(--light-color);
    border-radius: 20px;
    padding: 2rem;
    margin: 1rem;
    box-shadow: var(--shadow);
}

.slide-img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 2rem;
    position: relative;
    overflow: hidden;
}

.slide-img::before {
    content: '👤';
    font-size: 4rem;
    color: var(--white);
}

.hover-state {
    position: absolute;
    bottom: -100%;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.8);
    color: var(--white);
    padding: 1rem;
    transition: bottom 0.3s ease;
    border-radius: 0 0 50% 50%;
}

.slide-img:hover .hover-state {
    bottom: 0;
}

.slide-text {
    flex: 1;
}

.slide-text i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.slide-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
    font-style: italic;
}

.faq_area {
    padding: 100px 0;
    background: var(--light-color);
}

.section_title h3 {
    font-size: 3rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.section_title p {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.mb-80 {
    margin-bottom: 5rem;
}

.single_faq {
    background: var(--white);
    border-radius: 15px;
    margin-bottom: 1rem;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.faq_header {
    padding: 1.5rem 2rem;
    cursor: pointer;
    background: var(--gradient-primary);
    color: var(--white);
    position: relative;
}

.faq_header::after {
    content: '+';
    position: absolute;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.faq_header.active::after {
    transform: translateY(-50%) rotate(45deg);
}

.faq_header h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
    padding-right: 3rem;
}

.faq_content {
    padding: 0 2rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq_content.active {
    padding: 1.5rem 2rem;
    max-height: 200px;
}

.faq_content p {
    color: var(--text-dark);
    line-height: 1.8;
    margin: 0;
}

.site-section {
    padding: 100px 0;
}

.bg-light {
    background: var(--light-color);
}

.text-black {
    color: var(--dark-color) !important;
    font-size: 3rem;
    margin-bottom: 3rem;
}

.font-weight-bold {
    font-weight: bold;
    color: var(--primary-color);
    font-size: 1.1rem;
}

.form-control {
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 1rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(255, 140, 0, 0.25);
}

.btn-primary {
    background: var(--gradient-primary);
    border: none;
    border-radius: 50px;
    padding: 1rem 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.footer {
    background: var(--dark-color);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-widget {
    margin-bottom: 2rem;
}

.footer-logo a {
    color: var(--white);
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-widget h4 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-widget p {
    color: #bbb;
    line-height: 1.8;
}

.footer-menu {
    list-style: none;
}

.footer-menu li {
    margin-bottom: 0.5rem;
}

.footer-menu a {
    color: #bbb;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-menu a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 2rem;
    margin-top: 2rem;
}

.footer-bottom p {
    color: #bbb;
    margin: 0;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark-color);
    color: var(--white);
    padding: 1rem 0;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.cookie-content p {
    margin: 0;
    flex: 1;
    margin-right: 2rem;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.cookie-buttons .btn {
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    border: none;
    cursor: pointer;
    font-weight: 600;
}

.cookie-buttons .btn-primary {
    background: var(--primary-color);
    color: var(--white);
}

.cookie-buttons .btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

@media (max-width: 768px) {
    .hero-banner__content h1 {
        font-size: 2.5rem;
    }
    
    .hero-banner__content p {
        font-size: 1rem;
    }
    
    .main_title h2 {
        font-size: 2rem;
    }
    
    .section_title h3 {
        font-size: 2rem;
    }
    
    .text-black {
        font-size: 2rem;
    }
    
    .pricing-item.featured {
        transform: none;
        margin-top: 2rem;
    }
    
    .single-slide {
        display: block !important;
    }
    
    .slide-img {
        margin: 0 auto 2rem;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-content p {
        margin-right: 0;
        margin-bottom: 1rem;
    }
}

.services-overview {
    padding: 100px 0;
    background: var(--white);
}

.service-item {
    background: var(--light-color);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    margin-bottom: 2rem;
    height: 100%;
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.service-icon {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

.service-item h3 {
    color: var(--dark-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-item p {
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    text-align: left;
    padding: 0;
}

.service-features li {
    padding: 0.5rem 0;
    color: var(--text-dark);
    position: relative;
    padding-left: 2rem;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.process-section {
    padding: 100px 0;
    background: var(--light-color);
}

.process-step {
    text-align: center;
    padding: 2rem 1rem;
    position: relative;
}

.step-number {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: bold;
    margin: 0 auto 2rem;
    position: relative;
    z-index: 2;
}

.process-step::after {
    content: '';
    position: absolute;
    top: 40px;
    left: 50%;
    width: 100%;
    height: 2px;
    background: var(--primary-color);
    z-index: 1;
    opacity: 0.3;
}

.process-step:last-child::after {
    display: none;
}

.process-step h4 {
    color: var(--dark-color);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.process-step p {
    color: var(--text-light);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .process-step::after {
        display: none;
    }
    
    .service-item {
        margin-bottom: 3rem;
    }
}

@media (max-width: 576px) {
    .hero-banner {
        padding: 120px 0 80px;
    }
    
    .hero-banner__content h1 {
        font-size: 2rem;
    }
    
    .section_header h3 {
        font-size: 2rem;
    }
    
    .pricing-header h1 {
        font-size: 2rem;
    }
    
    .feature-showcase .main-title {
        font-size: 2rem;
    }
    
    .service-item {
        padding: 2rem 1.5rem;
    }
    
    .process-step {
        margin-bottom: 3rem;
    }
}

.contact-info-section {
    padding: 100px 0;
    background: var(--white);
}

.contact-info-item {
    background: var(--light-color);
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    margin-bottom: 2rem;
    height: 100%;
}

.contact-info-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.contact-icon {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

.contact-info-item h3 {
    color: var(--dark-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.contact-info-item p {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.contact-info-item a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-info-item a:hover {
    color: var(--accent-color);
}

.consultation-benefits {
    padding: 100px 0;
    background: var(--light-color);
}

.benefits-content h2 {
    color: var(--dark-color);
    font-size: 2.5rem;
    margin-bottom: 3rem;
    font-weight: 600;
}

.benefits-list {
    list-style: none;
    padding: 0;
}

.benefits-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2.5rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.benefits-list li:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-hover);
}

.benefit-icon {
    margin-right: 1.5rem;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.benefit-text h4 {
    color: var(--dark-color);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.benefit-text p {
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
}

.benefits-image img {
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.contact-form {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.office-hours {
    padding: 100px 0;
    background: var(--white);
}

.hours-content h2 {
    color: var(--dark-color);
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: 600;
}

.hours-list {
    margin-bottom: 2rem;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    background: var(--light-color);
    border-radius: 10px;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.hours-item:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateX(10px);
}

.day {
    font-weight: 600;
}

.time {
    font-weight: 500;
}

.hours-note {
    color: var(--text-light);
    line-height: 1.6;
    font-style: italic;
    padding: 1.5rem;
    background: var(--light-color);
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
}

.response-time h3 {
    color: var(--dark-color);
    font-size: 2rem;
    margin-bottom: 2rem;
    font-weight: 600;
}

.response-item {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--light-color);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.response-item:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: scale(1.02);
}

.response-icon {
    font-size: 2rem;
    margin-right: 1.5rem;
    width: 60px;
    text-align: center;
}

.response-text h4 {
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.response-text p {
    margin: 0;
    opacity: 0.8;
}

.blog-section {
    padding: 100px 0;
    background: var(--white);
}

.blog-posts {
    margin-bottom: 3rem;
}

.blog-post {
    background: var(--light-color);
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 3rem;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.blog-post:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.featured-post {
    border: 3px solid var(--primary-color);
}

.post-image {
    position: relative;
    overflow: hidden;
}

.post-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-post:hover .post-image img {
    transform: scale(1.05);
}

.post-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--primary-color);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.post-content {
    padding: 2rem;
}

.post-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: var(--text-light);
}

.post-meta span {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.blog-post h2 {
    margin-bottom: 1rem;
}

.blog-post h2 a {
    color: var(--dark-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-post h2 a:hover {
    color: var(--primary-color);
}

.post-tags {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.tag {
    background: var(--primary-color);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    text-decoration: none;
    transition: background 0.3s ease;
}

.tag:hover {
    background: var(--accent-color);
    color: var(--white);
}

.read-more-btn {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.read-more-btn:hover {
    color: var(--accent-color);
    transform: translateX(5px);
}

.read-more-btn::after {
    content: '→';
    transition: transform 0.3s ease;
}

.read-more-btn:hover::after {
    transform: translateX(3px);
}

.blog-cta {
    background: var(--gradient-primary);
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    color: var(--white);
    margin-top: 3rem;
}

.cta-content h3 {
    margin-bottom: 1rem;
    font-size: 2rem;
}

.cta-content p {
    margin-bottom: 2rem;
    opacity: 0.9;
}

.blog-sidebar {
    position: sticky;
    top: 120px;
}

.sidebar-widget {
    background: var(--light-color);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: var(--shadow);
}

.sidebar-widget h4 {
    color: var(--dark-color);
    margin-bottom: 1.5rem;
    font-weight: 600;
    position: relative;
    padding-bottom: 0.5rem;
}

.sidebar-widget h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--primary-color);
}

.popular-posts {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.popular-post {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.post-thumb {
    width: 80px;
    height: 60px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
}

.post-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.post-info h5 {
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.post-info h5 a {
    color: var(--dark-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.post-info h5 a:hover {
    color: var(--primary-color);
}

.post-info .post-date {
    font-size: 0.8rem;
    color: var(--text-light);
}

.category-list {
    list-style: none;
    padding: 0;
}

.category-list li {
    margin-bottom: 0.75rem;
}

.category-list a {
    color: var(--text-dark);
    text-decoration: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.category-list a:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateX(5px);
}

.category-list span {
    font-size: 0.8rem;
    opacity: 0.7;
}

.newsletter-widget {
    background: var(--gradient-primary);
    color: var(--white);
}

.newsletter-widget h4::after {
    background: var(--white);
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.newsletter-form input {
    padding: 0.75rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
}

.newsletter-form button {
    background: var(--white);
    color: var(--primary-color);
    border: none;
    padding: 0.75rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background: var(--light-color);
    transform: translateY(-2px);
}

.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag-cloud .tag {
    background: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.tag-cloud .tag:hover {
    background: var(--primary-color);
    color: var(--white);
}

.article-hero {
    padding: 150px 0 50px;
    background: var(--gradient-primary);
    color: var(--white);
}

.article-header {
    text-align: center;
}

.breadcrumb-nav {
    margin-bottom: 1rem;
    opacity: 0.9;
}

.breadcrumb-nav a {
    color: var(--white);
    text-decoration: none;
}

.breadcrumb-nav a:hover {
    text-decoration: underline;
}

.article-category {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    font-weight: 600;
}

.article-header h1 {
    font-size: 3rem;
    margin-bottom: 2rem;
    font-weight: bold;
    line-height: 1.2;
}

.article-meta {
    display: flex;
    justify-content: center;
    gap: 2rem;
    opacity: 0.9;
}

.meta-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.meta-label {
    font-size: 0.8rem;
    opacity: 0.8;
}

.meta-value {
    font-weight: 600;
}

.article-content {
    padding: 50px 0;
    background: var(--white);
}

.article-body {
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow);
    overflow: hidden;
    margin-top: -100px;
    position: relative;
    z-index: 2;
}

.featured-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.content-text {
    padding: 3rem;
    line-height: 1.8;
}

.content-text .lead {
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--text-light);
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--light-color);
    border-radius: 15px;
    border-left: 5px solid var(--primary-color);
}

.content-text h2 {
    color: var(--dark-color);
    margin: 2.5rem 0 1rem;
    font-size: 2rem;
    font-weight: 600;
}

.content-text h3 {
    color: var(--dark-color);
    margin: 2rem 0 1rem;
    font-size: 1.5rem;
    font-weight: 600;
}

.content-text h4 {
    color: var(--primary-color);
    margin: 1.5rem 0 1rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.highlight-box,
.tip-box,
.warning-box,
.example-box,
.conclusion-box,
.action-steps,
.review-questions,
.sprint-process {
    background: var(--light-color);
    border-radius: 15px;
    padding: 2rem;
    margin: 2rem 0;
    border-left: 5px solid var(--primary-color);
}

.warning-box {
    border-left-color: #dc3545;
    background: #fff5f5;
}

.tip-box {
    border-left-color: #28a745;
    background: #f8fff8;
}

.example-box {
    border-left-color: #17a2b8;
    background: #f0fdff;
}

.conclusion-box {
    background: var(--gradient-primary);
    color: var(--white);
    text-align: center;
    border-left: none;
}

.conclusion-box h3 {
    color: var(--white);
    margin-bottom: 1rem;
}

.metrics-table {
    margin: 2rem 0;
}

.table {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.table th {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 1rem;
    font-weight: 600;
}

.table td {
    padding: 1rem;
    border-color: #eee;
}

.success-story {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
}

.success-story h3 {
    color: var(--white);
    margin-bottom: 1rem;
}

.article-tags {
    padding: 2rem 3rem 1rem;
    border-top: 2px solid var(--light-color);
}

.tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.article-navigation {
    padding: 1rem 3rem 3rem;
    display: flex;
    justify-content: space-between;
}

.nav-link {
    color: var(--text-dark);
    text-decoration: none;
    padding: 1rem;
    border-radius: 10px;
    background: var(--light-color);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    max-width: 250px;
}

.nav-link:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
}

.nav-label {
    font-size: 0.8rem;
    opacity: 0.8;
}

.nav-title {
    font-weight: 600;
}

.related-articles {
    padding: 100px 0;
    background: var(--light-color);
}

.section-title {
    text-align: center;
    color: var(--dark-color);
    margin-bottom: 3rem;
    font-size: 2.5rem;
    font-weight: 600;
}

.related-post {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.related-post:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.related-post .post-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.related-post .post-content {
    padding: 1.5rem;
}

.related-post h3 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.related-post h3 a {
    color: var(--dark-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.related-post h3 a:hover {
    color: var(--primary-color);
}

.related-post .read-more {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.related-post .read-more:hover {
    color: var(--accent-color);
    transform: translateX(5px);
}

.cta-card {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cta-card h3 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.btn-outline-primary {
    border: 2px solid var(--white);
    color: var(--white);
    background: transparent;
}

.btn-outline-primary:hover {
    background: var(--white);
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .article-header h1 {
        font-size: 2rem;
    }
    
    .article-meta {
        flex-direction: column;
        gap: 1rem;
    }
    
    .content-text {
        padding: 2rem 1.5rem;
    }
    
    .article-tags,
    .article-navigation {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
    
    .blog-sidebar {
        position: static;
        margin-top: 3rem;
    }
    
    .post-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
}

.legal-hero {
    padding: 150px 0 50px;
    background: var(--gradient-primary);
    color: var(--white);
}

.legal-header {
    text-align: center;
}

.legal-header .breadcrumb-nav {
    margin-bottom: 1rem;
    opacity: 0.9;
}

.legal-header .breadcrumb-nav a {
    color: var(--white);
    text-decoration: none;
}

.legal-header .breadcrumb-nav a:hover {
    text-decoration: underline;
}

.legal-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: bold;
}

.legal-header .lead {
    font-size: 1.3rem;
    opacity: 0.9;
    margin-bottom: 1.5rem;
}

.last-updated {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    display: inline-block;
    font-size: 0.9rem;
}

.legal-content {
    padding: 50px 0 100px;
    background: var(--white);
}

.legal-document {
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow);
    padding: 3rem;
    margin-top: -100px;
    position: relative;
    z-index: 2;
    line-height: 1.8;
}

.legal-document .section {
    margin-bottom: 3rem;
}

.legal-document .section:last-child {
    margin-bottom: 0;
}

.legal-document h2 {
    color: var(--dark-color);
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid var(--primary-color);
}

.legal-document h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    font-weight: 600;
    margin: 2rem 0 1rem;
}

.legal-document p {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.legal-document ul {
    margin: 1rem 0 1.5rem 1.5rem;
    color: var(--text-dark);
}

.legal-document li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.contact-info {
    background: var(--light-color);
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
    border-left: 5px solid var(--primary-color);
}

.contact-info p {
    margin-bottom: 0.5rem;
}

.contact-info a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.contact-info a:hover {
    color: var(--accent-color);
}

.policy-footer {
    background: var(--light-color);
    padding: 2rem;
    border-radius: 15px;
    margin-top: 3rem;
    text-align: center;
    border: 2px solid var(--primary-color);
}

.policy-footer p {
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--primary-color);
}

.thankyou-hero {
    padding: 150px 0 100px;
    background: var(--gradient-primary);
    color: var(--white);
    text-align: center;
}

.thankyou-content {
    max-width: 600px;
    margin: 0 auto;
}

.success-icon {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

.thankyou-content h1 {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.thankyou-content .lead {
    font-size: 1.3rem;
    opacity: 0.9;
    line-height: 1.6;
}

.thankyou-details {
    padding: 100px 0;
    background: var(--white);
}

.details-card {
    background: var(--light-color);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: var(--shadow);
    margin-top: -150px;
    position: relative;
    z-index: 2;
}

.details-card h2 {
    color: var(--dark-color);
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 3rem;
    text-align: center;
}

.next-steps {
    margin-bottom: 3rem;
}

.step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2.5rem;
    padding: 2rem;
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.step:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-hover);
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin-right: 2rem;
    flex-shrink: 0;
}

.step-content h3 {
    color: var(--dark-color);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.step-content p {
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
}

.contact-reminder {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
}

.contact-reminder h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.contact-reminder p {
    opacity: 0.9;
    margin-bottom: 2rem;
}

.contact-details {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem 2rem;
    border-radius: 50px;
    backdrop-filter: blur(10px);
}

.contact-icon {
    flex-shrink: 0;
}

.contact-info a {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
}

.contact-info a:hover {
    text-decoration: underline;
}

.while-you-wait {
    padding: 100px 0;
    background: var(--light-color);
}

.resource-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    margin-bottom: 2rem;
    height: 100%;
}

.resource-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.resource-icon {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

.resource-card h3 {
    color: var(--dark-color);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.resource-card p {
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.resource-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.resource-link:hover {
    color: var(--accent-color);
    transform: translateX(5px);
}

.resource-link::after {
    content: '→';
    transition: transform 0.3s ease;
}

.resource-link:hover::after {
    transform: translateX(3px);
}

.testimonial-preview {
    padding: 100px 0;
    background: var(--white);
}

.testimonial-content h2 {
    color: var(--dark-color);
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.testimonial-content blockquote {
    background: var(--light-color);
    padding: 2.5rem;
    border-radius: 20px;
    border-left: 5px solid var(--primary-color);
    margin: 2rem 0;
    position: relative;
}

.testimonial-content blockquote::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: var(--primary-color);
    font-weight: bold;
}

.testimonial-content blockquote p {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.testimonial-content cite {
    color: var(--primary-color);
    font-weight: 600;
    font-style: normal;
}

.rating {
    margin-top: 2rem;
}

.stars {
    color: #FFD700;
    font-size: 1.5rem;
    margin-right: 1rem;
}

.rating-text {
    color: var(--text-light);
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .legal-header h1 {
        font-size: 2rem;
    }
    
    .legal-document {
        padding: 2rem 1.5rem;
        margin-top: -50px;
    }
    
    .thankyou-content h1 {
        font-size: 2.5rem;
    }
    
    .details-card {
        padding: 2rem 1.5rem;
        margin-top: -100px;
    }
    
    .step {
        flex-direction: column;
        text-align: center;
    }
    
    .step-number {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .contact-details {
        flex-direction: column;
        gap: 1rem;
    }
    
    .contact-item {
        justify-content: center;
    }
}
