.ta-services-wrapper-526b3f67 {
    display: grid;
    gap: 30px;
}
.ta-services-wrapper-526b3f67.cols-1 { grid-template-columns: 1fr; }
.ta-services-wrapper-526b3f67.cols-2 { grid-template-columns: repeat(2, 1fr); }
.ta-services-wrapper-526b3f67.cols-3 { grid-template-columns: repeat(3, 1fr); }

@media (max-width: 1024px) {
    .ta-services-wrapper-526b3f67.cols-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .ta-services-wrapper-526b3f67.cols-2,
    .ta-services-wrapper-526b3f67.cols-3 { grid-template-columns: 1fr; }
}

/* Header Styling - Aligned with Target Avenue Contact Page & Centered */
.ta-services-header-526b3f67 {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 50px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.ta-services-badge-526b3f67 {
    display: inline-block;
    color: #4A90E2; /* Contact page blue */
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 20px;
}

.ta-services-title-wrapper-526b3f67 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.ta-services-main-title-526b3f67 {
    color: #000000;
    font-size: 64px;
    font-weight: 800;
    margin: 0;
    line-height: 1.1;
    white-space: nowrap;
}

.ta-services-subtitle-526b3f67 {
    color: #666666;
    font-size: 20px;
    margin: 0;
    line-height: 1.5;
    text-align: center; /* Changed from left to center */
    max-width: 400px;
}

@media (max-width: 768px) {
    .ta-services-title-wrapper-526b3f67 {
        flex-direction: column;
        text-align: center;
    }
    .ta-services-subtitle-526b3f67 {
        text-align: center;
        max-width: 100%;
    }
}

/* Card Styling */
.ta-service-card-526b3f67 {
    background: #ffffff;
    border: 1px solid #eaeaea;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ta-service-card-526b3f67:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    border-color: #000000;
}

.ta-service-title-526b3f67 {
    font-size: 24px;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 15px;
    color: #000000;
}

.ta-service-desc-526b3f67 {
    color: #333333;
    margin-bottom: 25px;
    font-size: 16px;
    line-height: 1.6;
}

.ta-service-section-526b3f67 {
    margin-bottom: 25px;
    padding-top: 15px;
    border-top: 1px solid #f0f0f0;
}

.ta-service-section-526b3f67 h4 {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #000000;
    margin-bottom: 10px;
    margin-top: 0;
    font-weight: 700;
}

.ta-service-section-526b3f67 p,
.ta-service-rich-526b3f67 {
    color: #333333;
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

.ta-service-rich-526b3f67 ul {
    margin: 0;
    padding-left: 20px;
}

.ta-service-rich-526b3f67 li {
    margin-bottom: 8px;
}

.ta-service-btn-526b3f67 {
    display: inline-block;
    background: #ffffff;
    color: #000000 !important;
    padding: 12px 25px;
    border-radius: 6px;
    border: 2px solid #000000;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    margin-top: auto;
    transition: all 0.3s ease;
}

.ta-service-btn-526b3f67:hover {
    background: #000000;
    color: #ffffff !important;
}

/* Booking CTA Section - Minimalist */
.ta-services-cta-section-526b3f67 {
    margin-top: 60px;
    background: #ffffff;
    padding: 40px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.ta-services-cta-content-526b3f67 {
    flex: 1;
    text-align: left;
}

.ta-services-cta-title-526b3f67 {
    color: #000000;
    font-size: 42px;
    font-weight: 800;
    margin-top: 0;
    margin-bottom: 15px;
    line-height: 1.1;
}

.ta-services-cta-desc-526b3f67 {
    color: #666666;
    font-size: 20px;
    margin: 0;
    line-height: 1.5;
    max-width: 600px;
}

.ta-services-cta-action-526b3f67 {
    flex-shrink: 0;
}

.ta-services-cta-btn-526b3f67 {
    display: inline-block;
    background: #000000 !important; 
    color: #ffffff !important;
    padding: 16px 36px;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.ta-services-cta-btn-526b3f67:hover {
    background: #333333 !important;
    color: #ffffff !important;
}

@media (max-width: 992px) {
    .ta-services-cta-section-526b3f67 {
        flex-direction: column;
        text-align: left;
        align-items: flex-start;
    }
}