body, html {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
    background: #222;
    color: #f3f3f3;
}

.growth-container {
    max-width: 900px;
    margin: 48px auto 0 auto;
    background: #111;
    border-radius: 18px;
    box-shadow: 0 6px 32px rgba(0,0,0,0.10);
    padding: 40px 40px 32px 40px;
    display: flex;
    align-items: flex-start;
    gap: 40px;
}

.growth-profile {
    flex: 0 0 180px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.growth-img {
    width: 160px;
    height: 160px;
    object-fit: contain;
    border-radius: 16px;
    background: #f8fafc;
    box-shadow: 0 4px 18px rgba(0,0,0,0.10);
    border: 3px solid #e3e7ee;
}

.growth-content {
    flex: 1;
    text-align: left;
}

.growth-content h1 {
    font-size: 2rem;
    margin-bottom: 12px;
    font-weight: 800;
    color: #f3f3f3;
}

.growth-content p, .growth-content ul, .growth-content li { color: #fff; }
.growth-video-section, .growth-video-section h2 { color: #fff; }

.growth-content p {
    font-size: 1.08rem;
    color: #fff;
    margin-bottom: 16px;
    line-height: 1.7;
}

.btn {
    display: inline-block;
    padding: 15px 30px;
    background-color: #444;
    color: #f3f3f3;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s;
    margin-top: 10px;
}

.btn:hover {
    background-color: #666;
}

.growth-video-section {
    max-width: 900px;
    margin: 32px auto 0 auto;
    background: #111;
    border-radius: 18px;
    box-shadow: 0 6px 32px rgba(0,0,0,0.10);
    padding: 32px 40px 40px 40px;
    text-align: center;
}

.growth-video-section h2 {
    font-size: 1.3rem;
    color: #f3f3f3;
    margin-bottom: 24px;
    font-weight: 700;
}

.growth-video-wrapper {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    aspect-ratio: 16/9;
    background: #e0e0e0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.growth-video-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 12px;
}

@media (max-width: 900px) {
    .growth-container {
        flex-direction: column;
        align-items: center;
        padding: 24px 8vw 18px 8vw;
        gap: 4px;
    }
    .growth-profile {
        justify-content: center;
        margin-bottom: 0;
    }
    .growth-img {
        width: 120px;
        height: 120px;
        margin-bottom: 0;
    }
    .growth-content {
        margin-top: 0;
    }
    .growth-video-section {
        padding: 18px 4vw 24px 4vw;
    }
}
