/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Be Vietnam Pro', sans-serif;
    line-height: 1.6;
    color: #333;
}

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

/* Header Styles */
.header {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    display: flex;
    align-items: center;
}

.logo-icon {
    background: linear-gradient(135deg, #0ea5e9 0%, #10b981 100%);
    padding: 8px;
    border-radius: 8px;
    margin-right: 12px;
}

.logo-icon i {
    color: white;
    font-size: 32px;
}

.logo-text {
    font-size: 24px;
    font-weight: bold;
    color: #1f2937;
}

.nav-desktop {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    color: #374151;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.nav-link:hover {
    color: #0ea5e9;
}

.dropdown {
    position: relative;
}

.dropdown-btn {
    display: flex;
    align-items: center;
    gap: 4px;
}

.dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    border: 1px solid #e5e7eb;
    min-width: 230px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 100;
    padding: 8px 0;
}

.dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    position: relative;
}

.dropdown-link {
    display: block;
    padding: 12px 20px;
    color: #374151;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
}

.dropdown-link i:first-child {
    color: #0ea5e9;
    width: 16px;
}

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

.dropdown-link:hover {
    background-color: #f8fafc;
    color: #0ea5e9;
}

.dropdown-item:hover .submenu-arrow {
    transform: rotate(90deg);
}

/* Submenu styles */
.submenu {
    position: absolute;
    top: 0;
    left: 100%;
    background: white;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    border: 1px solid #e5e7eb;
    min-width: 280px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-10px);
    transition: all 0.3s ease;
    z-index: 101;
    padding: 8px 0;
}

.dropdown-item:hover .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.submenu a {
    display: block;
    padding: 10px 20px;
    color: #374151;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 400;
    border-left: 3px solid transparent;
}

.submenu a:hover {
    background-color: #f8fafc;
    color: #0ea5e9;
    border-left-color: #0ea5e9;
}

/* Mobile dropdown styles */
.mobile-dropdown {
    border-bottom: 1px solid #f3f4f6;
}

.mobile-dropdown-btn {
    width: 100%;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    font-size: 16px;
    cursor: pointer;
}

.mobile-dropdown-content {
    display: none;
    padding-left: 20px;
    background: #f9fafb;
}

.mobile-dropdown-content.active {
    display: block;
}

.mobile-submenu-item {
    border-bottom: 1px solid #e5e7eb;
}

.mobile-submenu-btn {
    width: 100%;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    padding: 12px 0;
    color: #374151;
    font-size: 15px;
    cursor: pointer;
}

.mobile-submenu-content {
    display: none;
    padding-left: 20px;
    background: #f3f4f6;
}

.mobile-submenu-content.active {
    display: block;
}

.mobile-submenu-content a {
    display: block;
    padding: 8px 0;
    color: #6b7280;
    text-decoration: none;
    font-size: 14px;
    border-bottom: 1px solid #e5e7eb;
}

.mobile-submenu-content a:hover {
    color: #0ea5e9;
}

.search-container {
    display: flex;
    align-items: center;
}

.search-box {
    position: relative;
}

.search-input {
    padding: 10px 16px 10px 40px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    width: 250px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.search-input:focus {
    outline: none;
    border-color: #0ea5e9;
    box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.1);
}

.search-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #9ca3af;
}

.btn-primary {
    background: linear-gradient(135deg, #0ea5e9 0%, #10b981 100%);
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #0284c7 0%, #059669 100%);
    transform: translateY(-1px);
}

.btn-secondary {
    background: white;
    color: #0ea5e9;
    padding: 16px 32px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 18px;
}

.btn-secondary:hover {
    background: #f9fafb;
    transform: translateY(-1px);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
}

.mobile-menu {
    display: none;
    background: white;
    border-top: 1px solid #e5e7eb;
}

.mobile-menu-content {
    padding: 16px;
}

.mobile-nav-link {
    display: block;
    padding: 12px 0;
    color: #374151;
    text-decoration: none;
    border-bottom: 1px solid #f3f4f6;
}

.mobile-book-btn {
    width: 100%;
    margin-top: 16px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #0ea5e9 0%, #10b981 100%);
    color: white;
    padding: 80px 0;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.hero-title {
    font-size: 4rem;
    font-weight: bold;
    margin-bottom: 24px;
    line-height: 1.1;
}

.hero-badges {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.badge {
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 14px;
}

.badge-green {
    background: #10b981;
}

.badge-orange {
    background: #f59e0b;
}

.hero-description {
    font-size: 20px;
    margin-bottom: 32px;
    color: #bfdbfe;
}

.hero-phone {
}

.phone-number {
    font-size: 3rem;
    font-weight: bold;
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}

.rating-badge {
    position: absolute;
    bottom: -16px;
    right: -16px;
    background: #fbbf24;
    padding: 16px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: bold;
    color: #92400e;
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 80px 0;
    background: #f9fafb;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 500;
    text-align: center;
    margin-bottom: 64px;
    color: #1f2937;
}

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

.feature-card {
    background: white;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

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

.feature-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.feature-icon.blue {
    background: rgba(14, 165, 233, 0.1);
    color: #0ea5e9;
}

.feature-icon.green {
    background: #d1fae5;
    color: #10b981;
}

.feature-icon.orange {
    background: #fed7aa;
    color: #ea580c;
}

.feature-icon i {
    font-size: 40px;
}

.feature-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 16px;
    color: #1f2937;
}

.feature-description {
    color: #6b7280;
    line-height: 1.6;
}

/* Services Section */
.services {
    padding: 80px 0;
}

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

.service-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

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

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-content {
    padding: 24px;
}

.service-header {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
}

.service-icon {
    background: rgba(14, 165, 233, 0.1);
    padding: 8px;
    border-radius: 8px;
    margin-right: 16px;
}

.service-icon i {
    color: #0ea5e9;
    font-size: 32px;
}

.service-title {
    font-size: 1.25rem;
    font-weight: bold;
    color: #1f2937;
}

.service-description {
    color: #6b7280;
    margin-bottom: 24px;
    line-height: 1.6;
}

.service-btn {
    width: 100%;
}

/* Pricing Section */
.pricing {
    padding: 80px 0;
    background: #f9fafb;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.price-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

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

.price-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.price-content {
    padding: 24px;
}

.price-title {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 16px;
    color: #1f2937;
}

.price-details {
    margin-bottom: 24px;
}

.price-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
}

.price-row span:first-child {
    color: #6b7280;
}

.price {
    font-weight: bold;
    color: #10b981;
    font-size: 1.1rem;
}

.price-btn {
    width: 100%;
}

/* Customer Choice Section */
.customer-choice {
    padding: 80px 0;
}

.customer-choice-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.customer-choice-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.customer-choice-text .section-title {
    text-align: left;
    margin-bottom: 32px;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.benefit-item i {
    color: #10b981;
    font-size: 24px;
    margin-top: 4px;
}

.benefit-item h3 {
    font-weight: bold;
    margin-bottom: 8px;
    color: #1f2937;
}

.benefit-item p {
    color: #6b7280;
    line-height: 1.6;
}

/* Partners Section */
.partners {
    padding: 80px 0;
    background: #f9fafb;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 32px;
}

.partner-card {
    background: white;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

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

.partner-icon {
    background: #f3f4f6;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.partner-icon i {
    color: #6b7280;
    font-size: 32px;
}

.partner-name {
    font-weight: 600;
    color: #1f2937;
}

/* Blog Section */
.blog {
    padding: 80px 0;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
}

.blog-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

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

.blog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-content {
    padding: 24px;
}

.blog-date {
    color: #0ea5e9;
    font-weight: 600;
    margin-bottom: 8px;
}

.blog-title {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 16px;
    color: #1f2937;
}

.blog-excerpt {
    color: #6b7280;
    margin-bottom: 16px;
    line-height: 1.6;
}

.blog-read-more {
    color: #0ea5e9;
    background: none;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: color 0.3s ease;
}

.blog-read-more:hover {
    color: #0284c7;
}

/* Footer */
.footer {
    background: #1f2937;
    color: white;
    padding: 64px 0 32px;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 24px;
}

.footer-description {
    color: #9ca3af;
    margin-bottom: 24px;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-links i {
    color: #9ca3af;
    font-size: 24px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.social-links i:hover {
    color: white;
}

.footer-title {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 24px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #9ca3af;
}

.contact-item i {
    font-size: 20px;
}

.map-container {
    background: #374151;
    border-radius: 8px;
    overflow: hidden;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 32px;
    text-align: center;
    color: #9ca3af;
}

/* About & Expertise Section */
.about-expertise {
    padding: 80px 0;
    background: #f9fafb;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.about-text .section-title {
    text-align: left;
    margin-bottom: 32px;
}

.company-story h3 {
    font-size: 1.5rem;
    font-weight: bold;
    margin: 32px 0 16px 0;
    color: #1f2937;
}

.company-story h3:first-child {
    margin-top: 0;
}

.company-story p {
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 24px;
}

.expertise-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 32px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #0ea5e9;
    margin-bottom: 8px;
}

.stat-label {
    color: #6b7280;
    font-weight: 600;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.certification-badge {
    position: absolute;
    bottom: -16px;
    left: -16px;
    background: linear-gradient(135deg, #0ea5e9 0%, #10b981 100%);
    color: white;
    padding: 16px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: bold;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* About highlights */
.about-highlights {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 32px;
}

.highlight-card {
    background: white;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-left: 4px solid #0ea5e9;
}

.highlight-card:hover {
    transform: translateX(8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.highlight-icon {
    width: 48px;
    height: 48px;
    background: rgba(14, 165, 233, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.highlight-icon i {
    color: #0ea5e9;
    font-size: 24px;
}

.highlight-card h4 {
    font-size: 1.1rem;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 8px;
}

.highlight-card p {
    color: #6b7280;
    line-height: 1.5;
    font-size: 0.9rem;
}

/* Team & Credentials Section */
.team-credentials {
    padding: 80px 0;
}

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

.team-member {
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

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

.team-member img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.member-info {
    padding: 24px;
}

.member-info h3 {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 8px;
    color: #1f2937;
}

.member-title {
    color: #0ea5e9;
    font-weight: 600;
    margin-bottom: 16px;
}

.member-credentials {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.credential {
    background: rgba(14, 165, 233, 0.1);
    color: #0ea5e9;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.member-bio {
    color: #6b7280;
    line-height: 1.6;
}

/* Certifications Section */
.certifications {
    padding: 80px 0;
    background: #f9fafb;
}

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

.cert-card {
    background: white;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

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

.cert-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #0ea5e9 0%, #10b981 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.cert-icon i {
    color: white;
    font-size: 40px;
}

.cert-card h3 {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 16px;
    color: #1f2937;
}

.cert-card p {
    color: #6b7280;
    line-height: 1.6;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
    margin-bottom: 48px;
}

.testimonial-card {
    background: white;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

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

.stars {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
}

.stars i {
    color: #fbbf24;
    font-size: 20px;
}

.testimonial-text {
    color: #374151;
    line-height: 1.7;
    margin-bottom: 24px;
    font-style: italic;
}

.customer-info {
    display: flex;
    align-items: center;
    gap: 16px;
}

.customer-info img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.customer-info h4 {
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 4px;
}

.customer-info p {
    color: #6b7280;
    font-size: 0.875rem;
    margin-bottom: 4px;
}

.verified {
    color: #10b981;
    font-size: 0.875rem;
    font-weight: 600;
}

.review-summary {
    background: #f9fafb;
    padding: 32px;
    border-radius: 12px;
    text-align: center;
}

.review-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap;
}

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

.rating-number {
    font-size: 3rem;
    font-weight: bold;
    color: #0ea5e9;
    display: block;
}

.rating-stars {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin: 8px 0;
}

.rating-stars i {
    color: #fbbf24;
    font-size: 24px;
}

.review-platforms {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.platform {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #6b7280;
    font-weight: 600;
}

.platform i {
    font-size: 20px;
}

/* Service Areas Section */
.service-areas {
    padding: 80px 0;
    background: #f9fafb;
}

.areas-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.areas-text h3 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 16px;
    color: #1f2937;
}

.areas-text > p {
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 32px;
}

.coverage-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 32px;
}

.coverage-column h4 {
    font-weight: bold;
    color: #0ea5e9;
    margin-bottom: 12px;
}

.coverage-column ul {
    list-style: none;
    padding: 0;
}

.coverage-column li {
    color: #6b7280;
    padding: 4px 0;
    padding-left: 20px;
    position: relative;
}

.coverage-column li:before {
    content: "✓";
    color: #10b981;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.response-times {
    display: flex;
    gap: 24px;
}

.response-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: white;
    padding: 16px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.response-item i {
    color: #0ea5e9;
    font-size: 24px;
}

.response-item h4 {
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 4px;
}

.response-item p {
    color: #6b7280;
    font-size: 0.875rem;
}

.areas-map {
    position: relative;
}

.areas-map img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.map-overlay {
    position: absolute;
    top: 24px;
    right: 24px;
    background: linear-gradient(135deg, #0ea5e9 0%, #10b981 100%);
    color: white;
    padding: 16px;
    border-radius: 8px;
    text-align: center;
}

.map-overlay h4 {
    font-weight: bold;
    margin-bottom: 4px;
}

.map-overlay p {
    font-size: 0.875rem;
    opacity: 0.9;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 32px;
}

.faq-item {
    background: white;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

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

.faq-question {
    font-size: 1.25rem;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 16px;
}

.faq-answer {
    color: #6b7280;
    line-height: 1.7;
}

/* Page Header Styles */
.page-header {
    background: linear-gradient(135deg, #0ea5e9 0%, #10b981 100%);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
}

.page-header-content h1 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 16px;
}

.page-header-content p {
    font-size: 1.25rem;
    margin-bottom: 32px;
    color: #bfdbfe;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.breadcrumb a {
    color: #bfdbfe;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: white;
}

.breadcrumb span {
    color: #93c5fd;
}

/* Company Overview Styles */
.company-overview {
    padding: 80px 0;
    background: #f9fafb;
}

.overview-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.overview-text h2 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 24px;
    color: #1f2937;
}

.overview-text p {
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 24px;
    font-size: 1.1rem;
}

.company-values {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 32px;
}

.value-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.value-item i {
    color: #0ea5e9;
    font-size: 24px;
    margin-top: 4px;
}

.value-item h4 {
    font-weight: bold;
    margin-bottom: 8px;
    color: #1f2937;
}

.value-item p {
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

.overview-image {
    position: relative;
}

.overview-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.experience-badge {
    position: absolute;
    bottom: -16px;
    right: -16px;
    background: linear-gradient(135deg, #0ea5e9 0%, #10b981 100%);
    color: white;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.badge-number {
    font-size: 2rem;
    font-weight: bold;
    display: block;
}

.badge-text {
    font-size: 0.875rem;
    opacity: 0.9;
}

/* Mission & Vision Styles */
.mission-vision {
    padding: 80px 0;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.mission-card,
.vision-card {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

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

.card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #0ea5e9 0%, #10b981 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.card-icon i {
    color: white;
    font-size: 40px;
}

.mission-card h3,
.vision-card h3 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 16px;
    color: #1f2937;
}

.mission-card p,
.vision-card p {
    color: #6b7280;
    line-height: 1.7;
}

/* Leadership Team Styles */
.leadership-team {
    padding: 80px 0;
    background: #f9fafb;
}

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

.leader-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

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

.leader-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.leader-info {
    padding: 24px;
}

.leader-info h3 {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 8px;
    color: #1f2937;
}

.leader-title {
    color: #0ea5e9;
    font-weight: 600;
    margin-bottom: 16px;
}

.leader-bio {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 16px;
}

.leader-contact {
    display: flex;
    gap: 12px;
}

.leader-contact a {
    width: 40px;
    height: 40px;
    background: rgba(14, 165, 233, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0ea5e9;
    text-decoration: none;
    transition: all 0.3s ease;
}

.leader-contact a:hover {
    background: #0ea5e9;
    color: white;
}

/* Timeline Styles */
.company-timeline {
    padding: 80px 0;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #e5e7eb;
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 48px;
    display: flex;
    align-items: center;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-year {
    background: linear-gradient(135deg, #0ea5e9 0%, #10b981 100%);
    color: white;
    padding: 12px 20px;
    border-radius: 25px;
    font-weight: bold;
    font-size: 1.1rem;
    position: relative;
    z-index: 2;
}

.timeline-content {
    background: white;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    margin: 0 32px;
    flex: 1;
    max-width: 300px;
}

.timeline-content h3 {
    font-weight: bold;
    margin-bottom: 8px;
    color: #1f2937;
}

.timeline-content p {
    color: #6b7280;
    line-height: 1.6;
}

/* Awards Styles */
.awards-recognition {
    padding: 80px 0;
    background: #f9fafb;
}

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

.award-card {
    background: white;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

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

.award-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.award-icon i {
    color: white;
    font-size: 40px;
}

.award-card h3 {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 8px;
    color: #1f2937;
}

.award-card p {
    color: #6b7280;
    margin-bottom: 16px;
}

.award-year {
    position: absolute;
    top: 16px;
    right: 16px;
    background: #fbbf24;
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.875rem;
    font-weight: 600;
}

/* Service Hero Styles */
.service-hero {
    background: linear-gradient(135deg, #0ea5e9 0%, #10b981 100%);
    color: white;
    padding: 120px 0 80px;
}

.service-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.service-hero-text h1 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 16px;
    line-height: 1.1;
}

.service-subtitle {
    font-size: 1.25rem;
    margin-bottom: 32px;
    color: #bfdbfe;
    line-height: 1.6;
}

.service-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 32px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.feature-item i {
    color: #10b981;
    font-size: 20px;
}

.service-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.service-hero-image {
    position: relative;
}

.service-hero-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}

.service-badge {
    position: absolute;
    bottom: -16px;
    left: -16px;
    background: #fbbf24;
    color: #92400e;
    padding: 16px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: bold;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* Service Process Styles */
.service-process {
    padding: 80px 0;
    background: #f9fafb;
}

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

.process-step {
    background: white;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

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

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #0ea5e9 0%, #10b981 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 24px;
}

.step-content h3 {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 16px;
    color: #1f2937;
}

.step-content p {
    color: #6b7280;
    line-height: 1.6;
}

/* Cleaning Types Styles */
.cleaning-types {
    padding: 80px 0;
}

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

.cleaning-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

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

.cleaning-card.featured {
    border: 2px solid #0ea5e9;
}

.popular-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: #0ea5e9;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    z-index: 2;
}

.cleaning-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.cleaning-content {
    padding: 24px;
}

.cleaning-content h3 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 8px;
    color: #1f2937;
}

.price {
    font-size: 2rem;
    font-weight: bold;
    color: #0ea5e9;
    margin-bottom: 24px;
}

.cleaning-features {
    list-style: none;
    margin-bottom: 24px;
}

.cleaning-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: #6b7280;
}

.cleaning-features i {
    color: #10b981;
    font-size: 16px;
}

/* Benefits Styles */
.cleaning-benefits {
    padding: 80px 0;
    background: #f9fafb;
}

.benefits-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.benefits-text h2 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 32px;
    color: #1f2937;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.benefit-icon {
    width: 48px;
    height: 48px;
    background: rgba(14, 165, 233, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit-icon i {
    color: #0ea5e9;
    font-size: 24px;
}

.benefit-item h3 {
    font-weight: bold;
    margin-bottom: 8px;
    color: #1f2937;
}

.benefit-item p {
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

.benefits-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

/* Service FAQ Styles */
.service-faq {
    padding: 80px 0;
}

.service-faq .faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 32px;
}

.service-faq .faq-item {
    background: white;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.service-faq .faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-faq .faq-item h3 {
    font-size: 1.25rem;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 16px;
}

.service-faq .faq-item p {
    color: #6b7280;
    line-height: 1.7;
}

/* Product Categories Styles */
.product-categories {
    padding: 80px 0;
    background: #f9fafb;
}

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

.category-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

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

.category-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.category-content {
    padding: 24px;
}

.category-content h3 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 12px;
    color: #1f2937;
}

.category-content p {
    color: #6b7280;
    margin-bottom: 16px;
    line-height: 1.6;
}

.category-stats {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
    font-size: 0.875rem;
}

.category-stats span {
    display: flex;
    align-items: center;
    gap: 4px;
    color: #6b7280;
}

.category-stats i {
    color: #fbbf24;
}

/* Featured Products Styles */
.featured-products {
    padding: 80px 0;
}

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

.product-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

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

.product-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    z-index: 2;
}

.product-badge:not(.new) {
    background: #10b981;
    color: white;
}

.product-badge.new {
    background: #0ea5e9;
    color: white;
}

.product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.product-content {
    padding: 24px;
}

.product-brand {
    color: #0ea5e9;
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 8px;
}

.product-content h3 {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 12px;
    color: #1f2937;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

.product-rating .stars {
    display: flex;
    gap: 2px;
}

.product-rating .stars i {
    color: #fbbf24;
    font-size: 14px;
}

.product-rating span {
    color: #6b7280;
    font-size: 0.875rem;
}

.product-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.product-features span {
    display: flex;
    align-items: center;
    gap: 4px;
    background: #f3f4f6;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.75rem;
    color: #6b7280;
}

.product-features i {
    color: #0ea5e9;
}

.product-price {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.current-price {
    font-size: 1.5rem;
    font-weight: bold;
    color: #0ea5e9;
}

.original-price {
    color: #9ca3af;
    text-decoration: line-through;
}

.discount {
    background: #10b981;
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
}

.product-actions {
    display: flex;
    gap: 12px;
}

.product-actions .btn-primary,
.product-actions .btn-secondary {
    flex: 1;
    padding: 12px;
    font-size: 0.875rem;
}

/* Brand Partners Styles */
.brand-partners {
    padding: 80px 0;
    background: #f9fafb;
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 32px;
}

.brand-card {
    background: white;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

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

.brand-logo {
    width: 80px;
    height: 80px;
    background: #f3f4f6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.brand-logo i {
    color: #6b7280;
    font-size: 40px;
}

.brand-card h3 {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 12px;
    color: #1f2937;
}

.brand-card p {
    color: #6b7280;
    margin-bottom: 16px;
    line-height: 1.6;
}

.brand-stats {
    display: flex;
    justify-content: center;
    gap: 16px;
    font-size: 0.875rem;
    color: #0ea5e9;
    font-weight: 600;
}

/* Product Services Styles */
.product-services {
    padding: 80px 0;
}

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

.service-item {
    background: white;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

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

.service-icon {
    width: 80px;
    height: 80px;
    background: rgba(14, 165, 233, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.service-icon i {
    color: #0ea5e9;
    font-size: 40px;
}

.service-item h3 {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 16px;
    color: #1f2937;
}

.service-item p {
    color: #6b7280;
    line-height: 1.6;
}

/* Blog Styles */
.featured-article {
    padding: 80px 0;
    background: #f9fafb;
}

.featured-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.featured-image {
    position: relative;
}

.featured-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.featured-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: #0ea5e9;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.article-meta {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
    font-size: 0.875rem;
}

.category {
    padding: 4px 12px;
    border-radius: 12px;
    font-weight: 600;
    color: white;
}

.category.maintenance {
    background: #10b981;
}

.category.energy {
    background: #0ea5e9;
}

.category.installation {
    background: #8b5cf6;
}

.category.troubleshooting {
    background: #f59e0b;
}

.category.news {
    background: #ef4444;
}

.category.repair {
    background: #6366f1;
}

.date,
.read-time {
    color: #6b7280;
}

.featured-text h2 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 16px;
    color: #1f2937;
    line-height: 1.3;
}

.featured-text p {
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 24px;
}

.article-author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.article-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.author-name {
    font-weight: 600;
    color: #1f2937;
    display: block;
}

.author-title {
    color: #6b7280;
    font-size: 0.875rem;
}

/* Blog Categories Filter */
.blog-categories {
    padding: 40px 0;
}

.categories-filter {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.category-btn {
    padding: 12px 24px;
    border: 2px solid #e5e7eb;
    background: white;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #6b7280;
}

.category-btn:hover,
.category-btn.active {
    border-color: #0ea5e9;
    background: #0ea5e9;
    color: white;
}

/* Blog Articles Grid */
.blog-articles {
    padding: 40px 0 80px;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
    margin-bottom: 48px;
}

.article-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

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

.article-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.article-content {
    padding: 24px;
}

.article-content h3 {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 12px;
    color: #1f2937;
    line-height: 1.4;
}

.article-content p {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 20px;
}

.article-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.author-info {
    display: flex;
    align-items: center;
    gap: 8px;
}

.author-info img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info span {
    font-size: 0.875rem;
    color: #6b7280;
    font-weight: 500;
}

.article-read-more {
    color: #0ea5e9;
    background: none;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: color 0.3s ease;
}

.article-read-more:hover {
    color: #0284c7;
}

.load-more-section {
    text-align: center;
}

.load-more-btn {
    padding: 16px 32px;
}

/* Newsletter Signup */
.newsletter-signup {
    padding: 80px 0;
    background: linear-gradient(135deg, #0ea5e9 0%, #10b981 100%);
    color: white;
}

.newsletter-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.newsletter-text h2 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 16px;
}

.newsletter-text p {
    font-size: 1.1rem;
    color: #bfdbfe;
    line-height: 1.6;
}

.newsletter-form {
    display: flex;
    gap: 16px;
}

.newsletter-input {
    flex: 1;
    padding: 16px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
}

.newsletter-input:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

.newsletter-btn {
    padding: 16px 32px;
    background: white;
    color: #0ea5e9;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-btn:hover {
    background: #f9fafb;
    transform: translateY(-1px);
}

/* 404 Error Page Styles */
.error-404 {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.error-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    text-align: center;
}

.error-visual {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.error-number {
    font-size: 8rem;
    font-weight: bold;
    color: #0ea5e9;
    line-height: 1;
    margin-bottom: 24px;
    text-shadow: 0 4px 8px rgba(14, 165, 233, 0.3);
}

.error-icon {
    font-size: 4rem;
    color: #10b981;
    margin-bottom: 32px;
    animation: spin 8s linear infinite;
}

.error-animation {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.floating-element {
    position: absolute;
    color: #cbd5e1;
    font-size: 2rem;
    animation: float 6s ease-in-out infinite;
}

.floating-element:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-element:nth-child(2) {
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.floating-element:nth-child(3) {
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.error-text {
    text-align: left;
}

.error-text h1 {
    font-size: 3rem;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 24px;
    line-height: 1.2;
}

.error-message {
    font-size: 1.25rem;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 32px;
}

.error-suggestions {
    margin-bottom: 40px;
}

.error-suggestions h3 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 16px;
}

.error-suggestions ul {
    list-style: none;
    padding: 0;
}

.error-suggestions li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: #6b7280;
}

.error-suggestions li i {
    color: #0ea5e9;
    width: 20px;
}

.error-suggestions a {
    color: #0ea5e9;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.error-suggestions a:hover {
    color: #0284c7;
}

.error-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.error-actions .btn-primary,
.error-actions .btn-secondary {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 16px 24px;
    text-decoration: none;
}

/* Popular Services on 404 */
.popular-services {
    padding: 80px 0;
    background: white;
}

.popular-services .section-subtitle {
    text-align: center;
    color: #6b7280;
    font-size: 1.1rem;
    margin-bottom: 48px;
}

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

.popular-services .service-card {
    background: white;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #f1f5f9;
}

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

.popular-services .service-icon {
    width: 80px;
    height: 80px;
    background: rgba(14, 165, 233, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.popular-services .service-icon i {
    color: #0ea5e9;
    font-size: 40px;
}

.popular-services .service-card h3 {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 16px;
    color: #1f2937;
}

.popular-services .service-card p {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-link {
    color: #0ea5e9;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.service-link:hover {
    color: #0284c7;
}

/* Contact CTA on 404 */
.contact-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #0ea5e9 0%, #10b981 100%);
    color: white;
}

.cta-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.cta-text h2 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 16px;
}

.cta-text p {
    font-size: 1.1rem;
    color: #bfdbfe;
    line-height: 1.6;
}

.cta-actions {
    display: flex;
    gap: 16px;
    justify-content: flex-end;
}

.cta-actions .btn-primary,
.cta-actions .btn-secondary {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 16px 24px;
    text-decoration: none;
}

.cta-actions .btn-primary {
    background: white;
    color: #0ea5e9;
}

.cta-actions .btn-primary:hover {
    background: #f9fafb;
}

.cta-actions .btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.cta-actions .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Article Detail Page Styles */
.article-header {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #0ea5e9 0%, #10b981 100%);
    color: white;
}

.article-header-content h1 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 16px;
    line-height: 1.2;
}

.article-subtitle {
    font-size: 1.25rem;
    color: #bfdbfe;
    line-height: 1.6;
    margin-bottom: 32px;
}

.article-author {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 32px;
}

.article-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.author-details {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: bold;
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.author-title {
    color: #bfdbfe;
    font-size: 0.9rem;
    margin-bottom: 2px;
}

.author-credentials {
    color: #93c5fd;
    font-size: 0.8rem;
}

.article-content {
    padding: 80px 0;
}

.article-layout {
    display: grid;
    grid-template-columns: 810px 1fr;
    gap: 48px;
}

.article-sidebar {
    position: sticky;
    top: 100px;
}

.table-of-contents {
    background: #f8fafc;
    padding: 24px;
    border-radius: 12px;
    margin-bottom: 32px;
}

.table-of-contents h3 {
    font-weight: bold;
    margin-bottom: 16px;
    color: #1f2937;
}

.table-of-contents ul {
    list-style: none;
    padding: 0;
}

.table-of-contents li {
    margin-bottom: 8px;
}

.table-of-contents a {
    color: #6b7280;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.table-of-contents a:hover {
    color: #0ea5e9;
}

.article-cta {
    background: linear-gradient(135deg, #0ea5e9 0%, #10b981 100%);
    color: white;
    padding: 24px;
    border-radius: 12px;
    text-align: center;
    margin-bottom: 32px;
}

.article-cta h4 {
    font-weight: bold;
    margin-bottom: 12px;
}

.article-cta p {
    font-size: 0.9rem;
    margin-bottom: 16px;
    color: #bfdbfe;
}

.related-articles {
    background: #f8fafc;
    padding: 24px;
    border-radius: 12px;
}

.related-articles h4 {
    font-weight: bold;
    margin-bottom: 16px;
    color: #1f2937;
}

.related-articles ul {
    list-style: none;
    padding: 0;
}

.related-articles li {
    margin-bottom: 12px;
}

.related-articles a {
    color: #0ea5e9;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.related-articles a:hover {
    color: #0284c7;
}

.article-main {
    max-width: none;
}

.article-image {
    margin-bottom: 32px;
}

.article-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.image-caption {
    font-size: 0.9rem;
    color: #6b7280;
    font-style: italic;
    text-align: center;
    margin-top: 12px;
}

.article-intro .lead {
    font-size: 1.25rem;
    color: #374151;
    line-height: 1.7;
    margin-bottom: 24px;
    font-weight: 500;
}

.article-section {
    margin-bottom: 48px;
}

.article-section h2 {
    font-size: 2rem;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 24px;
    border-bottom: 3px solid #0ea5e9;
    padding-bottom: 8px;
}

.article-section h3 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #1f2937;
    margin: 32px 0 16px 0;
}

.article-section p {
    color: #374151;
    line-height: 1.7;
    margin-bottom: 16px;
}

.article-section ul,
.article-section ol {
    color: #374151;
    line-height: 1.7;
    margin-bottom: 24px;
    padding-left: 24px;
}

.article-section li {
    margin-bottom: 8px;
}

.tip-box {
    background: #f0f9ff;
    border-left: 4px solid #0ea5e9;
    padding: 24px;
    border-radius: 8px;
    margin: 24px 0;
}

.tip-box h3 {
    color: #0ea5e9;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.maintenance-checklist {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 24px 0;
}

.checklist-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: #f8fafc;
    border-radius: 12px;
    border-left: 4px solid #10b981;
}

.checklist-item i {
    color: #10b981;
    font-size: 24px;
    margin-top: 4px;
}

.checklist-item h4 {
    font-weight: bold;
    margin-bottom: 8px;
    color: #1f2937;
}

.checklist-item p {
    color: #6b7280;
    margin: 0;
}

.insulation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin: 24px 0;
}

.insulation-item {
    background: white;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border-top: 4px solid #0ea5e9;
}

.insulation-item h4 {
    color: #0ea5e9;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.energy-tip {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border-left: 4px solid #f59e0b;
    padding: 24px;
    border-radius: 8px;
    margin: 24px 0;
}

.energy-tip h3 {
    color: #92400e;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.efficiency-comparison {
    margin: 24px 0;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 16px;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.comparison-table th,
.comparison-table td {
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid #e5e7eb;
}

.comparison-table th {
    background: #f8fafc;
    font-weight: bold;
    color: #1f2937;
}

.comparison-table tr.highlight {
    background: #f0f9ff;
}

.monitoring-tools {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    margin: 24px 0;
}

.tool-item {
    background: white;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.tool-item h4 {
    color: #0ea5e9;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.timeline {
    margin: 32px 0;
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    margin-bottom: 32px;
}

.timeline-marker {
    background: #0ea5e9;
    color: white;
    padding: 12px 16px;
    border-radius: 8px;
    font-weight: bold;
    white-space: nowrap;
}

.timeline-content {
    flex: 1;
    background: #f8fafc;
    padding: 20px;
    border-radius: 8px;
}

.timeline-content h4 {
    font-weight: bold;
    margin-bottom: 12px;
    color: #1f2937;
}

.timeline-content ul {
    margin: 0;
    padding-left: 20px;
}

.call-to-action {
    background: linear-gradient(135deg, #0ea5e9 0%, #10b981 100%);
    color: white;
    padding: 32px;
    border-radius: 12px;
    text-align: center;
    margin: 32px 0;
}

.call-to-action h3 {
    margin-bottom: 12px;
}

.call-to-action p {
    color: #bfdbfe;
    margin-bottom: 20px;
}

.article-tags {
    margin: 32px 0;
    padding: 24px 0;
    border-top: 1px solid #e5e7eb;
}

.article-tags h4 {
    margin-bottom: 12px;
    color: #1f2937;
}

.tag {
    display: inline-block;
    background: #f1f5f9;
    color: #475569;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.875rem;
    margin-right: 8px;
    margin-bottom: 8px;
}

.article-share {
    margin: 32px 0;
    padding: 24px 0;
    border-top: 1px solid #e5e7eb;
}

.article-share h4 {
    margin-bottom: 16px;
    color: #1f2937;
}

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

.share-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 0.875rem;
}

.share-btn.facebook {
    background: #1877f2;
    color: white;
}

.share-btn.twitter {
    background: #1da1f2;
    color: white;
}

.share-btn.linkedin {
    background: #0077b5;
    color: white;
}

.share-btn.email {
    background: #6b7280;
    color: white;
}

.share-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.related-articles-section {
    padding: 80px 0;
    background: #f9fafb;
}

/* Policy Page Styles */
.policy-content {
    padding: 80px 0;
}

.policy-layout {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 48px;
}

.policy-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.policy-nav {
    background: #f8fafc;
    padding: 24px;
    border-radius: 12px;
    margin-bottom: 32px;
}

.policy-nav h3 {
    font-weight: bold;
    margin-bottom: 16px;
    color: #1f2937;
}

.policy-nav ul {
    list-style: none;
    padding: 0;
}

.policy-nav li {
    margin-bottom: 8px;
}

.policy-nav a {
    color: #6b7280;
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 6px;
    display: block;
    transition: all 0.3s ease;
}

.policy-nav a:hover,
.policy-nav a.active {
    background: #0ea5e9;
    color: white;
}

.policy-contact {
    background: linear-gradient(135deg, #0ea5e9 0%, #10b981 100%);
    color: white;
    padding: 24px;
    border-radius: 12px;
    text-align: center;
}

.policy-contact h4 {
    margin-bottom: 12px;
}

.policy-contact p {
    font-size: 0.9rem;
    margin-bottom: 16px;
    color: #bfdbfe;
}

.policy-main {
    max-width: none;
}

.policy-section {
    margin-bottom: 48px;
}

.policy-section h2 {
    font-size: 2rem;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 24px;
    border-bottom: 3px solid #0ea5e9;
    padding-bottom: 8px;
}

.policy-section h3 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #1f2937;
    margin: 32px 0 16px 0;
}

.policy-section h4 {
    font-size: 1.25rem;
    font-weight: bold;
    color: #1f2937;
    margin: 24px 0 12px 0;
}

.policy-section p {
    color: #374151;
    line-height: 1.7;
    margin-bottom: 16px;
}

.policy-list {
    color: #374151;
    line-height: 1.7;
    margin-bottom: 24px;
    padding-left: 24px;
}

.policy-list li {
    margin-bottom: 8px;
}

.third-party-services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin: 24px 0;
}

.service-item {
    background: #f8fafc;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #0ea5e9;
}

.service-item h4 {
    color: #0ea5e9;
    margin-bottom: 8px;
}

.service-item p {
    color: #6b7280;
    font-size: 0.9rem;
    margin: 0;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin: 24px 0;
}

.impact-item {
    background: white;
    padding: 24px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border-top: 4px solid #f59e0b;
}

.impact-item h4 {
    color: #f59e0b;
    margin-bottom: 12px;
}

.impact-item p {
    color: #6b7280;
    font-size: 0.9rem;
    margin: 0;
}

.contact-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    margin: 24px 0;
}

.contact-method {
    background: #f8fafc;
    padding: 20px;
    border-radius: 8px;
}

.contact-method h4 {
    color: #1f2937;
    margin-bottom: 8px;
}

.contact-method p {
    color: #6b7280;
    margin: 0;
}

.contact-method a {
    color: #0ea5e9;
    text-decoration: none;
}

.contact-method a:hover {
    color: #0284c7;
}

.policy-footer {
    background: #f8fafc;
    padding: 24px;
    border-radius: 8px;
    margin-top: 48px;
    text-align: center;
}

.policy-footer p {
    color: #6b7280;
    margin-bottom: 8px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .nav-desktop,
    .search-container,
    .book-now-desktop {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

    .phone-number {
        font-size: 2rem;
    }

    .customer-choice-content {
        grid-template-columns: 1fr;
    }

    .about-content,
    .areas-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .overview-content,
    .mission-vision-grid,
    .featured-content,
    .benefits-content,
    .newsletter-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .service-hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

    .service-cta {
        justify-content: center;
    }

    .timeline::before {
        left: 20px;
    }

    .timeline-item {
        flex-direction: row !important;
        padding-left: 60px;
    }

    .timeline-year {
        position: absolute;
        left: 0;
    }

    .timeline-content {
        margin: 0;
        max-width: none;
    }

    .about-highlights {
        grid-template-columns: repeat(3, 1fr);
        margin-top: 24px;
    }
    .expertise-stats {
        grid-template-columns: repeat(4, 1fr);
    }

    .response-times {
        flex-direction: column;
    }

    .review-stats {
        flex-direction: column;
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }

    .hero {
        padding: 60px 0;
    }

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

    .phone-number {
        font-size: 1.5rem;
    }

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

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

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

    .partners-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

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

    .about-highlights {
        grid-template-columns: 1fr;
    }
    .coverage-list {
        grid-template-columns: 1fr;
    }

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

    .newsletter-form {
        flex-direction: column;
    }

    .error-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

    .cta-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .cta-actions {
        justify-content: center;
    }

    .article-layout {
        grid-template-columns: 1fr;
    }

    .article-sidebar {
        position: static;
        order: 2;
    }

    .policy-layout {
        grid-template-columns: 1fr;
    }

    .policy-sidebar {
        position: static;
        order: 2;
    }

    .categories-filter {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 16px;
    }

    .category-btn {
        white-space: nowrap;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-badges {
        flex-direction: column;
        align-items: center;
    }

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

    .expertise-stats {
        grid-template-columns: 1fr;
    }

    .response-times {
        flex-direction: column;
    }

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

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

    .featured-text h2 {
        font-size: 1.5rem;
    }

    .newsletter-text h2 {
        font-size: 2rem;
    }

    .error-number {
        font-size: 6rem;
    }

    .error-text h1 {
        font-size: 2rem;
    }

    .error-actions {
        flex-direction: column;
    }

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

    .cta-text h2 {
        font-size: 2rem;
    }

    .cta-actions {
        flex-direction: column;
    }

    .product-actions {
        flex-direction: column;
    }
}