/* About Hero */
.about-hero {
    background: linear-gradient(135deg, #000 0%, #1a1a1a 100%);
    padding: 100px 20px;
    text-align: center;
    color: #fff;
}

.about-container {
    max-width: 800px;
    margin: 0 auto;
}

.about-title {
    font-size: 5rem;
    font-weight: 900;
    letter-spacing: 12px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.about-subtitle {
    font-size: 1.4rem;
    letter-spacing: 6px;
    text-transform: uppercase;
    font-weight: 300;
    color: #b0b0b0;
}

/* About Content */
.about-content {
    max-width: 900px;
    margin: 80px auto;
    padding: 0 20px;
}

.about-text {
    line-height: 1.9;
}

.about-text p {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 25px;
    font-weight: 400;
}

.about-highlight {
    font-weight: 700 !important;
    color: #000 !important;
    font-size: 1.35rem !important;
    margin-top: 40px !important;
    padding-top: 40px;
    border-top: 2px solid #000;
}

/* CTA Section */
.about-cta {
    text-align: center;
    margin-top: 60px;
}

.btn-products {
    display: inline-block;
    padding: 18px 50px;
    background: #000;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.btn-products:hover {
    background: #333;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* Responsive */
@media (max-width: 768px) {
    .about-title {
        font-size: 3rem;
        letter-spacing: 6px;
    }
    
    .about-subtitle {
        font-size: 1.1rem;
        letter-spacing: 3px;
    }
    
    .about-text p {
        font-size: 1.05rem;
    }
    
    .about-highlight {
        font-size: 1.2rem !important;
    }
}
