.hero-section {
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-title {
    color: white;
    font-size: 72px;
    font-weight: 600;
    letter-spacing: -1px;
    text-align: center;
}

.about-section {
    padding: 80px 0;
    background: #f5f6fa;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-content {
    background: white;
    padding: 60px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    line-height: 1.8;
    font-size: 16px;
    color: #555;
    word-wrap: break-word;
    overflow-wrap: break-word;
    word-break: break-word;
}

.about-content p {
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .about-content {
        padding: 30px 20px;
    }
}