section {
    background-color: rgba(255, 255, 255, 0.2);
    margin-bottom: 20px;
    padding: 40px;
}

#hakkimizda .content {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: center;
    justify-content: center;
}
#hakkimizda .text-content {
    flex: 2;
    min-width: 300px;
    max-width: 800px;
    text-align: justify;
    background-color: var(--black);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: inset 0 0 10px rgba(212, 175, 55, 0.3);
}
#hakkimizda p {
    margin-bottom: 1rem;
}
#hakkimizda ul {
    list-style: disc;
    margin-left: 20px;
}
#hakkimizda li {
    margin-bottom: 0.5rem;
}

/* Video Section */
#video .video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    background-color: var(--black);
    border-radius: 10px;
    box-shadow: 0 0 20px var(--primary-gold);
}
#video .video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}