/* AI Bio Section Styles */
.ai-bio {
    padding: 100px 0;
    background-color: #fff;
}

.ai-bio-container {
    max-width: 900px;
    margin: 0 auto;
}

.ai-bio-intro {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.ai-bio-frame {
    width: 100%;
    height: 600px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.ai-bio-frame iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .ai-bio-frame {
        height: 500px;
    }
    
    .ai-bio-intro {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .ai-bio-frame {
        height: 400px;
    }
}