.seo-content {
    padding: 4rem 0;
    background: var(--bg-primary)
}

.hero {
    padding-top: 160px
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-top: 0;
    margin-bottom: 1rem;
    text-align: center;
    position: relative;
    padding-bottom: 1rem;
    line-height: 1.2
}

.hero-subtitle {
    text-align: center;
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2rem
}

.hero-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
    box-shadow: 0 2px 4px rgba(245, 158, 11, 0.3)
}

@media(max-width:768px) {
    .hero-title {
        font-size: 2rem
    }
}

.content-article {
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
    color: var(--text-primary);
    padding: 0 1rem
}

.lead-paragraph {
    font-size: 1.25rem;
    line-height: 1.9;
    margin-bottom: 2.5rem;
    padding: 2rem;
    background: var(--bg-secondary);
    border: 2px solid var(--border-color);
    border-left: 5px solid var(--primary-color);
    border-radius: 8px;
    color: var(--text-primary);
    font-weight: 500;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05)
}

.content-article h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-top: 4rem;
    margin-bottom: 2rem;
    padding-bottom: .75rem;
    color: var(--text-primary);
    border-bottom: 3px solid var(--primary-color);
    position: relative
}

.content-article h2:first-of-type {
    margin-top: 2rem
}

.content-article h2::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 100px;
    height: 3px;
    background: var(--secondary-color)
}

.content-article h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--text-primary)
}

.content-article p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: var(--text-primary)
}

.content-article a {
    color: var(--primary-color);
    text-decoration: underline;
    transition: color .3s ease;
    font-weight: 500
}

.content-article a:hover {
    color: var(--secondary-color)
}

.features-list {
    display: grid;
    gap: 2rem;
    margin: 3rem 0
}

.feature-item {
    padding: 2rem;
    background: var(--bg-secondary);
    border-radius: 12px;
    border: 2px solid var(--border-color);
    border-left: 5px solid var(--primary-color);
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05)
}

.feature-item:hover {
    transform: translateX(8px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    border-left-color: var(--secondary-color);
    border-color: var(--primary-color)
}

.feature-item h3 {
    margin-top: 0;
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 1rem
}

.feature-item p {
    margin-bottom: 0;
    font-size: 1.05rem;
    line-height: 1.7
}

.services-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
    background: var(--bg-secondary);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05)
}

.services-list li {
    padding: 1.2rem 0;
    padding-left: 2.5rem;
    position: relative;
    font-size: 1.1rem;
    border-bottom: 1px solid var(--border-color)
}

.services-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.5rem;
    top: 50%;
    transform: translateY(-50%)
}

.services-list li:last-child {
    border-bottom: none;
    padding-bottom: 0
}

.cta-section {
    margin-top: 4rem;
    padding: 3rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 16px;
    text-align: center;
    color: white;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15)
}

.cta-section h2 {
    color: white;
    margin-top: 0;
    font-size: 2.2rem;
    border-bottom: none;
    padding-bottom: 0
}

.cta-section h2::after {
    display: none
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: .95;
    color: white
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap
}

.cta-section a.btn {
    text-decoration: none !important
}

.cta-section .btn-primary,
.cta-section .btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white
}

.cta-section .btn-primary:hover,
.cta-section .btn-secondary:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2)
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2)
}

.btn-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25)
}

@media(max-width:768px) {
    .hero {
        padding-top: 120px
    }

    .seo-content {
        padding: 2rem 0
    }

    .content-article h2 {
        font-size: 1.6rem;
        margin-top: 3rem
    }

    .lead-paragraph {
        font-size: 1.1rem;
        padding: 1.5rem
    }

    .feature-item {
        padding: 1.5rem
    }

    .cta-section {
        padding: 2rem 1.5rem
    }

    .cta-section h2 {
        font-size: 1.8rem
    }

    .cta-buttons {
        flex-direction: column
    }

    .btn-large {
        width: 100%
    }
}

body.dark-mode .lead-paragraph {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3)
}

body.dark-mode .feature-item {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3)
}

body.dark-mode .feature-item:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.5);
    border-color: var(--primary-color)
}

body.dark-mode .services-list {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3)
}

body.dark-mode .services-list li {
    border-bottom-color: rgba(255, 255, 255, 0.1)
}

.fleet-gallery {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 3rem 0
}

@media(min-width:768px) {
    .fleet-gallery {
        grid-template-columns: repeat(3, 1fr)
    }
}

.fleet-item {
    text-align: center;
    background: var(--bg-secondary);
    padding: 1rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform .3s ease;
    border: 1px solid var(--border-color)
}

.fleet-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15)
}

.fleet-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1rem;
    border: 1px solid var(--border-color)
}

body.dark-mode .fleet-item {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.15)
}

body.dark-mode .fleet-img {
    border-color: rgba(255, 255, 255, 0.1)
}