
.service-navigation {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin: 2rem auto;
    max-width: 1200px;
    padding: 0 1rem;
}

.nav-button {
    flex: 1;
    min-width: 180px;
    max-width: 240px;
    background: linear-gradient(to right, #4a00e0, #8e2de2);
    color: white;
    border: none;
    padding: 1.5rem 1rem;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    text-decoration: none;
    display: block;
}

.nav-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.nav-button h1,
.nav-button h2 {
    margin-top: .8rem;
    margin-bottom: 0; /* Add this to remove default bottom margin */
}

.nav-button.active {
    background: linear-gradient(to right, #5989f1, #b17ddf);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    color: #0a0a0a;
}
.nav-btn-h27 {
    margin-top:27px;
}
.service-header {
    text-align: center;
    margin: 2rem 0;
    padding: 0 1rem;
}

.service-header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: #3a86ff;
}

.service-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .service-navigation {
        flex-direction: column;
        align-items: stretch;
        padding: 0 0.25rem; /* Even smaller padding */
        margin: 0.5rem auto;
    }

    .nav-button {
        max-width: 100%;
        padding: 1rem 0.5rem; /* More compact padding */
        min-width: unset;
    }

    .nav-button h1 {
        margin-top: 0;
        font-size: 1.3rem; /* Smaller font for mobile */
        line-height: 1.2;
    }

    .nav-button h2 {
        margin-top: 0;
        font-size: 1.1rem; /* Smaller font for mobile */
        line-height: 1.2;
    }

    .nav-button p {
        font-size: 0.9rem; /* Smaller paragraph text */
        margin: 0.25rem 0 0 0; /* Tighter margins */
        line-height: 1.3;
    }
    .nav-btn-h27 {
        margin-top:2px;
    }
}

/* Google Business Profile specific styles */
.hero-section {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
    align-items: center;
    margin: 2rem 0 3rem;
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.25);
}

.hero-pricing {
    text-align: center;
    padding: 1.5rem;
    border-right: 1px solid #e2e8f0;
}

.hero-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2e7d32;
    margin: 0.5rem 0;
}

.benefit-statement {
    text-align: center;
    font-size: 1.3rem;
    line-height: 1.8;
    padding: 1.5rem;
    background: #f0f7ff;
    border-radius: 8px;
    border-left: 4px solid #3a86ff;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.18);
    margin-bottom: 2rem;
}

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

.feature-section h4 {
    color: #3a86ff;
    margin-bottom: 1rem;
    border-bottom: 1px solid #e2e8f0;
    padding-bottom: 0.5rem;
}

/* New styles for the sales copy section */
.gbp-sales-copy {
    background: white;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
    margin-bottom: 2rem;
}

.problem-solution {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

.problem-box, .solution-box {
    padding: 1.5rem;
    border-radius: 8px;
    line-height: 1.5;
}

.problem-box {
    background: #fff5f5;
    border-left: 4px solid #ef4444;
}

.solution-box {
    background: #f0f7ff;
    border-left: 4px solid #3a86ff;
    line-height: 1.5;
}

.benefit-box {
    background: #f0f9ff;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1.5rem 0;
    border-left: 4px solid #0ea5e9;
}
.price-badge {
    display: inline-block;
    background: #3a86ff;
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-size: 1.5rem;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}
.development-hero {
    text-align: center;
    background: linear-gradient(135deg, #4a00e0 0%, #8e2de2 100%);
    color: white;
    padding: 3rem 2rem;
    border-radius: 12px;
    margin-bottom: 3rem;
    position: relative;
}

.development-hero h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}
.features-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}
@media (max-width: 768px) {
    .features-container {
        grid-template-columns: 1fr;
    }
    .development-hero h2 {
        font-size: 2rem;
    }

    .hero-section {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .hero-pricing {
        border-right: none;
        border-bottom: 1px solid #e2e8f0;
        padding-bottom: 2rem;
    }

    .benefit-statement {
        font-size: 1.1rem;
        padding: 1rem;
    }

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

    .problem-solution {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}