:root {
    --bb-primary: #2563eb;
    --bb-primary-dark: #1e40af;
    --bb-secondary: #64748b;
    --bb-accent: #f59e0b;
    --bb-text: #1e293b;
    --bb-text-light: #64748b;
    --bb-bg: #ffffff;
    --bb-bg-light: #f8fafc;
    --bb-border: #e2e8f0;
    --bb-success: #10b981;
    --bb-error: #ef4444;
    --bb-container: 1200px;
    --bb-radius: 8px;
    --bb-shadow: 0 1px 3px rgba(0,0,0,0.1);
    --bb-shadow-lg: 0 10px 40px rgba(0,0,0,0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--bb-text);
    line-height: 1.6;
    background: var(--bb-bg);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--bb-primary);
    text-decoration: none;
    transition: color 0.3s;
}

a:hover {
    color: var(--bb-primary-dark);
}

.bb-container {
    max-width: var(--bb-container);
    margin: 0 auto;
    padding: 0 20px;
}

.bb-container-narrow {
    max-width: 800px;
}

#bb-language-switcher {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
}

#bb-lang-btn {
    background: var(--bb-bg);
    border: 1px solid var(--bb-border);
    padding: 8px 16px;
    border-radius: var(--bb-radius);
    cursor: pointer;
    font-size: 14px;
    box-shadow: var(--bb-shadow);
    transition: all 0.3s;
}

#bb-lang-btn:hover {
    box-shadow: var(--bb-shadow-lg);
}

.bb-header {
    background: var(--bb-bg);
    border-bottom: 1px solid var(--bb-border);
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: var(--bb-shadow);
}

.bb-navbar {
    padding: 1rem 0;
}

.bb-nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.bb-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--bb-primary);
}

.bb-logo img {
    border-radius: 50%;
}

.bb-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--bb-text);
}

.bb-nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.bb-nav-menu a {
    color: var(--bb-text);
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
}

.bb-nav-menu a:hover,
.bb-nav-active {
    color: var(--bb-primary) !important;
}

.bb-nav-active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--bb-primary);
}

.bb-hero {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.bb-hero .bb-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.bb-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.bb-hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.bb-hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.bb-hero-image img {
    border-radius: var(--bb-radius);
    box-shadow: var(--bb-shadow-lg);
}

.bb-btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: var(--bb-radius);
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.3s;
    text-align: center;
}

.bb-btn-primary {
    background: var(--bb-primary);
    color: white;
}

.bb-btn-primary:hover {
    background: var(--bb-primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--bb-shadow-lg);
}

.bb-btn-secondary {
    background: white;
    color: var(--bb-primary);
    border: 2px solid var(--bb-primary);
}

.bb-btn-secondary:hover {
    background: var(--bb-primary);
    color: white;
}

.bb-btn-outline {
    background: transparent;
    color: var(--bb-text);
    border: 2px solid var(--bb-border);
}

.bb-btn-large {
    padding: 16px 40px;
    font-size: 1.1rem;
}

.bb-btn-full {
    width: 100%;
}

.bb-section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--bb-text);
}

.bb-features,
.bb-services,
.bb-process,
.bb-testimonials,
.bb-faq,
.bb-stats,
.bb-mission,
.bb-team {
    padding: 80px 0;
}

.bb-features {
    background: var(--bb-bg-light);
}

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

.bb-feature-card {
    background: white;
    padding: 30px;
    border-radius: var(--bb-radius);
    box-shadow: var(--bb-shadow);
    transition: transform 0.3s, box-shadow 0.3s;
}

.bb-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--bb-shadow-lg);
}

.bb-feature-icon {
    font-size: 3rem;
    color: var(--bb-primary);
    margin-bottom: 1rem;
}

.bb-feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.bb-services-grid {
    display: grid;
    gap: 40px;
}

.bb-service-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    background: white;
    border-radius: var(--bb-radius);
    overflow: hidden;
    box-shadow: var(--bb-shadow);
}

.bb-service-item:nth-child(even) {
    direction: rtl;
}

.bb-service-item:nth-child(even) .bb-service-content {
    direction: ltr;
}

.bb-service-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.bb-service-content {
    padding: 30px;
}

.bb-service-content h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.bb-process {
    background: var(--bb-bg-light);
}

.bb-process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.bb-step {
    text-align: center;
    padding: 30px;
}

.bb-step-number {
    width: 60px;
    height: 60px;
    background: var(--bb-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.bb-step h3 {
    margin-bottom: 0.5rem;
}

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

.bb-testimonial {
    background: white;
    padding: 30px;
    border-radius: var(--bb-radius);
    box-shadow: var(--bb-shadow);
}

.bb-testimonial-stars {
    color: var(--bb-accent);
    margin-bottom: 1rem;
}

.bb-testimonial p {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: var(--bb-text-light);
}

.bb-testimonial-author strong {
    display: block;
    color: var(--bb-text);
    margin-bottom: 0.25rem;
}

.bb-testimonial-author span {
    color: var(--bb-text-light);
    font-size: 0.9rem;
}

.bb-faq {
    background: var(--bb-bg-light);
}

.bb-faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.bb-faq-item {
    background: white;
    margin-bottom: 1rem;
    border-radius: var(--bb-radius);
    overflow: hidden;
    box-shadow: var(--bb-shadow);
}

.bb-faq-question {
    width: 100%;
    padding: 20px;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--bb-text);
}

.bb-faq-question:hover {
    color: var(--bb-primary);
}

.bb-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.bb-faq-answer p {
    padding: 0 20px 20px;
    color: var(--bb-text-light);
}

.bb-faq-item.active .bb-faq-answer {
    max-height: 500px;
}

.bb-faq-item.active .bb-faq-question i {
    transform: rotate(180deg);
}

.bb-cta {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.bb-cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.bb-cta-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.bb-lead-form-section {
    padding: 80px 0;
    background: var(--bb-bg-light);
}

.bb-lead-form-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    background: white;
    border-radius: var(--bb-radius);
    box-shadow: var(--bb-shadow-lg);
    overflow: hidden;
}

.bb-lead-form-info {
    padding: 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.bb-lead-form-info h2 {
    margin-bottom: 1rem;
}

.bb-lead-benefits {
    list-style: none;
    margin-top: 2rem;
}

.bb-lead-benefits li {
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.bb-lead-form {
    padding: 40px;
}

.bb-form-group {
    margin-bottom: 1.5rem;
}

.bb-form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--bb-text);
}

.bb-form-group input,
.bb-form-group select,
.bb-form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--bb-border);
    border-radius: var(--bb-radius);
    font-size: 1rem;
    transition: border-color 0.3s;
}

.bb-form-group input:focus,
.bb-form-group select:focus,
.bb-form-group textarea:focus {
    outline: none;
    border-color: var(--bb-primary);
}

.bb-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.bb-form-checkbox label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-weight: 400;
}

.bb-footer {
    background: var(--bb-text);
    color: white;
    padding: 60px 0 20px;
}

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

.bb-footer h3,
.bb-footer h4 {
    margin-bottom: 1rem;
}

.bb-footer ul {
    list-style: none;
}

.bb-footer ul li {
    padding: 0.5rem 0;
}

.bb-footer a {
    color: rgba(255,255,255,0.8);
}

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

.bb-registration {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-top: 1rem;
}

.bb-contact-info li {
    display: flex;
    gap: 10px;
}

.bb-contact-info i {
    margin-top: 4px;
    color: var(--bb-primary);
}

.bb-footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    text-align: center;
    opacity: 0.8;
}

.bb-complaint-box {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.bb-complaint-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--bb-error);
    color: white;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: var(--bb-shadow-lg);
    transition: transform 0.3s;
}

.bb-complaint-btn:hover {
    transform: scale(1.1);
}

.bb-complaint-form {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 350px;
    background: white;
    border-radius: var(--bb-radius);
    box-shadow: var(--bb-shadow-lg);
    padding: 20px;
    display: none;
}

.bb-complaint-form.active {
    display: block;
}

.bb-complaint-close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--bb-text-light);
}

.bb-complaint-form h3 {
    margin-bottom: 1rem;
}

.bb-complaint-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid var(--bb-border);
    border-radius: var(--bb-radius);
    margin-bottom: 10px;
    resize: vertical;
    min-height: 100px;
}

.bb-complaint-form input {
    width: 100%;
    padding: 10px;
    border: 1px solid var(--bb-border);
    border-radius: var(--bb-radius);
    margin-bottom: 10px;
}

.bb-cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    padding: 20px;
    z-index: 1000;
    display: none;
}

.bb-cookie-banner.active {
    display: block;
}

.bb-cookie-content {
    max-width: var(--bb-container);
    margin: 0 auto;
}

.bb-cookie-content h3 {
    margin-bottom: 0.5rem;
}

.bb-cookie-buttons {
    display: flex;
    gap: 10px;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.bb-cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    z-index: 1001;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.bb-cookie-modal.active {
    display: flex;
}

.bb-cookie-modal-content {
    background: white;
    border-radius: var(--bb-radius);
    padding: 30px;
    max-width: 600px;
    width: 100%;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
}

.bb-cookie-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--bb-text-light);
}

.bb-cookie-option {
    padding: 15px 0;
    border-bottom: 1px solid var(--bb-border);
}

.bb-cookie-option label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    cursor: pointer;
}

.bb-cookie-option p {
    margin-top: 0.5rem;
    color: var(--bb-text-light);
    font-size: 0.9rem;
}

.bb-page-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.bb-page-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.bb-about-story {
    padding: 80px 0;
}

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

.bb-about-text h2 {
    margin-bottom: 1.5rem;
}

.bb-about-text p {
    margin-bottom: 1rem;
}

.bb-about-image img {
    border-radius: var(--bb-radius);
    box-shadow: var(--bb-shadow-lg);
}

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

.bb-mission-card {
    background: white;
    padding: 30px;
    border-radius: var(--bb-radius);
    box-shadow: var(--bb-shadow);
    text-align: center;
}

.bb-mission-card i {
    font-size: 3rem;
    color: var(--bb-primary);
    margin-bottom: 1rem;
}

.bb-team-intro {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem;
    color: var(--bb-text-light);
}

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

.bb-team-member {
    background: white;
    border-radius: var(--bb-radius);
    overflow: hidden;
    box-shadow: var(--bb-shadow);
    transition: transform 0.3s, box-shadow 0.3s;
}

.bb-team-member:hover {
    transform: translateY(-5px);
    box-shadow: var(--bb-shadow-lg);
}

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

.bb-team-member h3 {
    padding: 20px 20px 0;
}

.bb-team-position {
    padding: 0 20px;
    color: var(--bb-primary);
    font-weight: 600;
    margin-bottom: 1rem;
}

.bb-team-member p {
    padding: 0 20px 20px;
    color: var(--bb-text-light);
}

.bb-stats {
    background: var(--bb-bg-light);
}

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

.bb-stat {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: var(--bb-radius);
    box-shadow: var(--bb-shadow);
}

.bb-stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--bb-primary);
    margin-bottom: 0.5rem;
}

.bb-stat-label {
    color: var(--bb-text-light);
    font-size: 1.1rem;
}

.bb-blog-content {
    padding: 80px 0;
}

.bb-blog-grid {
    display: grid;
    gap: 40px;
}

.bb-blog-card {
    background: white;
    border-radius: var(--bb-radius);
    overflow: hidden;
    box-shadow: var(--bb-shadow);
    transition: transform 0.3s, box-shadow 0.3s;
}

.bb-blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--bb-shadow-lg);
}

.bb-blog-image {
    position: relative;
}

.bb-blog-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.bb-blog-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--bb-primary);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.bb-blog-content-area {
    padding: 30px;
}

.bb-blog-meta {
    display: flex;
    gap: 20px;
    color: var(--bb-text-light);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.bb-blog-content-area h2 {
    margin-bottom: 1rem;
}

.bb-blog-content-area h2 a {
    color: var(--bb-text);
}

.bb-blog-content-area h2 a:hover {
    color: var(--bb-primary);
}

.bb-read-more {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-weight: 600;
    margin-top: 1rem;
}

.bb-blog-newsletter {
    background: var(--bb-bg-light);
    padding: 80px 0;
}

.bb-newsletter-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.bb-newsletter-content h2 {
    margin-bottom: 1rem;
}

.bb-newsletter-form {
    display: flex;
    gap: 10px;
    margin-top: 2rem;
}

.bb-newsletter-form input {
    flex: 1;
    padding: 12px;
    border: 1px solid var(--bb-border);
    border-radius: var(--bb-radius);
}

.bb-contact-section {
    padding: 80px 0;
}

.bb-contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.bb-contact-info-block h2 {
    margin-bottom: 1rem;
}

.bb-contact-details {
    margin-top: 3rem;
}

.bb-contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 2rem;
}

.bb-contact-icon {
    width: 50px;
    height: 50px;
    background: var(--bb-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.bb-contact-text h3 {
    margin-bottom: 0.5rem;
}

.bb-contact-form-block {
    background: white;
    padding: 40px;
    border-radius: var(--bb-radius);
    box-shadow: var(--bb-shadow-lg);
}

.bb-contact-form h2 {
    margin-bottom: 2rem;
}

.bb-map-section {
    padding: 80px 0;
    background: var(--bb-bg-light);
}

.bb-map-placeholder {
    border-radius: var(--bb-radius);
    overflow: hidden;
    box-shadow: var(--bb-shadow-lg);
}

.bb-post {
    padding: 40px 0 80px;
}

.bb-post-header {
    text-align: center;
    margin-bottom: 3rem;
}

.bb-post-meta {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 1.5rem;
    color: var(--bb-text-light);
    font-size: 0.9rem;
}

.bb-post-category {
    background: var(--bb-primary);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 600;
}

.bb-post-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.bb-post-lead {
    font-size: 1.25rem;
    color: var(--bb-text-light);
    max-width: 700px;
    margin: 0 auto;
}

.bb-post-image {
    margin-bottom: 3rem;
}

.bb-post-image img {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    border-radius: var(--bb-radius);
}

.bb-post-content {
    font-size: 1.1rem;
    line-height: 1.8;
}

.bb-post-content h2 {
    margin: 2.5rem 0 1rem;
    font-size: 2rem;
}

.bb-post-content h3 {
    margin: 2rem 0 1rem;
    font-size: 1.5rem;
}

.bb-post-content p {
    margin-bottom: 1.5rem;
}

.bb-post-cta {
    background: var(--bb-bg-light);
    padding: 40px;
    border-radius: var(--bb-radius);
    text-align: center;
    margin: 3rem 0;
}

.bb-post-cta h3 {
    margin-bottom: 1rem;
}

.bb-post-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 0;
    border-top: 1px solid var(--bb-border);
    margin-top: 3rem;
}

.bb-post-tags {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.bb-post-tags a {
    background: var(--bb-bg-light);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
}

.bb-post-share {
    display: flex;
    align-items: center;
    gap: 10px;
}

.bb-share-btn {
    background: var(--bb-primary);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
}

.bb-post-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 3rem;
    gap: 20px;
}

.bb-thank-you-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    z-index: 1001;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.bb-thank-you-modal.active {
    display: flex;
}

.bb-thank-you-content {
    background: white;
    border-radius: var(--bb-radius);
    padding: 40px;
    max-width: 500px;
    text-align: center;
    position: relative;
}

.bb-thank-you-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
}

.bb-thank-you-icon {
    font-size: 4rem;
    color: var(--bb-success);
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .bb-menu-toggle {
        display: block;
    }
    
    .bb-nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 1rem;
        box-shadow: var(--bb-shadow-lg);
    }
    
    .bb-nav-menu.active {
        display: flex;
    }
    
    .bb-hero .bb-container {
        grid-template-columns: 1fr;
    }
    
    .bb-hero-content h1 {
        font-size: 2rem;
    }
    
    .bb-section-title {
        font-size: 2rem;
    }
    
    .bb-service-item {
        grid-template-columns: 1fr;
    }
    
    .bb-service-item:nth-child(even) {
        direction: ltr;
    }
    
    .bb-about-content {
        grid-template-columns: 1fr;
    }
    
    .bb-lead-form-wrapper,
    .bb-contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .bb-form-row {
        grid-template-columns: 1fr;
    }
    
    .bb-post-footer {
        flex-direction: column;
        gap: 20px;
    }
    
    .bb-post-navigation {
        flex-direction: column;
    }
    
    .bb-newsletter-form {
        flex-direction: column;
    }
}