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

:root {
    --primary-color: #1a5490;
    --secondary-color: #2c7ac4;
    --accent-color: #f39c12;
    --text-dark: #2c3e50;
    --text-light: #ecf0f1;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #dee2e6;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    margin: 0;
    padding: 0;
}

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

/* Service Hero Section */
.service-hero {
    padding: 0;
    color: var(--text-light);
    margin-top: 85px;
    min-height: 120px;
    display: flex;
    align-items: center;
}

.service-hero.compact-hero {
    min-height: 100px;
}

.service-hero-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    padding: 0;
    line-height: 1;
}

.service-hero-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.1rem;
    text-align: center;
    line-height: 1;
}

.service-hero-subtitle {
    font-size: 1rem;
    text-align: center;
    margin: 0;
    line-height: 1;
}

.hero-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 0.5rem;
    width: 100%;
    max-width: 700px;
}

.hero-feature-grid .feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: transform 0.3s ease;
}

.hero-feature-grid .feature-item:hover {
    transform: translateY(-2px);
}

.hero-feature-grid .feature-item i {
    color: var(--accent-color);
}

.hero-cta {
    grid-column: 1 / -1;
    text-align: center;
    margin-top: 1rem;
}

.btn-light {
    background: var(--bg-white);
    color: var(--primary-color);
    padding: 0.75rem 2rem;
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-light:hover {
    background: var(--bg-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Navigation */
.navbar {
    background: var(--bg-white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0;
    text-decoration: none;
    cursor: pointer;
}

.logo-image {
    height: 60px;
    width: auto;
    margin-right: -8px;
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    margin: 0;
}

.nav-menu li {
    position: relative;
}

.nav-menu li:not(:last-child)::after {
    content: '|';
    position: absolute;
    right: -1.35rem;
    top: 50%;
    transform: translateY(-50%);
    color: #ddd;
    font-weight: 300;
}

.nav-menu>li>a,
.nav-menu>li>.services-link {
    color: #8b8b8b;
    text-decoration: none;
    font-weight: 400;
    font-size: 0.95rem;
    transition: color 0.3s;
    position: relative;
    display: block;
    padding: 0.5rem 0;
}

.nav-menu>li>a:hover,
.nav-menu>li>a.active,
.nav-menu>li>.services-link:hover {
    color: var(--text-dark);
}

.nav-menu>li>a.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--text-dark);
}

/* Dropdown Menu */
.nav-dropdown {
    position: relative;
}

.dropdown-toggle {
    display: none;
    color: #8b8b8b;
    cursor: pointer;
    padding: 0.5rem;
    font-size: 0.8rem;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    margin-top: 1rem;
    min-width: 900px;
    z-index: 1000;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    margin-top: 0.5rem;
}

.dropdown-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding: 2rem;
    gap: 2rem;
}

.dropdown-column {
    display: flex;
    flex-direction: column;
}

.dropdown-column h4 {
    color: var(--primary-color);
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--accent-color);
}

.dropdown-column a {
    color: #666;
    text-decoration: none;
    padding: 0.5rem 0;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.dropdown-column a:hover {
    color: var(--primary-color);
    padding-left: 0.5rem;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-search,
.mobile-search {
    color: #8b8b8b;
    font-size: 1.1rem;
    cursor: pointer;
    transition: color 0.3s;
}

.nav-search:hover,
.mobile-search:hover {
    color: var(--text-dark);
}

.nav-socials {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.nav-socials a {
    color: #8b8b8b;
    font-size: 1.1rem;
    transition: color 0.3s;
}

.nav-socials a:hover {
    color: var(--text-dark);
}

/* Mobile Icons */
.mobile-icons {
    display: none;
    align-items: center;
    gap: 1rem;
}

.mobile-search {
    font-size: 1.2rem;
}

/* Search Box (Small) */
.search-box {
    position: absolute;
    width: 100%;
    top: 100%;
    left: 0;
    background: #f5f5f5;
    border-top: 1px solid #e5e5e5;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 999;
}

.search-box.active {
    max-height: 150px;
    opacity: 1;
    padding: 1.5rem 0;
}

.search-box-content {
    display: flex;
    max-width: 500px;
    background: white;
    border: 1px solid #ddd;
    border-radius: 4px;
    overflow: hidden;
}

.search-box .search-input {
    flex: 1;
    padding: 0.875rem 1rem;
    border: none;
    font-size: 1rem;
    outline: none;
}

.search-btn {
    background: #4ECDC4;
    border: none;
    color: white;
    padding: 0 1.5rem;
    cursor: pointer;
    transition: background 0.3s;
}

.search-btn:hover {
    background: #3db8b0;
}

.search-btn i {
    font-size: 1.1rem;
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 24px;
    cursor: pointer;
    position: relative;
}

.hamburger span {
    width: 100%;
    height: 3px;
    background: var(--primary-color);
    transition: all 0.3s ease;
    transform-origin: center;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(10.5px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-10.5px) rotate(-45deg);
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--text-light);
    padding: 60px 0 40px;
    margin-top: 92px;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.95;
}

/* Hero Slider */
.hero-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    z-index: 1;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 1;
}

.slide.active {
    opacity: 1;
    z-index: 2;
}

.slide-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Adjust first slide to show people's heads properly */
.slide:first-child .slide-image {
    background-position: center top;
}

.slide-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.slide-content {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    align-items: flex-end;
    padding-top: 0;
    padding-bottom: 120px;
}

.slide-content .container {
    max-width: 800px;
}

.slide-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    letter-spacing: 1px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease 0.3s, transform 0.8s ease 0.3s;
}

.slide.active .slide-title {
    opacity: 1;
    transform: translateY(0);
}

.slide-subtitle {
    font-size: 1.4rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease 0.5s, transform 0.8s ease 0.5s;
}

.slide.active .slide-subtitle {
    opacity: 0.95;
    transform: translateY(0);
}

.slide-content .btn {
    background: #4ECDC4;
    color: white;
    padding: 16px 40px;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease 0.7s, transform 0.8s ease 0.7s;
}

.slide.active .slide-content .btn {
    opacity: 1;
    transform: translateY(0);
}

.slide-content .btn:hover {
    background: #3db8b0;
    transform: translateY(-2px);
}

/* Slider Arrows */
.slider-arrow {
    position: absolute;
    top: 60%;
    transform: translateY(-50%);
    z-index: 100;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 0;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-arrow:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.8);
}

.slider-arrow-left {
    left: 20px;
}

.slider-arrow-right {
    right: 20px;
}

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
    display: flex;
    gap: 12px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s;
}

.dot.active,
.dot:hover {
    background: white;
    transform: scale(1.2);
}

/* Old Hero Section - Keep for other pages */
.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--text-light);
    padding: 150px 0 100px;
    margin-top: 93px;
}

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

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 14px 32px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    display: inline-block;
}

.btn-primary {
    background: var(--accent-color);
    color: var(--text-dark);
}

.btn-primary:hover {
    background: #e67e22;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(243, 156, 18, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--text-light);
    border: 2px solid var(--text-light);
}

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

/* Services Section */
.services {
    position: relative;
    padding: 80px 0;
    background: var(--bg-light);
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
}

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

.service-card {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
}

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

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.service-icon i {
    font-size: 2rem;
    color: var(--text-light);
}

.service-card h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-card p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.service-features {
    list-style: none;
    text-align: left;
    margin-top: 1.5rem;
}

.service-features li {
    padding: 0.5rem 0;
    color: #666;
    position: relative;
    padding-left: 1.5rem;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

/* Home Services Grid (TGG Style) */
.home-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem 2rem;
    margin-top: 3rem;
}

.home-service-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    transition: transform 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

.home-service-card.animate-in {
    animation: fadeInUp 0.6s ease forwards;
}

.home-service-card:hover {
    transform: translateY(-5px) !important;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.home-service-image {
    width: 100%;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.home-service-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.home-service-content {
    flex: 1;
}

.home-service-content h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 0.75rem;
}

.home-service-content p {
    color: #666;
    line-height: 1.7;
    font-size: 0.95rem;
}

/* About Section */
.about {
    padding: 80px 0;
    background: var(--bg-white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

.about-text h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.about-text p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-size: 1.05rem;
}

.about-stats-section {
    margin-top: 4rem;
}

.about-stats {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.stat {
    text-align: center;
    min-width: 150px;
}

.stat h3 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

.about-image {
    display: flex;
    justify-content: center;
}

.about-image img {
    max-width: 400px;
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.image-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-placeholder i {
    font-size: 8rem;
    color: rgba(255, 255, 255, 0.3);
}

/* Why Choose Us / Features */
.why-choose {
    padding: 80px 0;
    background: var(--bg-white);
    position: relative;
}

.why-choose .section-title {
    color: var(--primary-color);
    margin-bottom: 2rem;
    position: relative;
}

.why-choose .section-subtitle {
    color: #666;
    margin-bottom: 3rem;
}

/* Homepage version */
.why-choose-home {
    padding: 80px 0;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
        url('https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?w=1600&h=900&fit=crop');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.why-choose-home .section-title {
    color: var(--text-light);
    margin-bottom: 2rem;
    position: relative;
}

.why-choose-home .section-subtitle {
    color: var(--text-light);
    opacity: 0.9;
    margin-bottom: 3rem;
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem 3rem;
}

.why-us-item {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.why-us-icon {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.why-us-item:hover .why-us-icon {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.05);
}

.why-us-icon i {
    font-size: 2rem;
    color: var(--text-light);
}

.why-us-content {
    flex: 1;
}

.why-us-content h3 {
    color: var(--text-light);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.4;
    letter-spacing: 0.5px;
}

.why-us-content p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    font-size: 1rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

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

@media (max-width: 580px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.feature-item {
    text-align: center;
    padding: 2rem;
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    display: inline-block;
}

.feature-item h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.feature-item p {
    color: #666;
    line-height: 1.6;
}

/* Homepage feature items */
.why-choose-home .feature-item {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 2rem;
}

.why-choose-home .feature-item:hover {
    background: rgba(255, 255, 255, 0.15);
}

.why-choose-home .feature-item i {
    color: var(--accent-color);
}

.why-choose-home .feature-item h3 {
    color: var(--text-light);
}

.why-choose-home .feature-item p {
    color: rgba(255, 255, 255, 0.9);
}

.feature-item h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-weight: 600;
    line-height: 1.3;
}

.feature-item p {
    color: #666;
    line-height: 1.7;
    font-size: 1rem;
    margin: 0;
}

/* Mission & Values */
.mission-values {
    padding: 80px 0;
    background: var(--bg-light);
}

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

.value-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s;
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.value-icon i {
    font-size: 1.8rem;
    color: var(--text-light);
}

.value-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.value-card p {
    color: #666;
    line-height: 1.6;
}

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

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

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

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

.contact-info>p {
    color: #666;
    margin-bottom: 1rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    width: 40px;
    height: 40px;
    background: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-item h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.contact-item p {
    color: #666;
    line-height: 1.6;
    margin: 0.2rem 0;
}

.contact-item p.small {
    font-size: 0.9rem;
    color: #999;
}

.social-contact {
    margin-top: 1rem;
}

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

.contact-form {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.contact-form h2 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.contact-form>p {
    color: #666;
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

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

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

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

.form-group textarea {
    resize: vertical;
}

.contact-form .btn {
    width: 100%;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 80px 0;
    text-align: center;
    color: var(--text-light);
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-section .btn-primary {
    background: var(--bg-white);
    color: var(--primary-color);
}

.cta-section .btn-primary:hover {
    background: var(--accent-color);
    color: var(--text-dark);
}

/* Insights Page */
.insights-section {
    padding: 80px 0;
    background: var(--bg-light);
}

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

.insight-card {
    background: var(--bg-white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.insight-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.insight-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.insight-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.insight-card:hover .insight-image img {
    transform: scale(1.05);
}

.insight-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.insight-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.insight-category {
    background: var(--primary-color);
    color: var(--text-light);
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.insight-date {
    color: #999;
    font-size: 0.85rem;
}

.insight-content h3 {
    font-size: 1.25rem;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.insight-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
    flex-grow: 1;
}

.insight-link {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s ease;
}

.insight-link:hover {
    gap: 0.75rem;
}

.insight-link i {
    font-size: 0.85rem;
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: var(--text-light);
    padding: 3rem 0 1.5rem;
}

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--text-light);
}

.footer-section p {
    color: #bbb;
    line-height: 1.8;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #bbb;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: var(--accent-color);
}

.social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    text-decoration: none;
    transition: background 0.3s;
}

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

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

/* ========================================
   SERVICE PAGE STYLES - Enhanced Components
   ======================================== */

/* Service Hero Section with Background Image */
.service-hero {
    position: relative;
    min-height: 350px;
    margin-top: 93px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.service-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 84, 144, 0.92) 0%, rgba(44, 122, 196, 0.88) 100%);
    z-index: 1;
}

.service-hero .container {
    position: relative;
    z-index: 2;
}

.service-hero-content {
    max-width: 900px;
    padding: 2.5rem 0;
}

.service-hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.15;
    animation: fadeInUp 0.8s ease;
}

.service-hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    opacity: 0.95;
    line-height: 1.5;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.service-hero-features {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.service-hero-features .feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-light);
    font-size: 1.05rem;
    font-weight: 500;
}

.service-hero-features .feature-item i {
    color: var(--accent-color);
    font-size: 1.3rem;
}

.service-hero .btn {
    animation: fadeInUp 0.8s ease 0.6s both;
}

/* Page Content Wrapper */
.page-content {
    padding: 0px 0 0;
    background: var(--bg-white);
}

/* Service Details Section */
.service-details-section {
    padding: 2rem 0;
}

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

/* Split Content Section (Image + Text Alternating) */
.split-section {
    padding: 80px 0;
}

.split-section:nth-child(even) {
    background: var(--bg-light);
}

.split-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.split-content.reverse {
    direction: rtl;
}

.split-content.reverse>* {
    direction: ltr;
}

.split-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    position: relative;
}

.split-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.split-image:hover img {
    transform: scale(1.05);
}

.split-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 84, 144, 0.2), rgba(44, 122, 196, 0.1));
    opacity: 0;
    transition: opacity 0.3s;
}

.split-image:hover::after {
    opacity: 1;
}

.split-text h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

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

.split-text p {
    color: #666;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.split-text ul {
    list-style: none;
    padding: 0;
}

.split-text ul li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: #666;
    font-size: 1.05rem;
}

.split-text ul li::before {
    content: '\f058';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 1.2rem;
}

/* Process Section */
.process-section-alt {
    padding: 80px 0;
    background: var(--bg-white);
}

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

.process-step {
    text-align: center;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 10px;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.process-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s;
}

.process-step:hover::before {
    transform: scaleX(1);
}

.process-step:hover {
    background: var(--bg-white);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.process-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-light);
    box-shadow: 0 5px 15px rgba(26, 84, 144, 0.3);
}

.process-step h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.process-step p {
    color: #666;
    line-height: 1.7;
}

/* FAQ Accordion */
.faq-section {
    padding: 80px 0;
    background: var(--bg-white);
}

.faq-container {
    max-width: 900px;
    margin: 3rem auto 0;
}

.faq-item {
    background: var(--bg-light);
    border-radius: 10px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s;
}

.faq-item.active {
    background: var(--bg-white);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.faq-question {
    padding: 1.5rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--primary-color);
    transition: all 0.3s;
}

.faq-question:hover {
    color: var(--secondary-color);
}

.faq-question i {
    font-size: 1.2rem;
    transition: transform 0.3s;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 2rem 1.5rem;
}

.faq-answer p {
    color: #666;
    line-height: 1.8;
    font-size: 1.05rem;
}

/* Services Grid Section Enhancement */
.services-grid-section {
    padding: 2rem 0;
    background: var(--bg-light);
}

/* Animation Keyframes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Scroll Animation Classes */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 968px) {
    .nav-socials {
        display: none;
    }

    .nav-center {
        gap: 1.5rem;
    }

    .nav-menu {
        gap: 1.5rem;
    }

    .dropdown-menu {
        min-width: 700px;
    }

    .dropdown-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-us-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem 2rem;
    }
}

@media (max-width: 768px) {
    .process-steps {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }

    .process-step {
        padding: 1.5rem;
    }

    .process-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .process-step h3 {
        font-size: 1.2rem;
        margin-bottom: 0.75rem;
    }

    .process-step p {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .hamburger {
        display: flex;
    }

    .mobile-icons {
        display: flex;
    }

    .top-bar {
        padding: 0.3rem 0;
    }

    .top-bar-content {
        justify-content: center;
    }

    .phone-link {
        font-size: 0.95rem;
    }

    .navbar {
        top: 0;
    }

    .nav-wrapper {
        padding: 0.8rem 0;
    }

    .page-header {
        margin-top: 67px;
    }

    .logo {
        gap: 0.5rem;
    }

    .logo-image {
        height: 35px;
    }

    .logo-text {
        font-size: 1.2rem;
    }

    .nav-center {
        position: fixed;
        left: -100%;
        top: 60px;
        flex-direction: column;
        background: var(--bg-white);
        width: 100%;
        transition: left 0.4s ease;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
        max-height: calc(100vh - 80px);
        overflow-y: auto;
    }

    .nav-center.active {
        left: 0;
    }

    .nav-menu {
        flex-direction: column;
        text-align: center;
        width: 100%;
        gap: 0;
    }

    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid #f0f0f0;
    }

    .nav-menu li:not(:last-child)::after {
        display: none;
    }

    .nav-menu>li>a {
        display: block;
        padding: 1rem 1.5rem;
        width: 100%;
    }

    .nav-menu>li>a.active::after {
        display: none;
    }

    .nav-dropdown {
        display: block;
        width: 100%;
        position: relative;
    }

    .nav-dropdown .services-link {
        display: block;
        padding: 1rem 1.5rem;
        width: 100%;
        cursor: pointer;
        text-align: center;
    }

    .dropdown-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        position: absolute;
        right: 1.5rem;
        top: 50%;
        transform: translateY(-50%);
        width: 30px;
        height: 30px;
    }

    .dropdown-toggle i {
        transition: transform 0.3s ease;
        font-size: 0.8rem;
        transform: rotate(0deg);
    }

    .nav-dropdown.active .dropdown-toggle i {
        transform: rotate(180deg);
    }

    .dropdown-menu {
        position: static;
        transform: none;
        box-shadow: none;
        min-width: auto;
        width: 100%;
        margin-top: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease;
        background: #f8f9fa;
        opacity: 0;
        visibility: hidden;
    }

    .nav-dropdown.active .dropdown-menu {
        max-height: 2000px;
        opacity: 1;
        visibility: visible;
    }

    .dropdown-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        padding: 1.5rem 1rem;
        gap: 1.5rem;
    }

    .dropdown-column {
        padding: 0;
        text-align: left;
    }

    .dropdown-column h4 {
        font-size: 0.85rem;
        margin-bottom: 0.75rem;
        padding-bottom: 0.5rem;
        border-bottom: 2px solid var(--accent-color);
        color: var(--primary-color);
    }

    .dropdown-column a {
        padding: 0.5rem 0;
        text-align: left;
        display: block;
        font-size: 0.85rem;
        color: #666;
    }

    .dropdown-column a:hover {
        color: var(--primary-color);
        padding-left: 0.5rem;
    }

    .nav-right {
        display: none;
    }

    .search-box-content {
        max-width: 100%;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .about-content,
    .contact-content,
    .split-content {
        grid-template-columns: 1fr;
    }

    .about-image img {
        max-width: 100%;
        width: 100%;
    }

    .about-stats {
        justify-content: space-around;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .home-services-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .why-us-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .why-us-item {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
        align-items: center;
    }

    .why-choose {
        background-attachment: scroll;
    }

    .features-grid,
    .values-grid {
        grid-template-columns: 1fr;
    }

    .split-image img {
        height: 300px;
    }

    .slide-content {
        padding-bottom: 100px;
    }
}

@media (max-width: 480px) {
    .process-steps {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .process-step {
        max-width: 100%;
        margin: 0 auto;
    }

    .process-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }

    .hero-title {
        font-size: 1.6rem;
    }

    .page-header h1 {
        font-size: 1.8rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .about-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .slide-title {
        font-size: 1.8rem;
    }

    .slide-subtitle {
        font-size: 1rem;
    }

    .slide-content {
        padding-bottom: 80px;
    }

    .slider-arrow {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .slider-arrow-left {
        left: 10px;
    }

    .slider-arrow-right {
        right: 10px;
    }

    .hero-slider {
        height: 500px;
    }
}

/* Appointment Page Styles */
.appointment-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.appointment-container {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.appointment-form {
    background: white;
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.appointment-form h2 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 2rem;
}

.form-intro {
    color: #666;
    margin-bottom: 2rem;
    font-size: 1rem;
}

.form-section {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e0e0e0;
}

.form-section:last-of-type {
    border-bottom: none;
}

.form-section h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-section h3 i {
    color: var(--accent-color);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.95rem;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group input[type="date"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input[type="date"] {
    cursor: pointer;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(26, 77, 46, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.btn-large {
    width: 100%;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

/* Appointment Info Sidebar */
.appointment-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    border-left: 4px solid var(--accent-color);
}

.info-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.info-card h3 i {
    color: var(--accent-color);
}

.info-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-card ul li {
    padding: 0.5rem 0;
    color: var(--text-dark);
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.info-card ul li i {
    color: var(--accent-color);
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.info-card p {
    margin: 0.5rem 0;
    color: var(--text-dark);
    line-height: 1.6;
}

.info-card p i {
    color: var(--accent-color);
    margin-right: 0.5rem;
}

.info-card p strong {
    color: var(--primary-color);
}

/* Responsive Design for Appointment Page */
@media (max-width: 968px) {
    .appointment-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .appointment-info {
        order: -1;
    }
}

@media (max-width: 768px) {
    .appointment-form {
        padding: 1.5rem;
    }

    .appointment-form h2 {
        font-size: 1.5rem;
    }

    .form-section h3 {
        font-size: 1.1rem;
    }

    .info-card {
        padding: 1.5rem;
    }

    .insights-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* Article Header Styles */
.article-header {
    background-size: cover !important;
    background-position: center !important;
    color: white;
    /* Layout handled by .page-header */
    position: relative;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.article-header .container {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.article-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-align: center;
    width: 100%;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.article-meta {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.article-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.article-meta i {
    color: var(--accent-color);
}

/* Article Content Styles */
.article-content {
    max-width: 800px;
    margin: 60px auto;
    padding: 0 20px;
    line-height: 1.8;
}

.article-content .container {
    max-width: 100%;
    padding: 0;
}

.article-content .lead {
    font-size: 1.25rem;
    font-weight: 400;
    color: #555;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.article-content h2 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.article-content h3 {
    font-size: 1.4rem;
    color: var(--text-dark);
    margin-top: 2rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.article-content p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
}

.article-content ul,
.article-content ol {
    margin-bottom: 1.5rem;
    margin-left: 2rem;
}

.article-content li {
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
    line-height: 1.7;
    color: #333;
}

.article-content li strong {
    color: var(--primary-color);
}

.article-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 30px 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Share Buttons */
.share-buttons {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid var(--border-color);
}

.share-buttons span {
    font-weight: 600;
    color: var(--text-dark);
    margin-right: 5px;
}

.share-buttons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50% !important;
    background-color: var(--bg-light);
    color: var(--primary-color);
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    font-size: 1.1rem;
    text-decoration: none;
    flex-shrink: 0;
}

.share-buttons a:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Individual social media colors on hover */
.share-buttons a[aria-label*="Facebook"]:hover {
    background-color: #1877f2;
    color: white;
}

.share-buttons a[aria-label*="Twitter"]:hover {
    background-color: #1da1f2;
    color: white;
}

.share-buttons a[aria-label*="LinkedIn"]:hover {
    background-color: #0a66c2;
    color: white;
}

.share-buttons a[aria-label*="Email"]:hover {
    background-color: #ea4335;
    color: white;
}

/* Responsive Article Styles */
@media (max-width: 768px) {
    .article-header h1 {
        font-size: 2rem;
    }

    .article-content {
        margin: 40px auto;
    }

    .article-content .lead {
        font-size: 1.1rem;
    }

    .article-content h2 {
        font-size: 1.5rem;
    }

    .article-content h3 {
        font-size: 1.2rem;
    }

    .article-content p,
    .article-content li {
        font-size: 1rem;
    }

    .article-meta {
        gap: 15px;
        font-size: 0.9rem;
    }

    .share-buttons {
        flex-wrap: wrap;
        gap: 10px;
    }
}