/* =========================================
   ABOUT PAGE SPECIFIC STYLES
   ========================================= */

.about-section {
    padding: 100px 50px;
    background: var(--primary-color);
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-section.reverse .about-container {
    flex-direction: row-reverse;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 20px;
}

.about-image-wrapper {
    flex: 1;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.about-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}

.about-image-wrapper:hover .about-image {
    transform: scale(1.05);
}

/* Technical Specs List */
.spec-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

.spec-list li {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 8px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding-bottom: 8px;
}

.spec-list li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

/* Responsive adjustments for about page */
@media (max-width: 900px) {
    .about-container,
    .about-section.reverse .about-container {
        flex-direction: column;
        gap: 35px;
        text-align: center;
    }
    .about-section {
        padding: 60px 25px;
    }
}
