/* Reset and Base Styles */
:root {
    --primary-color: #1a4789;
    --secondary-color: #2d69c4;
    --accent-color: #32c5ff;
    --text-color: #333;
    --light-gray: #f5f5f5;
    --medium-gray: #666;
    --white: #ffffff;
    --max-width: 1200px;
    --header-height: 80px;
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
}

/* Section Spacing */
section {
    padding: 2.5rem 0;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--medium-gray);
    margin-bottom: 3rem;
    text-align: center;
}

/* Header and Navigation */
.header-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

/* Special styling for homepage */
.home .header-container {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    box-shadow: none;
}

.home .header-container.scrolled {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.home .logo {
    color: var(--white);
}

.home .header-container.scrolled .logo {
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 1.1rem;
}

.home .nav-links a {
    color: var(--white);
}

.home .header-container.scrolled .nav-links a {
    color: var(--text-color);
}

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

@media (max-width: 768px) {
    .header-container {
        padding: 1rem 1.5rem;
    }
    
    .nav-links {
        gap: 1.5rem;
    }
    
    .nav-links a {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 1.3rem;
    }
    
    .nav-links {
        gap: 1rem;
    }
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    background-size: cover;
    background-position: center;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/pattern.png') repeat;
    opacity: 0.15;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 2rem;
    margin-top: 4rem;
}

.hero-title {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2.5rem;
    line-height: 1.2;
}

.hero-title-main {
    font-size: 4.5rem;
    font-weight: 700;
    color: var(--white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    letter-spacing: -0.5px;
}

.hero-title-sub {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--accent-color);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-description {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto 3.5rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.95);
}

.hero-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    margin-top: 2rem;
    color: #ffffff;
}

.hero-cta p {
    color: #ffffff !important;
}

.cta-note {
    color: #ffffff !important;
    font-size: 1.1rem;
    margin-top: 1rem;
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.cta-button {
    display: inline-block;
    background-color: #ff6b35 !important;
    color: var(--white);
    padding: 1.25rem 3rem;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    background-color: #ff8557 !important;
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.trust-indicators {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
}

.trust-item i {
    color: var(--accent-color);
    font-size: 1.3rem;
}

/* Responsive adjustments for hero section */
@media (max-width: 1024px) {
    .hero-title-main {
        font-size: 4rem;
    }
    
    .hero-title-sub {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: 600px;
        padding: 1.5rem;
    }
    
    .hero-content {
        padding: 3rem 1.5rem;
        margin-top: 3rem;
    }
    
    .hero-title-main {
        font-size: 3rem;
    }
    
    .hero-title-sub {
        font-size: 1.8rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
        margin-bottom: 2.5rem;
    }
    
    .trust-indicators {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .cta-button {
        padding: 1.1rem 2.5rem;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .hero-title-main {
        font-size: 2.5rem;
    }
    
    .hero-title-sub {
        font-size: 1.5rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
}

/* Services Section */
.services {
    padding: 5rem 2rem;
    background: var(--light-gray);
}

.services-container {
    max-width: var(--max-width);
    margin: 0 auto;
}

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

.services .section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--medium-gray);
    margin-bottom: 3rem;
}

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

.service-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

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

.service-card i {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

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

/* Blog-specific styles */
.blog-content {
    max-width: var(--max-width);
    margin: 0 auto 60px;
    padding: 0 2rem;
}

.blog-content article {
    max-width: 800px;
    margin: 0 auto;
    padding-top: 160px;
}

.blog-content .section-title {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.blog-content .lead-paragraph {
    font-size: 1.25rem;
    line-height: 1.6;
    color: var(--text-color);
    margin-bottom: 3rem;
}

.content-section {
    margin-bottom: 2rem;
}

.content-section:last-child {
    margin-bottom: 2rem;
}

.content-section h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.content-section h3 {
    font-size: 1.5rem;
    color: var(--text-color);
    margin: 2rem 0 1rem;
}

.content-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.content-section .bullet-list,
.content-section .feature-list {
    margin: 1.5rem 0 2rem;
    padding-left: 1.25rem;
}

.content-section .bullet-list li {
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-item {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--light-gray);
    border-radius: 10px;
}

.feature-item h3 {
    margin-top: 0;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.feature-item .sub-list {
    margin: 1rem 0 0;
    padding-left: 1.25rem;
}

.feature-item .sub-list li {
    margin-bottom: 0.5rem;
}

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

.cta-section p {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--accent-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
    transition: background 0.3s ease;
}

.cta-button:hover {
    background: var(--accent-color-hover);
}

@media (max-width: 768px) {
    .blog-content {
        margin-top: 100px;
    }
    
    .blog-content .section-title {
        font-size: 2rem;
    }
    
    .content-section h2 {
        font-size: 1.75rem;
    }
    
    .content-section h3 {
        font-size: 1.35rem;
    }
    
    .feature-item {
        padding: 1.25rem;
    }
}

/* Blog Content Styles */
.blog-content h2 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.blog-content h3 {
    color: var(--secondary-color);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.blog-content p {
    margin-bottom: 1rem;
}

.blog-content ul {
    list-style: disc inside;
    margin-bottom: 1rem;
    padding-left: 1rem;
}

.blog-content ul li {
    margin-bottom: 0.5rem;
}

.blog-content table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 2rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

.blog-content th, .blog-content td {
    border: 1px solid var(--light-gray);
    padding: 1rem;
    text-align: left;
}

.blog-content th {
    background-color: var(--primary-color);
    color: var(--white);
    font-weight: bold;
}

.blog-content tr:nth-child(even) {
    background-color: var(--light-gray);
}

.blog-content em {
    color: var(--medium-gray);
    font-style: italic;
}

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

.benefit-card {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: 8px;
    transition: var(--transition);
}

.benefit-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

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

/* About Section */
.about {
    padding: 5rem 0;
    background: var(--white);
}

.about-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

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

.about-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.about-image {
    position: relative;
}

.headshot {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 1rem;
}

.about-quote {
    font-style: italic;
    font-size: 1.2rem;
    color: var(--primary-color);
    margin: 2rem 0;
    padding-left: 1.5rem;
    border-left: 4px solid var(--accent-color);
}

@media (max-width: 768px) {
    .about-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-image {
        order: -1;
        text-align: center;
    }
    
    .headshot {
        max-width: 300px;
    }
    
    .about-content h2 {
        font-size: 2rem;
    }
}

/* Why Choose Section */
.why-choose {
    padding: 5rem 2rem;
    background: var(--white);
}

.why-choose-container {
    max-width: var(--max-width);
    margin: 0 auto;
}

.why-choose h2 {
    text-align: center;
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.why-choose .section-subtitle {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    background: linear-gradient(120deg, var(--accent-color) 0%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 3rem;
}

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

.benefit-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    text-align: center;
}

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

.benefit-card i {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

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

.benefit-card p {
    color: var(--medium-gray);
    font-size: 1.1rem;
}

/* Contact Section */
.contact {
    background: var(--light-gray);
    padding: 5rem 0;
}

.contact h2 {
    text-align: center;
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.contact-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: var(--white);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

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

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

.submit-button {
    background-color: #ff6b35;
    color: var(--white);
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.submit-button:hover {
    background-color: #ff8557;
    transform: translateY(-2px);
}

.contact-info {
    text-align: center;
    margin-top: 3rem;
}

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

.contact-info .phone {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
    text-decoration: none;
}

.contact-info .email {
    color: var(--primary-color);
    text-decoration: none;
}

.contact-info .social-links {
    margin-top: 1.5rem;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.contact-info .social-links a {
    color: var(--primary-color);
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

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

@media (max-width: 768px) {
    .contact-form {
        padding: 2rem;
    }
    
    .contact h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .contact-form {
        padding: 1.5rem;
    }
    
    .submit-button {
        padding: 0.8rem 1.5rem;
    }
}

/* Trust Indicators */
.trust-indicators {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.trust-item i {
    color: var(--primary-color);
}

/* CTA Styles */
.hero-cta {
    margin: 2.5rem 0;
}

.cta-note {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--medium-gray);
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 4px;
    text-decoration: none;
    transition: var(--transition);
    font-weight: 600;
}

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

/* Responsive Adjustments */
@media (max-width: 768px) {
    section {
        padding: 3rem 0;
    }

    .hero {
        padding: 4rem 0;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

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

    .services-grid,
    .benefits-grid {
        gap: 1.5rem;
    }

    .trust-indicators {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
}

/* Media Queries */
@media (max-width: 768px) {
    .hero-title-main {
        font-size: 3rem;
    }
    
    .hero-title-sub {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .hero-title-main {
        font-size: 2.5rem;
    }
    
    .hero-title-sub {
        font-size: 1.75rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .cta-button {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .trust-indicators {
        flex-direction: column;
        gap: 1rem;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .nav-links {
        display: none;
    }

    .about-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-title h2 {
        font-size: 2.5rem;
        text-align: center;
    }

    .about-content {
        padding: 1.5rem;
    }

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

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-in {
    animation: fadeIn 0.6s ease forwards;
}

/* Footer */
footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 5rem 2rem 0;
}

.footer-container {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 4rem;
    padding-bottom: 4rem;
}

.footer-section h3 {
    color: var(--accent-color);
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background: var(--accent-color);
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
    line-height: 1.6;
}

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

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

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
}

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

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

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

.footer-bottom {
    text-align: center;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.1);
    margin-top: 2rem;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    footer {
        padding: 4rem 1.5rem 0;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding-bottom: 3rem;
    }

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

    .footer-section h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

/* Service Hero Section */
.service-hero {
    min-height: 60vh;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: calc(var(--header-height) + 2rem) 2rem 4rem;
}

.service-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/hero-pattern.svg') center/cover;
    opacity: 0.1;
}

.service-hero-content {
    max-width: var(--max-width);
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.service-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.service-subtitle {
    font-size: 1.5rem;
    color: var(--accent-color);
    margin-bottom: 2rem;
}

.service-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 2rem 0;
}

/* Service Overview Section */
.service-overview {
    padding: 5rem 2rem;
    background: var(--white);
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
}

.service-overview h2 {
    text-align: center;
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

/* Adjusted Service Features Styles */
.service-features {
    list-style: disc inside;
    padding-left: 1rem;
    margin: 10px 0;
    display: block;
    padding: 20px 10px;
}

.service-features li {
    margin-bottom: 0.5rem;
    padding: 0;
    background-color: transparent;
    border-radius: 0;
    box-shadow: none;
    transition: none;
}

/* Service Features Section */
.service-features {
    padding: 20px 10px;
    background: var(--light-gray);
}

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

.feature-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

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

.feature-card h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.feature-card h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background: var(--accent-color);
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.feature-list li {
    position: relative;
    padding-left: 0;
    margin-bottom: 1rem;
    color: var(--text-color);
    font-size: 1.1rem;
    list-style: none;
}

.feature-list,
.feature-list li {
    list-style: none !important;
    padding-left: 0 !important;
    margin-left: 0 !important;
}

.feature-list li::before {
    content: none !important;
}

.feature-list li::before {
    content: none;
}

/* Process Section */
.process-section {
    padding: 5rem 2rem;
    background: var(--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;
    position: relative;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--accent-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

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

.process-step p {
    color: var(--medium-gray);
    font-size: 1rem;
    line-height: 1.6;
}

/* FAQ Section */
.faq-section {
    padding: 5rem 2rem;
    background: var(--light-gray);
}

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

.faq-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.faq-item h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.faq-item p {
    color: var(--medium-gray);
    font-size: 1rem;
    line-height: 1.6;
}

/* Responsive Design for Service Pages */
@media (max-width: 768px) {
    .service-hero {
        min-height: 50vh;
        padding: calc(var(--header-height) + 1rem) 1.5rem 3rem;
    }

    .service-hero h1 {
        font-size: 2.5rem;
    }

    .service-subtitle {
        font-size: 1.2rem;
    }

    .service-overview,
    .service-features,
    .process-section,
    .faq-section {
        padding: 4rem 1.5rem;
    }

    .feature-card,
    .process-step,
    .faq-item {
        padding: 1.5rem;
    }

    .feature-card h3,
    .process-step h3,
    .faq-item h3 {
        font-size: 1.3rem;
    }
}

/* Blog Styles */
.blog-post {
    padding-top: var(--header-height);
}

.blog-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 4rem 0;
    margin-bottom: 3rem;
}

.blog-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.post-meta {
    display: flex;
    gap: 2rem;
    font-size: 0.9rem;
    opacity: 0.9;
}

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

.blog-content .intro {
    font-size: 1.2rem;
    line-height: 1.6;
    color: var(--medium-gray);
    margin-bottom: 2rem;
}

.checklist-item {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--light-gray);
}

.checklist-item h2 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.checklist-item p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.checklist-item ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.checklist-item ul li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

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

.cta-box {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 10px;
    margin: 2rem 0;
    text-align: center;
}

.cta-box p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: var(--text-color);
}

.conclusion {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 2px solid var(--light-gray);
}

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

@media (max-width: 768px) {
    .blog-header h1 {
        font-size: 2rem;
    }
    
    .blog-content .intro {
        font-size: 1.1rem;
    }
    
    .checklist-item h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .blog-header {
        padding: 3rem 0;
    }
    
    .blog-header h1 {
        font-size: 1.75rem;
    }
    
    .post-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* Blog Archive Styles */
.blog-archive {
    padding: 8rem 2rem 5rem;
    background: var(--light-gray);
}

.blog-archive h1 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-align: center;
}

.archive-description {
    text-align: center;
    color: var(--medium-gray);
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 3rem;
}

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

.blog-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

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

.blog-content {
    padding: 2rem;
}

.blog-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: var(--medium-gray);
}

.blog-category {
    color: var(--accent-color);
    font-weight: 500;
}

.blog-card h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.blog-card h2 a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

.blog-card h2 a:hover {
    color: var(--accent-color);
}

.blog-card p {
    color: var(--medium-gray);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.read-more {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

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

@media (max-width: 768px) {
    .blog-archive {
        padding: 6rem 1rem 3rem;
    }
    
    .blog-archive h1 {
        font-size: 2.5rem;
    }
    
    .archive-description {
        font-size: 1.1rem;
    }
}

/* Blog Post Styles */
.lead-paragraph {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 2.5rem;
}

.section-title {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.content-section {
    margin-bottom: 1rem;
}

.feature-list {
    list-style: none;
    padding-left: 0;
}

.feature-item {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--light-gray);
    border-radius: 8px;
}

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

.sub-list {
    list-style: none;
    padding-left: 1.5rem;
}

.sub-list li {
    margin-bottom: 0.75rem;
    position: relative;
    padding-left: 1.25rem;
}

.sub-list li:before {
    content: "•";
    color: var(--accent-color);
    position: absolute;
    left: 0;
}

.bullet-list {
    list-style: none;
    padding-left: 1.25rem;
}

.bullet-list li {
    margin-bottom: 0.75rem;
    position: relative;
    padding-left: 1.25rem;
}

.bullet-list li:before {
    content: "→";
    color: var(--accent-color);
    position: absolute;
    left: 0;
}

/* Utility Classes */
.mb-5 {
    margin-bottom: 2rem;
}

.mt-4 {
    margin-top: 2rem;
}

.mt-3 {
    margin-top: 1.5rem;
}

.mt-2 {
    margin-top: 1rem;
}

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

/* Arrow List Styles */
.arrow-list {
    list-style: none;
    margin: 0 0 1.5rem 0;
    padding: 0;
}
.arrow-list li {
    position: relative;
    list-style-type: none;
    list-style-position: inside;
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    font-size: 1rem;
    color: var(--text-color);
}
.arrow-list li::before {
    content: '\2192'; /* Unicode right arrow */
    position: absolute;
    left: 0;
    top: 0.1em;
    color: var(--accent-color);
    font-size: 1.1em;
    font-weight: bold;
    line-height: 1;
    display: inline-block;
}
/* Remove arrow for li containing only a strong tag (e.g. 'Pros:' or 'Cons:') */
.arrow-list li.no-arrow::before {
    content: none;
    display: none;
}

/* Reviews Section Styles */
.reviews {
    background-color: #f9f9f9;
    padding: 3rem 1.5rem;
    text-align: center;
}

.reviews h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

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

.reviews-grid {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.review-card {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    max-width: 500px;
    flex: 1 1 45%;
}

.review-preview {
    font-style: italic;
    color: #555;
}

.review-author {
    font-weight: bold;
    margin-top: 1rem;
}

.read-more {
    background-color: #1a4789;
    color: #fff;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 1rem;
}

.read-more:hover {
    background-color: #2d69c4;
}

.stars {
    font-size: 1.5rem;
    color: #FFD700;
    margin-bottom: 0.5rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}
