/* About Us Page Styles */
.about-page {
    padding: 80px 0;
    background-color: #1a1a1a;
    position: relative;
    overflow: hidden;
}

.about-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/circuit-pattern.png');
    background-size: cover;
    opacity: 0.1;
    z-index: 0;
}

.about-page .container {
    position: relative;
    z-index: 1;
}

.about-header {
    text-align: center;
    margin-bottom: 50px;
}

.about-header h1 {
    font-size: 3rem;
    color: #d4af37;
    margin-bottom: 20px;
}

.about-header .gold-line {
    margin: 0 auto 30px;
}

.about-content-wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 50px;
    margin-bottom: 60px;
}

.about-text-content {
    flex: 1;
}

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

.about-image-container {
    flex: 1;
    position: relative;
}

.about-image-container img {
    width: 100%;
    border-radius: 10px;
    border: 2px solid #d4af37;
}

.about-image-container::before {
    content: '';
    position: absolute;
    top: -15px;
    right: -15px;
    width: 100%;
    height: 100%;
    border: 2px solid #d4af37;
    border-radius: 10px;
    z-index: -1;
}

.gold-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    overflow: hidden;
}

.gold-wave .wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200%;
    height: 100%;
    background: url('../images/gold-wave.png') repeat-x;
    background-size: 50% 100%;
    animation: wave 20s linear infinite;
    opacity: 0.5;
}

@keyframes wave {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Responsive styles */
@media (max-width: 992px) {
    .about-content-wrapper {
        flex-direction: column;
    }
    
    .about-text-content, .about-image-container {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .about-header h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 576px) {
    .about-header h1 {
        font-size: 2rem;
    }
    
    .about-text-content p {
        font-size: 1rem;
    }
}
