/* Company Section */
.company-section {
    padding: 80px 0;
    background-color: #f8f8f8;
}

.company-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.company-info {
    line-height: 2;
}

.company-info dt {
    font-weight: bold;
    margin-top: 20px;
}

.company-map {
    width: 100%;
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
}

.company-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .company-content {
        grid-template-columns: 1fr;
    }
} 