/* Logo Theory Section */
.logo-theory {
    padding: 6rem 5%;
    background-color: var(--color-a); /* Dark green background */
    color: var(--color-c); /* White text */
}

.logo-theory .section-title {
    text-align: center;
    color: var(--color-c);
    font-size: 3rem;
    margin-bottom: 4rem;
}

.logo-theory-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.logo-theory-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    opacity: 0.9;
    margin-bottom: 1.5rem;
}

.logo-theory-video {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.logo-theory-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

@media (max-width: 768px) {
    .logo-theory-container {
        grid-template-columns: 1fr;
    }
}
