.bhp-section {
    --bhp-primary: #2563eb;
    --bhp-primary-dark: #1d4ed8;
    --bhp-primary-light: #3b82f6;
    --bhp-accent: #0ea5e9;
    --bhp-dark: #0f172a;
    --bhp-dark-2: #1e293b;
    --bhp-gray: #64748b;
    --bhp-gray-light: #94a3b8;
    --bhp-light: #f1f5f9;
    --bhp-white: #ffffff;
    --bhp-gradient-1: linear-gradient(135deg, #2563eb 0%, #0ea5e9 100%);
    --bhp-shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --bhp-shadow-md: 0 4px 20px rgba(0,0,0,0.1);
    --bhp-shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
    --bhp-shadow-xl: 0 20px 60px rgba(0,0,0,0.15);
    --bhp-radius: 16px;
    --bhp-radius-sm: 10px;
    --bhp-radius-lg: 24px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
a { text-decoration: none; color: inherit; transition: all 0.3s ease; }
img { max-width: 100%; display: block; }

/* Common utilities */
.bhp-container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.bhp-section { padding: 50px 0; }
.bhp-section-header { text-align: center; max-width: 640px; margin: 0 auto 60px; }
.bhp-section-title { font-size: 2.5rem; font-weight: 800; line-height: 1.2; letter-spacing: -0.02em; margin-bottom: 16px; }
.bhp-section-subtitle { font-size: 1.05rem; color: var(--bhp-gray); line-height: 1.7; }

/* Buttons */
.bhp-btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 12px 28px; border-radius: 50px; font-family: inherit; font-size: 0.9rem; font-weight: 600; border: none; cursor: pointer; transition: all 0.3s ease; }
.bhp-btn-primary { background: var(--bhp-gradient-1); color: white; box-shadow: 0 4px 15px rgba(37,99,235,0.3); }
.bhp-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(37,99,235,0.4); }
.bhp-btn-outline { background: transparent; color: var(--bhp-primary); border: 2px solid var(--bhp-primary); }
.bhp-btn-outline:hover { background: var(--bhp-primary); color: white; transform: translateY(-2px); }
.bhp-btn-white { background: white; color: var(--bhp-primary); box-shadow: var(--bhp-shadow-md); }
.bhp-btn-white:hover { transform: translateY(-2px); box-shadow: var(--bhp-shadow-lg); }
.bhp-btn-lg { padding: 16px 36px; font-size: 1rem; }

/* Animations */
.bhp-fade-up { opacity: 0; transform: translateY(30px); transition: all 0.6s ease; }
.bhp-fade-up.bhp-visible { opacity: 1; transform: translateY(0); }

/* About module styles */
.bhp-about .bhp-container { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.bhp-about-image { position: relative; }
.bhp-about-image img { border-radius: var(--bhp-radius-lg); box-shadow: var(--bhp-shadow-lg); }
.bhp-experience-badge { position: absolute; bottom: -20px; right: -20px; background: var(--bhp-gradient-1); color: white; padding: 24px; border-radius: var(--bhp-radius); text-align: center; box-shadow: var(--bhp-shadow-lg); }
.bhp-experience-badge h3 { font-size: 2.5rem; font-weight: 900; line-height: 1; }
.bhp-experience-badge p { font-size: 0.85rem; opacity: 0.9; margin-top: 4px; }
.bhp-about-content .bhp-section-title, .bhp-about-content .bhp-section-subtitle { text-align: left; }
.bhp-about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 32px; }
.bhp-about-feature { display: flex; gap: 14px; align-items: flex-start; }
.bhp-about-feature .bhp-af-icon { width: 44px; height: 44px; min-width: 44px; border-radius: 12px; background: rgba(37,99,235,0.08); color: var(--bhp-primary); display: flex; align-items: center; justify-content: center; }
.bhp-about-feature .bhp-af-icon svg { width: 24px; height: 24px; }
.bhp-about-feature h4 { font-size: 0.95rem; font-weight: 700; margin-bottom: 4px; }
.bhp-about-feature p { font-size: 0.83rem; color: var(--bhp-gray); line-height: 1.5; }

@media (max-width: 768px) {
    .bhp-about .bhp-container { grid-template-columns: 1fr; }
    .bhp-about-content .bhp-section-title, .bhp-about-content .bhp-section-subtitle { text-align: center; }
    .bhp-about-features { grid-template-columns: 1fr; }
}
