/* TLH Consulting Custom Styles */

* {
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background: #ffffff;
    margin: 0;
    padding: 0;
}

.entry-content {
    max-width: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.tlh-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header */
.tlh-header {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    color: white;
    padding: 4rem 2rem 5rem;
    text-align: center;
    margin: 0 0 4rem 0;
}

.tlh-header h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -1px;
    color: white;
}

.tlh-tagline {
    font-size: 1.8rem;
    font-weight: 300;
    letter-spacing: 4px;
    margin-bottom: 1.5rem;
    opacity: 0.95;
}

.tlh-subtitle {
    font-size: 1.3rem;
    font-weight: 400;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
}

/* Sections */
.tlh-section {
    margin-bottom: 4rem;
}

.tlh-section h2 {
    font-size: 2rem;
    color: #1e3a8a;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid #3b82f6;
}

.tlh-section h3 {
    font-size: 1.4rem;
    color: #1e3a8a;
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.tlh-section p {
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
    color: #374151;
    line-height: 1.8;
}

/* Value Props */
.tlh-value-props {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.tlh-value-card {
    background: #f8fafc;
    border-left: 4px solid #3b82f6;
    padding: 2rem;
    border-radius: 8px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.tlh-value-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.1);
}

.tlh-value-card h3 {
    margin-top: 0;
    font-size: 1.3rem;
    color: #1e3a8a;
}

.tlh-value-card p {
    font-size: 1rem;
    margin-bottom: 0;
}

/* Services Grid */
.tlh-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.tlh-service-item {
    background: white;
    padding: 1.5rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    transition: border-color 0.2s;
}

.tlh-service-item:hover {
    border-color: #3b82f6;
}

.tlh-service-item strong {
    color: #1e3a8a;
    font-size: 1.1rem;
    display: block;
    margin-bottom: 0.5rem;
}

/* Client Badges */
.tlh-client-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 2rem 0;
}

.tlh-client-badge {
    background: #1e3a8a;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 500;
}

/* Contact Section */
.tlh-contact {
    background: #f8fafc;
    padding: 3rem;
    border-radius: 12px;
    text-align: center;
    margin-top: 4rem;
}

.tlh-contact h2 {
    border: none;
    margin-bottom: 1rem;
}

.tlh-contact-email {
    display: inline-block;
    background: #1e3a8a;
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: 600;
    margin-top: 1rem;
    transition: background 0.2s;
}

.tlh-contact-email:hover {
    background: #3b82f6;
    color: white;
}

/* Responsive */
@media (max-width: 768px) {
    .tlh-header h1 {
        font-size: 2.5rem;
    }
    
    .tlh-tagline {
        font-size: 1.3rem;
        letter-spacing: 2px;
    }
    
    .tlh-subtitle {
        font-size: 1.1rem;
    }
    
    .tlh-value-props,
    .tlh-services-grid {
        grid-template-columns: 1fr;
    }
    
    .tlh-client-list {
        justify-content: center;
    }
}
