/* About Us Page - Specific Styles Only */
/* Using shared components from style.css: .section-title, .large-title, .body-text, .cta-button, .card, .grid-2, .grid-3 */

/* About page specific hero decoration positioning - vertically centered on left of heading */
.page-hero .hero-decoration {
    top: 50%;
    left: -120px;
    transform: translateY(-50%);
}

/* hero-content and hero-decoration now in shared style.css */

/* High-Tech Section - specific layout */
.high-tech-section {
    padding: 80px 0;
    background: white;
}

.high-tech-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.high-tech-image img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 20px;
}

.stats-row {
    display: flex;
    gap: 60px;
    margin-top: 2rem;
}

.stat-item h3 {
    font-size: 3rem;
    color: #F88C44;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.stat-item p {
    color: #666;
    font-size: 1rem;
    line-height: 1.4;
}

/* Team Section - specific styling */
.team-section {
    padding: 80px 0;
    background: #FFEEE5;
}

.team-member {
    text-align: center;
}

.team-member img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin-bottom: 1.5rem;
    object-fit: cover;
}

.team-member h3 {
    font-size: 1.2rem;
    color: #2B2B2B;
    margin-bottom: 0.5rem;
}

.team-member p {
    color: #F88C44;
    font-weight: 600;
    margin-bottom: 1rem;
}

.member-description {
    color: #666 !important;
    font-weight: 400 !important;
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Ethics Section - specific layout */
.ethics-section {
    padding: 80px 0;
    background: white;
}

.ethics-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.ethics-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
}

/* Testimonials Section - specific styling */
.testimonials-section {
    padding: 80px 0;
    background: #FFF6ED;
}

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 1rem;
    object-fit: cover;
}

.testimonial-info h4 {
    color: #2B2B2B;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.stars {
    color: #F88C44;
    font-size: 0.9rem;
}

.testimonial-card p {
    color: #666;
    line-height: 1.6;
    font-style: italic;
}

/* FAQs Section - specific styling */
.faqs-section {
    padding: 80px 0;
    background: white;
}

.faq-card {
    background: #FFEEE5;
}

.faq-card h3 {
    color: #2B2B2B;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.faq-card p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Contact CTA Section - specific styling */
.contact-cta {
    padding: 80px 0;
    background: #FFF6ED;
    text-align: center;
    position: relative;
}

.cta-content {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
}

.cta-decoration {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 150px;
    width: 80px;
    opacity: 1;
}

.contact-cta .crafted-title {
    color: #2B2B2B;
    text-align: center;
    margin-bottom: 2rem;
}

.contact-cta .body-text {
    color: #6B6B6B;
    margin-bottom: 2rem;
    line-height: 1.6;
    width: 100%;
    max-width: 100%;
    white-space: normal;
    word-wrap: normal;
    word-break: normal;
}

.contact-form {
    display: flex;
    justify-content: center;
    gap: 0;
    margin-bottom: 2rem;
}

.contact-form input {
    padding: 12px 20px;
    border: 1px solid #ddd;
    border-right: none;
    font-size: 1rem;
    width: 300px;
    border-radius: 0;
}

.contact-form .cta-button {
    border-radius: 0;
    padding: 12px 30px;
    border: none;
}

.contact-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    font-size: 0.95rem;
}

.contact-info a {
    color: #6B6B6B;
    text-decoration: none;
}

.contact-info span {
    color: #6B6B6B;
}

.contact-info::before {
    display: none;
}

.contact-info span::before {
    display: none;
}

/* Responsive Design - page specific adjustments */
@media (max-width: 768px) {
    .high-tech-grid,
    .ethics-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .stats-row {
        gap: 30px;
    }
    
    .stat-item h3 {
        font-size: 2rem;
    }
}