.elementor-180 .elementor-element.elementor-element-877d0c5{--spacer-size:150px;}.elementor-widget-text-editor{font-family:var( --e-global-typography-text-font-family ), DM Sans;font-weight:var( --e-global-typography-text-font-weight );color:var( --e-global-color-text );}.elementor-widget-text-editor.elementor-drop-cap-view-stacked .elementor-drop-cap{background-color:var( --e-global-color-primary );}.elementor-widget-text-editor.elementor-drop-cap-view-framed .elementor-drop-cap, .elementor-widget-text-editor.elementor-drop-cap-view-default .elementor-drop-cap{color:var( --e-global-color-primary );border-color:var( --e-global-color-primary );}.elementor-180 .elementor-element.elementor-element-1e853bd{--spacer-size:150px;}@media(max-width:767px){.elementor-180 .elementor-element.elementor-element-877d0c5{--spacer-size:50px;}}/* Start custom CSS *//* About Us Page Styles */
.about-hero {
    text-align: center;
    padding: 60px 0;
    background: linear-gradient(135deg, #0a0a1a 0%, #1a1a3e 100%);
    color: white;
    border-bottom: 3px solid #f86d03;
}

.about-hero h1 {
    font-size: 48px;
    font-weight: 800;
    color: #f86d03;
}

.about-hero p {
    font-size: 18px;
    max-width: 700px;
    margin: 20px auto;
    color: rgba(255, 255, 255, 0.8);
}

/* Section Styles */
.about-section {
    padding: 60px 0;
    max-width: 900px;
    margin: 0 auto;
}

.about-section h2 {
    color: #f86d03;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    border-bottom: 2px solid rgba(248, 109, 3, 0.3);
    padding-bottom: 10px;
}

.about-section h3 {
    color: #1a1a2e;
    font-size: 22px;
    margin-top: 30px;
}

.about-section p {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
}

/* Team Members */
.team-member {
    background: #f8faff;
    padding: 20px 25px;
    border-radius: 10px;
    margin: 20px 0;
    border-left: 4px solid #f86d03;
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.team-member h3 {
    color: #f86d03;
    margin-bottom: 5px;
}

.team-member p {
    margin: 5px 0;
}

/* Numbers Section */
.numbers {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
    background: #0a0a1a;
    padding: 40px 20px;
    border-radius: 15px;
    margin: 40px 0;
}

.numbers div span {
    display: block;
    font-size: 36px;
    font-weight: 800;
    color: #f86d03;
}

.numbers div p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    margin-top: 5px;
}

/* Call to Action */
.cta-section {
    text-align: center;
    background: linear-gradient(135deg, #f86d03, #e05a00);
    color: white;
    padding: 50px 20px;
    border-radius: 15px;
    margin: 40px 0;
}

.cta-button {
    display: inline-block;
    background: white;
    color: #f86d03 !important;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
    .numbers {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-hero h1 {
        font-size: 32px;
    }
}/* End custom CSS */